:root {
    --orange: #eb5b2d;
    --green: #8cc044;
    --yellow: #f7a51e;
    --blue: #00aeef;
    --pink: #bd84b9;
}

.main-logo {
    width: 800px;
    max-width: 100%;
}

.input-double-wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    max-width: 100%;
    margin-top: 30px;
}

label {
    display: block;
    padding-bottom: 10px;
    font-weight: bold;
}

label span {
    color: red;
}

.input-wrapper {
    width: calc(50% - 15px);
    text-align: left;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    background-image: url('./caret.svg');
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

input, .checkbox-wrapper, select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #c2c2c2;
    padding: 12px;
    width: 100%;
    outline: none;
    font-size: 16px;
    transition: border-color .3s;
    position: relative;
    border-radius: 0;
    line-height: 22px;
}

select {
    cursor: pointer;
}

input:focus {
    border-color: black;
}

form {
    margin-top: 30px;
}

input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
    border: none !important;
    background-color: unset !important;
}

input[type="checkbox"]::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    background-color: white;
    z-index: 7;
}

input[type="checkbox"]:checked::before {
    content: "X";
}

.checkbox-wrapper {
    cursor: pointer;
    position: relative;
    border: none;
}

.checkbox-wrapper label {
    padding-bottom: 0;
    padding-left: 34px;
    cursor: pointer;
    color: white;
}

button {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    color: white;
    background-color: var(--blue);
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}

input.invalid {
    border: 1px solid red;
}

.notice-area {
    display: none;
    padding: 12px;
    margin-top: 30px;
    text-align: left;
}

.notice-area.success {
    border: 1px solid green;
    display: block;
}

.notice-area.error {
    border: 1px solid red;
    display: block;
}

.input-wrapper-parent-birth-date {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.checkbox-label {
    position: relative;
    padding-left: 30px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]::before {
    top: 1px;
    left: 0;
    transform: none;
    border-color: #c2c2c2;
}

.checkbox-label input[type="checkbox"] {
    top: 0;
    left: 0;
}

.checkbox-label input[type="checkbox"]:checked::before {
    border: 1px solid black;
}

.highlight {
    font-weight: bold;
}

.highlight-blue {
    color: var(--blue);
}

.time-table {
    width: 100%;
}

.time-table tr td:nth-child(1) {
    width: 35%;
}

.time-table tr td:nth-child(2) {
    width: 30%;
}

.time-table tr td:nth-child(3) {
    width: 35%;
    font-weight: bold;
}

.not-available-notice-mobile {
    color: white;
    margin-top: 10px;
    display: none;
    font-weight: bold;
}

table.not-available {
    font-weight: normal;
}

@media (max-width: 800px) {
    .input-wrapper {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .not-available-notice-mobile {
        display: block;
    }

    .time-table tr td:nth-child(3) {
        display: none;
    }
}