/* ========== basics ========== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, #nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 100px;
    line-height: 1.7;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 0.16rem;
    background-color: rgb(246, 246, 246);
}

::selection {
    color: rgb(153, 204, 255);
    background: rgb(49, 106, 211);
}

section .light {
    background-color: rgb(255, 255, 255);
}

.container {
    margin: 0 auto;
    padding: 1.5rem 0.4rem;
}

h2 {
    font-size: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

h3 {
    font-size: 0.25rem;
    padding-bottom: 0.2rem;
}

h4 {
    font-size: 0.16rem;
    padding-bottom: 0.2rem;
}

p {
    font-size: 0.25rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

p.lede {
    font-size: 0.16rem;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    html { 
        font-size: 50px;
    }
    
    body {
        font-size : calc((0.16rem * 100 / 50) * 0.9);
    }

    h2 {
        font-size : calc((0.4rem  * 100 / 50) * 0.66);
    }

    h3 {
        font-size : calc((0.3rem  * 100 / 50) * 0.66);
    }

    h4 {
        font-size : calc((0.2rem  * 100 / 50) * 0.66);
    }

    p {
        font-size : calc((0.25rem  * 100 / 50) * 0.66);
    }

    p.lede {
        font-size : calc((0.2rem  * 100 / 50) * 0.66);
        text-align: left;
    }
}

figure img {
    width: 100%;
}

.arrow {
    margin: 0.2rem auto;
    width: 7%;
}

span.url {
    word-break: break-all;
}

/* ========== ul ========== */
.text li {
    text-align: left;
    margin: 0.1rem 0 1.1em 0.2rem;
    word-wrap: break-word;
}

@media screen and (max-width: 1024px) {
    .text li {
        margin: 0.1rem 0 1.1em 0.4rem;
    }
}

/* ============= header ============= */
header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    header {
        height: 50px;
    }
}

/* ============= logo ============= */
.logo {
    width: 160px;
    height: auto;
}

header .logo {
    position: fixed;
    top: 0.2rem;
    left: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .logo {
        width: 80px;
    }

    header .logo {
        margin-top: 0.1rem;
    }
}

/* ============= nav ============= */
nav {
    margin: auto 0;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
}

nav li {
    list-style-type: none;
    padding: 0.1rem 0.15rem;
}

/* ============= links ============= */
a {
    text-decoration: none;
}

/* ============= burger ============= */
.burger {
    display: none;
}

@media screen and (max-width: 1024px) {
    .burger {
        display: block;
        position: absolute;
        right: 0.4rem;
        top: 0.35rem;
        z-index: 10;
        cursor: pointer;
        transform: rotateY(0);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .burger-line {
        width: 28px;
        height: 2px;
        margin: 0 0 4px 0;
        background-color: rgb(51, 51, 51);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .burger-line:last-child {
        margin-bottom: 0;
    }

    .burger-close {
        transform: rotate(180deg);
    }

    .burger-close .burger-line:nth-child(1) {
        background-color: rgb(255, 255, 255);
        transform: rotate(45deg) translate(4px, 4px);
    }

    .burger-close .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-close .burger-line:nth-child(3) {
        background-color: rgb(255, 255, 255);
        transform: rotate(-45deg) translate(5px, -4px);
    }
}

/* ============= menu ============= */
.menu a {
    color: rgb(51, 51, 51);
    position: relative;
    display: inline-block;
    transition: 0.3s;
}

.menu a:hover {
    color: rgb(49, 106, 211);
}

.menu a::after {
    position: absolute;
    bottom: -0.05rem;
    left: 50%;
    content: '';
    width: 0;
    border-bottom: solid 2px rgb(49, 106, 211);
    transition: 0.3s;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu a:hover::after {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .menu {
        position: fixed;
        top: 0;
        width: 100%;
        visibility: hidden;
    }

    .menu-active {
        visibility: visible;
    }

    .menu a {
        color: rgb(255, 255, 255);
        font-size: 0.45rem;
        margin: 0.1rem 0;
    }

    .menu a:hover {
        color: rgb(255, 255, 255);
    }

    .menu a::after {
        border-bottom: solid 2px rgb(255, 255, 255);
    }

    .menu-list {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: rgb(49, 106, 211);
        list-style-type: none;
        transform: translate3d(0, -100%, 0);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu-list-active {
        transform: translate3d(0, 0, 0);
    }

    .menu-item {
        transform: translate3d(500px, 0, 0);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu-item-active {
        transform: translate3d(0, 0, 0);
    }

    .menu-link:hover:before {
        width: 100%;
    }

    .menu .menu-item:nth-child(1) {
        display: block;
        transition-delay: 0.1s;
    }

    .menu .menu-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .menu .menu-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .menu .menu-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .menu .menu-item:nth-child(5) {
        transition-delay: 0.5s;
    }
}

/* ============= button ============= */
.button-box {
    margin-right: 0.4rem;
}

a.button {
    color: rgb(255, 255, 255);
    -webkit-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -moz-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -ms-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -o-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    border-radius: 0.06rem;
    padding: 0.15rem 0.2rem;
    background-color: rgb(49, 106, 211);
    box-shadow: rgb(49, 106, 211) 0 0 0 0.4rem inset;
}

a.button:hover {
    color: rgb(49, 106, 211);
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(49, 106, 211) 0 0 0 0.02rem inset;
}

@media screen and (max-width: 1024px) {
    header a.button {
        padding: 0.15rem 0.5rem;
        margin-right: 1.25rem;
    }
}

/* ========== animation ========== */
@keyframes fade-in-up {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fade-in-up {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animated01 {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.animated-fade-in-up {
    opacity: 0
}

.fade-in-up {
    opacity: 0;
    animation-name: fade-in-up;
    -webkit-animation-name: fade-in-up;
}

/* ============= inner ============= */
.inner {
    max-width: 1200px;
    width: auto;
    margin: 0 auto;
    text-align: center;
}

/* ============= banner ============= */
#banner {
    background-color: rgb(1, 22, 34);
    background-image: url("../img/banner.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: auto 600px;
    height: auto;
}

#banner-terms {
    background-color: rgb(1, 22, 34);
    background-image: url("../img/terms-banner.jpg");
    background-repeat: no-repeat;
    background-position: center -2.5rem;
    background-attachment: fixed;
    background-size: cover;
    height: 3.0rem;
}

#banner .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

#banner img {
    width: 100%;
    margin: 1.1rem auto 0.5rem 0.4rem;
}

#banner .image {
    flex-basis: 45%;
} 

#banner .text {
    flex-basis: 55%;
} 

#banner h1 {
    font-size: 0.5rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

#banner-terms h1 {
    font-size: 0.5rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    line-height: 1.3;
    margin: 0;
    padding: 1.3rem 0 0 0;
}

#banner a.button {
    font-size: 0.3rem;
    border-radius: 0.04rem;
    padding: 0.15rem 0.6rem;
}

#banner a.button:hover {
    box-shadow: rgb(49, 106, 211) 0 0 0 0.03rem inset;
}

@media screen and (max-width: 1024px) {
    #banner img {
        margin: 1.1rem auto 0.4rem 0.4rem;
    }

    #banner h1 {
        font-size: 0.8rem;
    }

    #banner a.button {
        font-size: 0.5rem;
        border-radius: 0.08rem;
        padding: 0.25rem 1.0rem;
    }
}

@media screen and (max-width: 896px) {
    #banner {
        background-color: rgb(246, 246, 246);
        background-image: url("../img/banner-mo.jpg");
        background-size: auto 500px;
        background-attachment: scroll;
        height: auto;
    }

    #banner .inner {
        flex-direction: column-reverse;
    }

    #banner .image {
        margin: 0 0.4rem;
    }

    #banner img {
        margin: 0.9rem 0 0.5rem;
    }

    #banner h1 {
        font-size: 0.7rem;
        margin: 1.5rem 0 0.3rem;
    }

    #banner-terms h1 {
        font-size: 0.35rem;
        padding: 1.5rem 0 0 0;
    }
}

/* ========== about ==========  */
#about a.link {
    color: rgb(49, 106, 211);
    position: relative;
    display: inline-block;
    transition: 0.3s;
}

#about a.link::after {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    content: '';
    width: 0;
    border-bottom: solid 2px rgb(49, 106, 211);
    transition: 0.3s;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#about a.link:hover::after {
    width: 100%;
}

/* ========== request bar ========== */
.request-bar {
    width: 100%;
    background-color: rgb(49, 106, 211);
    display: flex;
    justify-content: center;
    align-items: center;
}

.request-bar p, #terms .request-bar p {
    font-size: 0.25rem;
    color: rgb(255, 255, 255);
    margin: 0 0.4rem;
    padding: 0;
}

.request-bar a.button {
    font-size: 0.25rem;
    color: rgb(49, 106, 211);
    margin: 0.2rem 0.4rem;
    padding: 0.15rem 1.0rem;
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(255, 255, 255) 0 0 0 0.4rem inset;
}

.request-bar a.button:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(49, 106, 211);
    box-shadow: rgb(255, 255, 255) 0 0 0 0.03rem inset;
}

@media screen and (max-width: 1024px) {
    .request-bar p, #terms .request-bar p {
        font-size: 0.35rem;
    }

    .request-bar a.button {
        font-size: 0.4rem;
        margin: 0.25rem 0.4rem 0.25rem;
        padding: 0.15rem 1.5rem;
    }
}

@media screen and (max-width: 896px) {
    .request-bar {
        flex-direction: column;
    }

    .request-bar p, #terms .request-bar p {
        font-size: 0.3rem;
        margin: 0.3rem 0.4rem 0;
    }

    .request-bar a.button {
        font-size: 0.3rem;
        margin: 0.2rem 0.4rem 0.5rem;
        padding: 0.15rem 2.0rem;
    }
}

/* ========== dataview 01 ==========  */
#dataview .contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#dataview01 .text {
    flex-basis: 50%;
}

#dataview01 .text li {
    font-size: 0.2rem;
}

#dataview01 .text li:last-child, #dataview02 li:last-child {
    list-style-type: none;
}

#dataview01 strong {
    background: linear-gradient(transparent 60%, rgb(255, 153, 129) 60%);
}

@media screen and (max-width: 896px) {
    #dataview01 .contents {
        flex-direction: column;
    }

    #dataview01 .text {
        margin-top: 0.3rem;
    }

    #dataview01 .text li {
        font-size : 0.3rem;
        margin: 0.08rem 0;
    }
}

/* ========== dataview 02 ==========  */
#dataview02 .contents, #dataview04 .contents, #dataview05 .contents, #dataview06 .contents, #dataview07 .contents {
    align-items: stretch;
    flex-wrap:wrap;
}

#dataview02 .col, #dataview02 .cols, #dataview04 .col, #dataview05 .col, #dataview06 .col, #dataview07 .col {
    flex-basis: 49%;
    padding: 0.3rem;
    margin: 0.1rem 0;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.15rem;
}

#dataview02 .cols {
    flex-basis: 100%;
}

#dataview02 li {
    margin: 0.05rem 0;
}

#dataview02 svg {
    width: 1.0rem;
}

#dataview02 h3, #code01 h4, #dataview07 h3  {
    margin: 0.1rem 0 0.3rem;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

#dataview02 .col p, #dataview02 .cols p {
    font-size: 0.16rem;
    margin-bottom: 0;
}

#dataview02 .cols li {
    text-align: center;
    list-style-type: none;
}

@media screen and (max-width: 896px) {
    #dataview02 .contents, #dataview04 .contents, #dataview05 .contents, #dataview06 .contents, #dataview07 .contents {
        flex-direction: column;
    }

    #dataview02 .cols ul {
        margin-bottom: 0.2rem;
    }

    #dataview02 .cols li {
        text-align: left;
        margin-left: 0.4rem;
        list-style-type: disc;
    }

    #dataview02 .col p, #dataview02 .cols p {
        font-size: calc((0.2rem  * 100 / 50) * 0.66);
    }
}

/* ========== dataview 03 ==========  */
#dataview03 .contents {
    flex-direction: column;
}

#dataview03 ul {
    display: flex;
    justify-content: space-between;
}

#dataview03 li {
    list-style-type: none;
    margin: 0 0.1rem;
}

@media screen and (max-width: 896px) {
    #dataview03 ul {
        flex-direction: column;
    }

    #dataview03 li {
        margin: 0.1rem 0.5rem;
    }
}

/* ========== dataview 04 ========== */
#dataview04 .col {
    text-align: center;
    padding-top: 0.1rem;
}

#dataview04 .col h3, #dataview06 .col h3, #connect02 .col h3 {
    line-height: 1.3;
    margin-bottom: 0.3rem;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

#dataview04 .col h3 span, #dataview06 .col h3 span, #connect02 .col h3 span, #code01 h4 span {
    font-size: 0.5rem;
    color: rgb(49, 106, 211);
    font-weight: 600;
}

#dataview04 .col p, #dataview06 .col p {
    font-size: 0.16rem;
    margin-bottom: 0;
}

#dataview04 .col p img {
    margin-top: 0.2rem;
}

@media screen and (max-width: 1024px) {
    #dataview04 .col {
        padding-top: 0.3rem;
    }

    #dataview04 .col p {
        font-size : calc((0.2rem  * 100 / 50) * 0.66);
    }
}

/* ========== dataview 05 ========== */
#dataview05 .col, #dataview07 .col {
    background-color: rgb(243, 243, 243);
    box-shadow: none;
}

#dataview05 .col h3 {
    line-height: 1.3;
    margin-bottom: 0.3rem;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

#dataview05 .point-block {
    padding: 0.3rem;
    margin: 0.5rem 0 0;
    background-color: rgba(49, 106, 211, 0.3);
    border-radius: 0.15rem;
}

#dataview05 .point-block p {
    margin-bottom: 0;
}

/* ========== dataview 07 ========== */
#dataview07 .col {
    background-color: rgba(49, 106, 211, 0.3);
}

#dataview07 .col p {
    font-size: 0.16rem;
    margin-bottom: 0.1rem;
}

/* ========== connect01 ========== */
#connect01 .image figure img, .repeat .image figure img {
    width: 50%;
    margin-bottom: 0.2rem;
}

#connect01 .arrow, .repeat .arrow {
    width: 16%;
}

#connect01 .contents, .repeat .contents, #code01 .contents, #code02 .contents {
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    margin-top: 0.5rem;
}
#connect01 .col, #code02 .code-pie-chart .col  {
    flex-basis: 33%;
}

#connect01 .contents figure img, .repeat figure img {
    width: 90%;
}

#connect01 .contents figure img {
    margin-bottom: 0.3rem;
}

@media screen and (max-width: 896px) {
    #connect01 .contents {
        flex-direction:column;
    }

    #connect01 .image figure img, #connect01 .repeat .image figure img {
        width: 100%;
    }

    #connect01 .contents figure img, .repeat .contents figure img {
        width: 70%;
    }

    #connect01 .contents figure img {
        margin-top: 1.0rem;
    }
}

/* ========== connect02 ========== */
#connect02 .col {
    padding: 0.3rem;
    margin: 0.1rem 0;
    background-color: rgb(243, 243, 243);
    border-radius: 0.15rem;
}

#connect02 strong {
    background: linear-gradient(transparent 60%, rgb(31, 194, 161) 60%);
}

#connect02 .col .repeat .col {
    flex-basis: 33%;
    padding-top: 0;
    margin-top: 0;
}

#connect02 .col h3 span {
    font-size: 0.4rem;
    color: rgb(49, 106, 211);
    font-weight: 600;
}

#connect02 .col p {
    margin-bottom: 0;
}

#connect02 .cols {
    padding: 0.3rem;
    margin: 0.5rem 0;
    background-color: rgba(49, 106, 211, 0.3);
    border-radius: 0.15rem;
}

@media screen and (max-width: 896px) {
    #connect02 .col .repeat .contents {
        flex-direction:column;
    }
}

/* ========== code 01 ========== */
#code01 .image {
    margin-bottom: 0.5rem;
}

#code01 a.button {
    font-size: 0.2rem;
}

#code01 .contents {
    margin-top: 0;
}

#code01 .code-howto, #code01 .code-step, #code02 .code-pie-chart {
    margin-top: 1.0rem;
}

#code01 .code-howto .contents, #code02 .code-pie-chart .contents {
    align-items: center;
}

#code01 .code-howto .contents .col {
    flex-basis: 20%;
}

#code01 .code-howto .contents .col01 {
    flex-basis: 60%;
}

#code01 .code-howto .contents .col02 {
    flex-basis: 50%;
}

#code01 .code-howto .col figure img {
    width: 65%;
}

#code01 .code-howto .col01 figure img {
    width: 100%;
}

#code01 .code-howto .col02 figure img {
    width: 70%;
}

#code01 .code-step .contents {
    justify-content: space-between;
    align-items: stretch;
}

#code01 .code-step .cols {
    flex-basis: 21%;
    padding: 0 0.3rem 0.3rem 0.3rem;
    margin: 0.1rem 2%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.15rem;
}

#code01 .code-step .contents {
    justify-content: center;
}

#code01 .code-step .col figure img {
    width: 90%;
}

#code01 .code-step .cols .contents .col {
    flex-basis: 31%;
    padding: 0.05rem;
    margin: 0 1%;
}

#code01 .code-step .col figure img {
    width: 100%;
}

@media screen and (max-width: 896px) {
    #code01 a.button {
        font-size: 0.3rem;
    }

    #code01 .contents, #code02 .contents {
        flex-direction: column;
    }

    #code01 .code-howto .col figure img {
        width: 60%;
    }
    
    #code01 .code-howto .col01 figure img  {
        width: 100%;
        margin: 0.5rem 0;
    }

    #code01 .code-howto .col02 figure img {
        margin-bottom: 0.5rem;
    }

    #code01 .code-step .cols .contents .col {
        margin: 0 0 0.5rem 0;
    }
}

/* ========== code 02 ========== */
#code02 .contents .col {
    margin: 0 auto 0.5rem;
}

#code02 .code-pie-chart .contents {
    align-items: flex-end;
}

#code02 .code-pie-chart figure img {
    width: 70%;
}

@media screen and (max-width: 896px) {
    #code02 .contents .next {
        margin-bottom: 1.0rem;
    }

    #code02 .code-pie-chart figure img {
        width: 100%;
    }
}

/* ========== terms ========== */
#terms p {
    font-size: 0.16rem;
    text-align: left;
    margin-bottom: 0.3rem;
}

#terms h2 {
    font-size: 0.25rem;
    font-weight: 500;
    text-align: left;
    margin: 0;
    padding: 0;
}

#terms .text-right {
    text-align: right;
}

/* ========== terms ol ========== */
#terms .ol {
    padding: 0 15px;
    list-style-type: decimal;
}

#terms ol li {
    padding: 0 0 15px 0;
    margin-left: 15px;
    text-align: left;
}

#terms ol ol {
    list-style-type: none;
}

#terms ol ol > li {
    counter-increment: cnt;
    margin-left: 0;
    padding: 0 0 15px 0;
}

#terms ol ol > li:before {
    content: "("counter(cnt) ") ";
}

/* ========== terms table ========== */

#terms .simple-table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
    font-size: 13px;
    margin: 10px 0;
}

#terms .simple-table td, #terms .simple-table th {
    border-left: 1px solid #cbcbcb;
    border-bottom-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    margin: 0;
    padding: 2px;
    overflow: visible;
    vertical-align: middle;
    text-align: center;
}

#terms .simple-table thead {
    background-color: #e0e0e0;
}

#terms .simple-table td {
    background-color: transparent;
}

#terms .simple-table-odd td {
    background-color: #fff;
}

@media screen and (max-width: 896px) {
    #terms p {
        font-size : calc((0.2rem  * 100 / 50) * 0.66);
        text-align: left;
    }

    #terms h2 {
        font-size : calc((0.25rem  * 100 / 50) * 0.66);
    }

    #terms .scroll-box {
        overflow-x: auto;
    }

    #terms .simple-table {
        font-size: 10px;
        min-width: auto;
    }

}

/* ========== footer ========== */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 255, 255);
    background-color: rgb(51, 51, 51);
}

footer .inner {
    margin: 0.5rem 0;
}

footer .logo {
    margin: 0 auto;
}

footer .links {
    margin: 0.5rem 0;
}

footer .links a {
    color: rgb(255, 255, 255);
    margin: auto 0.15rem;
    position: relative;
    display: inline-block;
    transition: 0.3s;
  }

footer .links a:hover {
    color: rgb(49, 106, 211);
}

footer .links a::after {
    position: absolute;
    bottom: -0.05rem;
    left: 50%;
    content: '';
    width: 0;
    border-bottom: solid 2px rgb(49, 106, 211);
    transition: 0.3s;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

footer .links a:hover::after {
    width: 100%;
}

footer .copyright p {
    font-size: 0.16rem;
}

@media screen and (max-width: 896px) {
    footer .copyright p {
        font-size : calc((0.2rem  * 100 / 50) * 0.66);
    }
}

/* ========== terms ul ========== */
#terms ul li {
    padding: 8px 0 0 0;
    margin-left: 15px;
    text-align: left;
}

small {
    font-size: 0.7em;
  }
  
.font_bold{

  font-weight:bold;

}