#wrap {
    margin: 4rem 2rem;
}

#wrap * {
}

.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.policy_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.policy_header h1 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4rem;
}

.established_content {
    margin: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.content {
    margin: 3rem 0 6rem;
}

ol.list_inner > li {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
    font-size: 1.6rem;
    font-weight: 300;
}

ol.list_inner li:last-child {
    padding-bottom: 0;
}

ol.inner_snum_list {
    margin-left: 2rem;
    padding-top: 0.5rem;
}

ol.inner_snum_list li {
    list-style: decimal;
    line-height: 3rem;
    font-size: 1.6rem;
    font-weight: 300;
}

ol.inner_snum_list > li::marker {
    font-weight: 400;
    display: inline-block;
}

ol.inner_alpha_list {
    margin-left: 2rem;
    padding-top: 0.5rem;
}

ol.inner_alpha_list li {
    list-style: upper-alpha;
    padding-bottom: 0;
}

ol.inner_alpha_list > li::marker {
    font-weight: 400;
    display: inline-block;
}

ol.inner_disc_list {
    margin-left: 2rem;
    padding-top: 0.5rem;
}

ol.inner_disc_list li {
    list-style: disc;
    line-height: 3rem;
    font-size: 1.6rem;
    font-weight: 300;
}

ol.inner_disc_list > li::marker {
    font-weight: 400;
    display: inline-block;
}

ul {
    margin-bottom: 5rem;
}

ul:last-child {
    margin: 0;
}

ul li {
    line-height: 3rem;
    font-weight: 300;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
    color: #31374e;
    padding-bottom: 1rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.5rem;
    color: #212121;
    margin-bottom: 1rem;
}

p {
    font-size: 1.6rem;
    line-height: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

p.underline {
    text-decoration: underline;
    text-decoration-thickness: 0.1rem;
    font-weight: 500;
}

.established_content p {
    margin-bottom: 0.5rem;
    text-align: right;
}

.bullet {
    margin: 0 4px 0 -25px;
    font-weight: 500;
}

.dropdown_wrap {
    position: relative;
}

.dropdown_wrap a:hover,
.dropdown_wrap .dropbtn:hover,
.dropdown_wrap .dropbtn:focus {
    background-color: #fafafa;
}

.dropdown_wrap:hover > .dropdown_list {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.dropdown_button {
    padding: 0 20px;
    width: 200px;
    height: 40px;
    line-height: 2rem;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 1.6rem;
    border-radius: 6px;
    color: #000;
    cursor: pointer;
}

.dropdown_button.en {
    width: 260px;
}

.dropdown_button:after {
    content: '\25BE';
}

.dropdown_button.dropbtn {
    background-color: #ffffff;
    font-size: 1.6rem;
    display: inline-block;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
}

.dropdown_button.dropbtn:hover,
.dropdown_button.dropbtn:focus {
    background-color: #fafafa;
}

.dropdown_content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 198px;
    overflow: auto;
    border: 1px solid #ccc;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 6px;
    text-align: center;
    top: 42px;
    z-index: 1;
}

.dropdown_content.en {
    width: 260px;
}

.dropdown_content a {
    color: #212121;
    padding: 1.5rem;
    text-decoration: none;
    display: block;
}

.dropdown_content a.selected {
    background-color: #f0f5ff;
}

.dropdown_content.show {
    display: block;
}

table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: inherit;
}

table th {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

th {
    text-align: center;
    font-weight: 500;
    padding: 1rem 0;
    border-top: 2px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    background-color: #fafafa;
}

th:last-child {
    border-right: none;
}

td {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 300;
    border-right: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    padding: 20px;
}

td:last-child {
    border-right: none;
}

