.en button {
    appearance: none;
    border: 0;
}

.en .parent-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 750px) {
    .en .parent-list {
        flex-direction: column;
    }
}

.en .parent-list>dt {
    flex: 0 0 220px;
    width: 220px;
    padding: 38px 0;
}

@media (max-width: 750px) {
    .en .parent-list>dt {
        flex: 0 0 auto;
        width: auto;
    }
}

.en .parent-list>dt h2 {
    font-size: 20px;
}

@media (max-width: 750px) {
    .en .parent-list>dt h2 {
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
        white-space: nowrap;
    }
}

.en .parent-list>dd {
    flex-basis: 1 1 auto;
}

.en .parent-list dl {
    display: flex;
    border-bottom: 1px solid var(--green);
    padding: 38px 0;
    gap: 24px;
}

.en .parent-list dl:last-child {
    border-bottom: 0;
}

@media (max-width: 750px) {
    .en .parent-list dl {
        flex-direction: column;

    }
}

.en .parent-list dl dt {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    flex: 0 0 180px;
    width: 180px;
}

@media (max-width: 750px) {
    .en .parent-list dl dt {
        flex: 0 0 auto;
        width: auto;
        font-size: 16px;
    }
}

.en .parent-list dl dd {
    flex-basis: 0 0 auto;
}

.en .map {
    margin: 24px auto;
}

.en hr {
    height: 1px;
    width: 100%;
    appearance: none;
    background-color: var(--green);
    border: none;
}

.en table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.en th,
.en td {
    border: 1px solid var(--green);
    padding: 20px;
    text-align: center;
    color: var(--gray);
}

@media (max-width: 750px) {

    .en th,
    .en td {
        padding: 15px 0;
    }
}

.en td:nth-child(1) {
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.en th {
    background-color: var(--green);
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.en .notice {
    font-size: 13px;
    line-height: 140%;
    margin: 20px auto;
}

@media (max-width: 750px) {
    .en .notice {
        font-size: 12px;
    }
}

.en .notice>* {
    display: flex;
}

.en .notice>*::before {
    flex: 0 0 16px;
    content: '*';
}

.en .attention {
    font-size: 18px;
    font-weight: 700;
    margin: 64px auto;
    border: 1px solid #fff;
    padding: 24px 30px;
    text-align: center;
    width: 100%;
    color: #fff
}

@media (max-width: 750px) {
    .en .attention {
        font-size: 16px;
        margin: 40px auto;
        width: 100%;
        padding: 24px 16px;
    }
}