.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    width: 100%;
    height: 64px;
    /* WHITE */
    background: #FFFFFF;
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.logo {
    /* サービスロゴ */
    min-height: 0;
    min-width: 0;
    max-height: 27px;
    /* Inside auto layout */
    order: 0;
    padding: 18.5px 20px;
    box-sizing: content-box;
}

#cover {
    z-index: 100;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
}

.lang_button {
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    margin: 20px;
    width: 36px;
    height: 36px;
    /* primaryColor */
    border: 2px solid #0047BB;
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.close_button {
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 5px;
    margin: 12px 20px;
    width: 36px;
    height: 36px;
    /* primaryColor */
    border: 2px solid #0047BB;
    background-color: #0047BB;
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    float: right;
}

.close_button>div {
    position: inherit;
    float: right;
    width: 24px;
    text-align: center;
    height: 24px;
    color: white;
}

.dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dropdown>.row {
    width: 100%;
    height: 64px;
    /* 14px Bold */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 161.8%;
    /* identical to box height, or 23px */
    text-align: center;
    /* BLUEGRAY_DARK */
    color: #373F4F;
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.dropdown>.flexrow {
    display: flex;
    flex-direction: row;
    border-width: 1px 0px;
    border-style: solid;
    border-color: #DEDEDE;
}

.dropdown .flexlabel {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.dropdown>.row .lang3 {
    margin: 20px 0px 20px 8px;
    padding: 0px 12px;
    border-right: #d9d9d9 2px solid;
}

.dropdown>.row .langfull {
    margin: 20px 12px;
}

.dropdown>.row input[type="radio"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #DEDEDE;
    background-color: #DEDEDE;
    outline: none;
    margin: 20px 20px 20px auto;
}

.dropdown>.row input[type="radio"]~svg.checked {
    display: none;
}

.dropdown>.row input[type="radio"]:checked {
    display: none;
}

.dropdown>.row input[type="radio"]:checked~svg.checked {
    display: block;
    margin: 20px 20px 20px auto;
}

.lang {
    height: 12px;
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 100%;
    /* identical to box height, or 12px */
    display: flex;
    align-items: center;
    text-align: center;
    /* primaryColor */
    color: #0047BB;
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

body {
    margin: 0;
}

::placeholder {
    color: #DEDEDE;
}