﻿@charset "UTF-8";

/* Common */

* {
    -webkit-text-size-adjust: 100%;
}

html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    line-height: 1.0em;
    letter-spacing: 0.025em;
    color: #181c1e;
    background: #fff;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-y: scroll;
    word-wrap: break-word;
    height: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, ul, li, ol, dl, dt, dd, table, tr, th, td, span, strong {
    line-height: 1.0em;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
    list-style-position: outside;
}

table {
    border-collapse: collapse;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

    a:hover {
        text-decoration: none;
    }

    a img {
        border: none;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -o-transition: 0.5s;
        -ms-transition: 0.5s;
        transition: 0.5s;
    }

    a:hover img {
        opacity: 1.0;
        _filter: alpha(opacity=100);
    }

    a:focus {
        outline: none;
    }

input,
textarea,
select {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6em;
    letter-spacing: 0.025em;
    outline: none;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
}

button {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    line-height: 1.0em;
    letter-spacing: 0.025em;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    display: block;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=date] {
    border: 1px solid #c6d2dd;
    background: #fff;
    box-sizing: border-box;
    padding: 15px 20px;
    border-radius: 5px;
    width: 100%;
}

textarea {
    border: 1px solid #c6d2dd;
    background: #fff;
    box-sizing: border-box;
    padding: 15px 20px;
    border-radius: 5px;
    width: 100%;
    height: 180px;
}

button[type=submit],
button[type=button] {
    font-weight: 700;
    letter-spacing: 0.1em;
    background: #2e7beb;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    width: 240px;
    line-height: 60px;
}

.box_select {
    width: 100%;
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
}

    .box_select:after {
        content: '';
        display: block;
        background: url(../img/ico_select.png) center center /contain no-repeat;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: 8px;
        height: 5px;
    }

    .box_select select {
        -webkit-appearance: none;
        appearance: none;
        padding: 15px 20px;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        border: 1px solid #c6d2dd;
        background: #fff;
    }

.box_input {
    max-width: 400px;
    background: #212b30;
    border-radius: 5px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

    .box_input span {
        padding: 0 15px;
        display: block;
        color: #5d6c75;
    }




/* Parts */

.forSp {
    display: none;
}

.mt20 {
    margin-top: 20px;
}

.txt_confirm {
    font-size: 1.5rem;
    line-height: 1.5em;
}

.inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.header {
    background: #181c1e;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 10;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

    .header h1 {
        padding: 0 40px;
    }

        .header h1 a img {
            width: 100px;
        }

    .header ul.btn {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
    }

        .header ul.btn li a {
            color: #fff;
            text-align: center;
            display: block;
            width: 100px;
            line-height: 60px;
            font-size: 1.3rem;
            font-weight: 500;
        }

        .header ul.btn li:nth-of-type(1) a {
            background: #e04641;
        }

        .header ul.btn li:nth-of-type(2) a {
            background: #2e7beb;
        }

.footer {
    background: #181c1e;
    color: #5d6c75;
    font-size: 1.2rem;
    padding: 40px 100px;
}

    .footer .data {
        margin-bottom: 24px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
    }

        .footer .data img {
            width: 100px;
            display: block;
        }

        .footer .data ul {
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex;
            align-items: center;
            -webkit-align-items: center;
        }

            .footer .data ul li {
                margin-left: 20px;
            }

                .footer .data ul li a {
                    color: #5d6c75;
                }




/* Index */

.area_main {
    margin-top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    background: url(../img/bg_main.jpg) center center /cover no-repeat;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

    .area_main img {
        display: block;
        max-width: 600px;
        width: 100%;
    }

    .area_main a {
        display: block;
        margin: 40px auto 0 auto;
        color: #fff;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        font-weight: 700;
        text-align: center;
        border: 3px solid #fff;
        width: 240px;
        line-height: 64px;
        box-sizing: border-box;
    }

        .area_main a:hover {
            background: #e04641;
            border: 3px solid #e04641;
        }

.area_about {
    padding: 100px 0;
}

    .area_about + .area_about {
        padding: 0 0 100px 0;
    }

    .area_about .inner .txts {
        flex: 1;
        -webkit-flex: 1;
        padding-right: 70px;
    }

        .area_about .inner .txts h2 {
            font-size: 2.3rem;
            line-height: 1.3em;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .area_about .inner .txts p {
            line-height: 1.6em;
        }

            .area_about .inner .txts p + p {
                margin-top: 16px;
            }

    .area_about .inner img {
        max-width: 696px;
        width: 100%;
        display: block;
        margin: 40px auto 0 auto;
    }

.area_foryou {
    padding: 80px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    background: url(../img/bg_foryou.jpg) center center /cover no-repeat;
}

    .area_foryou h2 {
        font-size: 2.3rem;
        line-height: 1.3em;
        letter-spacing: 0.1em;
        font-weight: 700;
        margin-bottom: 36px;
    }

    .area_foryou a {
        display: block;
        margin: 0 auto;
        color: #fff;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        font-weight: 700;
        text-align: center;
        border: 3px solid #fff;
        width: 240px;
        line-height: 64px;
        box-sizing: border-box;
    }

        .area_foryou a:hover {
            background: #e04641;
            border: 3px solid #e04641;
        }

.area_contact {
    padding: 100px 0;
    background: #f5f9ff;
}

    .area_contact .inner {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
    }

    .area_contact .ttl h2 {
        font-size: 2.3rem;
        line-height: 1.3em;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .area_contact .ttl p {
        line-height: 1.6em;
    }

    .area_contact .forms {
        width: 50%;
    }

        .area_contact .forms p {
            font-weight: 300;
            font-style: italic;
        }

        .area_contact .forms input {
            margin: 12px 0 24px 0;
        }

        .area_contact .forms textarea {
            margin: 12px 0 24px 0;
        }

        .area_contact .forms button {
            margin-top: 48px;
        }



/* Member */

.area_member01 {
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

    .area_member01::before {
        content: '';
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
        background: url(../img/bg_member01.jpg) center center /cover no-repeat;
        z-index: -1;
    }

    .area_member01::after {
        content: '';
        width: 50%;
        height: 100%;
        position: absolute;
        right: 0;
        background: #f5f9ff;
        z-index: -1;
    }

    .area_member01 .area_left {
        width: 50%;
        min-height: 100%;
        box-sizing: border-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .area_member01 .area_left img {
            max-width: 400px;
            width: 100%;
            display: block;
        }

    .area_member01 .area_right {
        background: #f5f9ff;
        width: 50%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 60px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .area_member01 .area_right form {
            max-width: 580px;
            width: 100%;
        }

        .area_member01 .area_right h1 {
            font-size: 2.3rem;
            line-height: 1.3em;
            letter-spacing: 0.1em;
            font-weight: 700;
            margin-bottom: 50px;
        }

        .area_member01 .area_right p {
            font-weight: 300;
            font-style: italic;
        }

        .area_member01 .area_right .affiliator {
            font-weight: 500;
            display: block;
            margin: 12px 0 24px 0;
        }

        .area_member01 .area_right input {
            margin: 12px 0 24px 0;
        }

        .area_member01 .area_right button {
            margin-top: 48px;
        }

        .area_member01 .area_right .link {
            margin-top: 24px;
        }

        .area_member01 .area_right a {
            color: #2e7beb;
        }



/* Registration */

.area_registration {
    background: #f5f9ff;
    padding: 100px 0;
    margin-top: 60px;
}

.cts_registration {
    max-width: 580px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

    .cts_registration h2 {
        font-size: 2.3rem;
        line-height: 1.3em;
        letter-spacing: 0.1em;
        font-weight: 700;
        margin-bottom: 50px;
        border-top: 1px solid #c6d2dd;
        margin-top: 50px;
        padding-top: 50px;
    }

        .cts_registration h2:first-child {
            border-top: none;
            margin-top: 0;
            padding-top: 0;
        }

    .cts_registration p {
        font-weight: 300;
        font-style: italic;
    }

    .cts_registration input[type=text],
    .cts_registration input[type=email],
    .cts_registration input[type=tel],
    .cts_registration input[type=password],
    .cts_registration input[type=date],
    .cts_registration .box_select {
        margin: 12px 0 24px 0;
    }

    .cts_registration .flex {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: flex-start;
        -webkit-align-items: flex-start;
        justify-content: space-between;
        -webkit-justify-content: space-between;
    }

        .cts_registration .flex .col {
            width: 49%;
        }

ul.list_radio {
    margin: 12px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

    ul.list_radio li {
        margin: 0 16px 12px 0;
        position: relative;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
    }

        ul.list_radio li input[type=radio] {
            position: absolute;
            visibility: hidden;
        }

        ul.list_radio li label {
            line-height: 24px;
            color: #c6d2dd;
            display: block;
            position: relative;
            padding: 0 0 0 32px;
            z-index: 2;
            cursor: pointer;
            -webkit-transition: all 0.25s linear;
        }

        ul.list_radio li:hover label {
            color: #2e7beb;
        }

        ul.list_radio li .check {
            display: block;
            position: absolute;
            border: 4px solid #c6d2dd;
            border-radius: 100%;
            height: 16px;
            width: 16px;
            top: 0;
            left: 0;
            z-index: 1;
            transition: border .25s linear;
            -webkit-transition: border .25s linear;
        }

        ul.list_radio li:hover .check {
            border: 4px solid #2e7beb;
        }

        ul.list_radio li .check::before {
            display: block;
            position: absolute;
            content: '';
            border-radius: 100%;
            height: 10px;
            width: 10px;
            top: 3px;
            left: 3px;
            margin: auto;
            transition: background 0.25s linear;
            -webkit-transition: background 0.25s linear;
        }

input[type=radio]:checked ~ .check {
    border: 4px solid #2e7beb;
}

    input[type=radio]:checked ~ .check::before {
        background: #2e7beb;
    }

input[type=radio]:checked ~ label {
    color: #2e7beb;
}

.cts_registration .txts {
    margin: -24px 0 24px 0;
}

    .cts_registration .txts p {
        line-height: 1.6em;
    }

        .cts_registration .txts p + p {
            margin-top: 12px;
        }

.cts_registration .uploadIDphoto {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

    .cts_registration .uploadIDphoto .col {
        width: 180px;
    }

        .cts_registration .uploadIDphoto .col .btn_upload {
            padding: 20px 13px;
            margin-top: 8px;
            height: 120px;
            border: 1px solid #2e7beb;
            cursor: pointer;
            appearance: none;
            display: block;
            box-sizing: border-box;
            color: #2e7beb;
            text-align: center;
            border-radius: 5px;
        }

            .cts_registration .uploadIDphoto .col .btn_upload input {
                display: none;
            }

            .cts_registration .uploadIDphoto .col .btn_upload img {
                width: 30px;
                margin: 0 auto;
                display: block;
            }

            .cts_registration .uploadIDphoto .col .btn_upload p {
                font-size: 1.2rem;
                line-height: 1.3em;
                margin-top: 8px;
            }

.cts_registration .box_check {
    line-height: 24px;
    margin: 48px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

    .cts_registration .box_check input[type=checkbox] {
        position: relative;
        margin: 0 8px 0 0;
        padding: 0;
        cursor: pointer;
        height: 24px;
        width: 24px;
    }

        .cts_registration .box_check input[type=checkbox]:before {
            position: absolute;
            z-index: 1;
            top: 5px;
            left: 5px;
            width: 10px;
            height: 6px;
            content: '';
            -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
            transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
            -webkit-transform: rotate(-45deg) scale(0, 0);
            transform: rotate(-45deg) scale(0, 0);
            border: 4px solid #2e7beb;
            border-top-style: none;
            border-right-style: none;
        }

        .cts_registration .box_check input[type=checkbox]:checked:before {
            -webkit-transform: rotate(-45deg) scale(1, 1);
            transform: rotate(-45deg) scale(1, 1);
        }

        .cts_registration .box_check input[type=checkbox]:after {
            position: absolute;
            top: 0;
            left: 0;
            width: 24px;
            height: 24px;
            content: '';
            cursor: pointer;
            border: 3px solid #c6d2dd;
            background: #fff;
            box-sizing: border-box;
            border-radius: 4px;
        }

        .cts_registration .box_check input[type=checkbox]:checked:after {
            border: 3px solid #2e7beb;
        }

    .cts_registration .box_check a {
        color: #2e7beb;
    }

.cts_registration button[type=submit] {
    margin: 0 auto;
}

.cts_export {
    margin-top: 25px;
}

    .cts_export button[type=submit] {
        margin: 0 auto;
        color: #2e7beb;
        background: none;
        border: 2px solid #2e7beb;
        font-weight: 500;
        line-height: 48px;
    }



/* MembershipFees */

.cts_fees01 {
    text-align: center;
}

    .cts_fees01 strong {
        display: block;
        font-weight: 700;
        font-size: 5.2rem;
        margin: 8px 0 16px 0;
    }

    .cts_fees01 button {
        margin: 0 auto;
    }

.blk_verification {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

    .blk_verification.fade {
        display: none;
    }

    .blk_verification .box {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        padding: 50px;
        box-sizing: border-box;
        background: #181c1e;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

        .blk_verification .box h2 {
            text-align: center;
            font-size: 1.9rem;
            letter-spacing: 0.1em;
            font-weight: 700;
            margin-bottom: 32px;
            color: #fff;
        }

        .blk_verification .box .qr {
            display: block;
            margin: 0 auto 24px auto;
        }

        .blk_verification .box p {
            font-weight: 300;
            font-style: italic;
            color: #5d6c75;
            margin-bottom: 8px;
        }

        .blk_verification .box .js-adrs {
            display: block;
            color: #fff;
            background: #212b30;
            padding: 10px;
            text-align: center;
        }

        .blk_verification .box .note {
            display: block;
            color: #e04641;
            font-size: 1.3rem;
            line-height: 1.5em;
            margin: 24px 0 32px 0;
        }

        .blk_verification .box .fees {
            text-align: center;
        }

            .blk_verification .box .fees strong {
                display: block;
                font-weight: 700;
                color: #fff;
                font-size: 3.5rem;
            }

                .blk_verification .box .fees strong span {
                    display: block;
                    font-weight: 700;
                    font-size: 1.9rem;
                    margin-top: 8px;
                }

                .blk_verification .box .fees strong + p {
                    margin-top: 28px;
                }

        .blk_verification .box .btn_close {
            color: #fff;
            background: #5d6c75;
            font-size: 1.2rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-align: center;
            width: 90px;
            line-height: 40px;
            display: block;
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
        }



/* Mypage */

.bg_mypage {
    color: #fff;
    background: #212b30;
    font-size: 1.2rem;
}

.header .menu {
    padding-right: 40px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

    .header .menu li {
        margin-left: 20px;
        overflow: hidden;
    }

        .header .menu li a {
            color: #fff;
            font-size: 1.3rem;
            line-height: 60px;
            font-weight: 500;
            position: relative;
            display: inline-block;
        }

            .header .menu li a:after {
                content: '';
                display: inline-block;
                background-color: #2e7beb;
                position: absolute;
                left: -200%;
                bottom: 0;
                width: 100%;
                height: 3px;
                transition: all .5s ease;
            }

            .header .menu li a:hover {
                color: #2e7beb;
            }

                .header .menu li a:hover:after {
                    left: 0;
                }

.menu-trigger,
.modal_menu {
    display: none;
}

.blk_inn {
    width: 100%;
}

.area_mypage {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: calc(100% - 140px);
    padding: 75px 10px 10px 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

    .area_mypage .area_menu {
        width: 220px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
    }

        .area_mypage .area_menu strong {
            display: block;
            color: #fff;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .area_mypage .area_menu ul + strong {
            margin-top: 16px;
        }

        .area_mypage .area_menu ul li {
            border-bottom: 2px solid #212b30;
        }

            .area_mypage .area_menu ul li a {
                font-size: 1.3rem;
                line-height: 1.3em;
                color: #5d6c75;
                background: #181c1e;
                display: block;
                padding: 17px 20px;
            }

                .area_mypage .area_menu ul li.active a,
                .area_mypage .area_menu ul li a:hover {
                    color: #fff;
                    background: #2e7beb;
                }

        .area_mypage .area_menu .btn {
            font-size: 1.3rem;
            line-height: 1.3em;
            display: block;
            text-align: center;
            padding: 13px 0;
            margin-top: 24px;
            color: #fff;
            background: #2e7beb;
            border-radius: 4px;
        }



    .area_mypage .area_conts {
        background: #181c1e;
        flex: 1;
        -webkit-flex: 1;
        margin-left: 10px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
    }

        .area_mypage .area_conts h1 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 500;
            padding-bottom: 8px;
            background: #212b30;
        }

        .area_mypage .area_conts .blk_balance {
            background: url(../img/bg_balance.jpg) center center /cover no-repeat;
            padding: 60px;
            margin-bottom: 50px;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex;
            align-items: flex-start;
            -webkit-align-items: flex-start;
        }

            .area_mypage .area_conts .blk_balance .data:nth-of-type(1) {
                padding-left: 0;
                border-left: none;
            }

            .area_mypage .area_conts .blk_balance .data {
                padding: 0 50px;
                border-left: 1px solid rgba(255,255,255,0.2);
            }

                .area_mypage .area_conts .blk_balance .data p {
                    color: rgba(255,255,255,0.5);
                    margin-bottom: 13px;
                }

                .area_mypage .area_conts .blk_balance .data strong {
                    display: block;
                    font-size: 2.8rem;
                }

                    .area_mypage .area_conts .blk_balance .data strong span {
                        font-size: 1.4rem;
                        margin-left: 4px;
                    }

                .area_mypage .area_conts .blk_balance .data .sup {
                    display: block;
                    margin-top: 8px;
                }

        .area_mypage .area_conts h2 {
            padding: 0 20px;
            margin-bottom: 16px;
            font-size: 1.3rem;
        }

            .area_mypage .area_conts h2.t_ttl_h2_00 {
                padding: 16px 0 8px 0;
                margin-bottom: 0;
                font-size: 1.2rem;
                font-weight: 500;
                background: #212b30;
            }

        .area_mypage .area_conts ul.tab_history {
            border-top: 1px solid #212b30;
            border-bottom: 1px solid #212b30;
            padding: 0 15px;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex;
            align-items: center;
            -webkit-align-items: center;
        }

            .area_mypage .area_conts ul.tab_history li {
                margin: 0 15px;
                line-height: 40px;
                transition: all .5s ease;
                cursor: pointer;
                overflow: hidden;
                position: relative;
            }

                .area_mypage .area_conts ul.tab_history li.select,
                .area_mypage .area_conts ul.tab_history li:hover {
                    color: #fff;
                }

                .area_mypage .area_conts ul.tab_history li:after {
                    content: '';
                    width: 200%;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    top: 0;
                    transition: all .5s ease;
                }

                .area_mypage .area_conts ul.tab_history li.select:after,
                .area_mypage .area_conts ul.tab_history li:hover:after {
                    background: #fff;
                }

        .area_mypage .area_conts .blk_tbl table {
            width: 100%;
        }

            .area_mypage .area_conts .blk_tbl table th {
                border-bottom: 1px solid #212b30;
                text-align: right;
                padding: 14px 15px;
                color: #5d6c75;
            }

            .area_mypage .area_conts .blk_tbl table td {
                color: #fff;
                border-bottom: 1px solid #212b30;
                text-align: right;
                padding: 14px 15px;
            }

                .area_mypage .area_conts .blk_tbl table td a {
                    color: #2e7beb;
                }

                .area_mypage .area_conts .blk_tbl table th:nth-of-type(1),
                .area_mypage .area_conts .blk_tbl table td:nth-of-type(1) {
                    text-align: left;
                    padding-left: 30px;
                }

                .area_mypage .area_conts .blk_tbl table th:last-child,
                .area_mypage .area_conts .blk_tbl table td:last-child {
                    padding-right: 30px;
                }

                .area_mypage .area_conts .blk_tbl table td.no_records {
                    color: #5d6c75;
                    text-align: center;
                    padding: 60px 0;
                    border-bottom: none;
                }

.box_paynow {
    padding-bottom: 16px;
    background: #212b30;
}

    .box_paynow a {
        color: #fff;
        background: #e04641;
        font-size: 1.4rem;
        padding: 8px 20px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .box_paynow a p {
            font-weight: 500;
        }

        .box_paynow a span {
            font-size: 1.2rem;
            border: 2px solid #fff;
            color: #fff;
            font-weight: 500;
            display: inline-block;
            padding: 6px 12px;
            margin-left: 10px;
        }



/* Account */

.head_account {
    padding: 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

    .head_account .user {
        font-size: 1.5rem;
        font-weight: 300;
        font-style: italic;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
    }

        .head_account .user img {
            display: block;
            width: 30px;
            margin-right: 8px;
        }

    .head_account .link {
        font-size: 1.3rem;
        text-align: right;
    }

        .head_account .link span {
            color: #5d6c75;
            font-weight: 300;
            font-style: italic;
        }

        .head_account .link p {
            margin-top: 12px;
        }

.blk_account .col:nth-of-type(1) {
    border-top: 1px solid #212b30;
}

.blk_account {
    padding-bottom: 50px;
}

    .blk_account .col {
        font-size: 1.3rem;
        padding: 12px 20px;
        border-bottom: 1px solid #212b30;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
    }

        .blk_account .col p {
            color: #5d6c75;
        }

        .blk_account .col .txt {
            display: block;
            padding: 10px 0;
        }

        .blk_account .col input {
            max-width: 400px;
            background: #212b30;
            color: #fff;
            border: none;
            padding: 10px 15px;
            font-size: 1.3rem;
        }

        .blk_account .col .box_select {
            max-width: 400px;
        }

            .blk_account .col .box_select select {
                padding: 10px 15px;
                border: none;
                background: #212b30;
                color: #fff;
                font-size: 1.3rem;
            }

    .blk_account button[type=submit] {
        margin: 30px auto 0 auto;
        font-size: 1.3rem;
        line-height: 40px;
    }

    .blk_account .col a.link {
        color: #2e7beb;
        font-size: 1.3rem;
        display: inline-block;
        border: 1px solid #2e7beb;
        border-radius: 5px;
        padding: 10px 20px;
    }

        .blk_account .col a.link:hover {
            color: #fff;
            background: #2e7beb;
        }

    .blk_account .col .col_fileup {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
    }

        .blk_account .col .col_fileup .btn_upload input {
            display: none;
        }

        .blk_account .col .col_fileup .btn_upload {
            cursor: pointer;
            appearance: none;
            transition: all .5s ease;
            color: #2e7beb;
            font-size: 1.3rem;
            display: block;
            border: 1px solid #2e7beb;
            border-radius: 5px;
            padding: 10px 0;
            margin-left: 8px;
            width: 100px;
            text-align: center;
        }

            .blk_account .col .col_fileup .btn_upload p {
                color: #2e7beb;
                transition: all .5s ease;
            }

            .blk_account .col .col_fileup .btn_upload:hover {
                color: #fff;
                background: #2e7beb;
            }

                .blk_account .col .col_fileup .btn_upload:hover p {
                    color: #fff;
                }

    .blk_account .cts_export {
        margin-top: 0;
    }

        .blk_account .cts_export button[type=submit] {
            line-height: 36px;
            margin: 25px auto 0 auto;
        }



/* Deposit */

.blk_deposit {
    padding: 50px 20px;
    max-width: 540px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

    .blk_deposit p {
        font-size: 1.5rem;
        font-style: italic;
        color: #5d6c75;
        text-align: center;
    }

    .blk_deposit .qr {
        display: block;
        margin: 16px auto 20px;
    }

    .blk_deposit .box_adrs {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
    }

        .blk_deposit .box_adrs .js-adrs {
            display: block;
            color: #fff;
            background: #212b30;
            padding: 13px 15px;
            border-radius: 3px;
            font-size: 1.4rem;
            flex: 1;
            -webkit-flex: 1;
        }

        .blk_deposit .box_adrs .js-copybtn {
            background: #2e7beb;
            color: #fff;
            text-align: center;
            width: 80px;
            line-height: 40px;
            border-radius: 3px;
            font-size: 1.3rem;
            margin-left: 10px;
        }

    .blk_deposit .note {
        display: block;
        font-size: 1.3rem;
        line-height: 1.5em;
        margin-top: 20px;
    }

.blk_bank_deposit {
    padding: 50px 20px;
    max-width: 760px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

    .blk_bank_deposit p {
        font-size: 1.5rem;
        font-style: italic;
        color: #5d6c75;
        text-align: center;
    }

    .blk_bank_deposit .box {
        background: #212b30;
        margin: 15px auto 20px auto;
        padding: 35px 0;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: flex-start;
        -webkit-align-items: flex-start;
        justify-content: center;
        -webkit-justify-content: center;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }

        .blk_bank_deposit .box dl {
            width: 37%;
            margin: 0 4%;
            padding: 15px 0;
        }

            .blk_bank_deposit .box dl dt {
                font-size: 1.4rem;
                color: #5d6c75;
                font-style: italic;
                margin: 0 0 8px 0;
            }

            .blk_bank_deposit .box dl dd {
                font-size: 1.4rem;
                line-height: 1.5em;
            }

                .blk_bank_deposit .box dl dd.txt_st {
                    color: #e04641;
                }

    .blk_bank_deposit p.sup {
        font-size: 1.3rem;
        line-height: 1.5em;
        font-style: normal;
        color: #fff;
        text-align: left;
    }

        .blk_bank_deposit p.sup span {
            color: #e04641;
        }



/* Exchanhge Charge Transfer */

.blk_transaction {
    padding: 50px;
    max-width: 500px;
    box-sizing: border-box;
}

    .blk_transaction p {
        font-size: 1.3rem;
        font-style: italic;
        margin-bottom: 8px;
    }

        .blk_transaction p.p2 {
            font-style: normal;
            color: #5d6c75;
            margin: 8px 0 0 0;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex;
            align-items: center;
            -webkit-align-items: center;
        }

            .blk_transaction p.p2 span:nth-of-type(2) {
                color: #fff;
                margin-left: 10px;
            }

    .blk_transaction input + p,
    .blk_transaction .box_select + p {
        margin-top: 20px;
    }

    .blk_transaction .rate_exchange {
        display: block;
        text-align: center;
        margin: 30px auto 0 auto;
        font-size: 2.8rem;
    }

        .blk_transaction .rate_exchange span {
            font-size: 1.4rem;
            margin-left: 4px;
        }

    .blk_transaction input {
        max-width: 400px;
        background: #212b30;
        color: #fff;
        border: none;
        padding: 10px 15px;
        font-size: 1.3rem;
    }

    .blk_transaction .box_select {
        max-width: 400px;
    }

        .blk_transaction .box_select select {
            padding: 10px 15px;
            border: none;
            background: #212b30;
            color: #fff;
            font-size: 1.3rem;
        }

    .blk_transaction button[type=submit] {
        margin: 30px auto 0 auto;
        font-size: 1.3rem;
        line-height: 40px;
    }



/* Time Deposit */

.area_mypage .area_conts .blk_balance.timedeposit {
    background: url(../img/bg_timedeposit.jpg) center center /cover no-repeat;
}

.blk_timedepositdetails {
    padding: 50px;
    max-width: 500px;
    box-sizing: border-box;
}

    .blk_timedepositdetails .blk_status {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: flex-start;
        -webkit-align-items: flex-start;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        margin-bottom: 34px;
    }

        .blk_timedepositdetails .blk_status dl {
            width: 180px;
            box-sizing: border-box;
            margin-bottom: 16px;
        }

            .blk_timedepositdetails .blk_status dl dt {
                color: #5d6c75;
                font-style: italic;
                font-size: 1.3rem;
                line-height: 1.5em;
            }

            .blk_timedepositdetails .blk_status dl dd {
                color: #fff;
                font-size: 1.3rem;
                line-height: 1.5em;
                margin-top: 5px;
            }

    .blk_timedepositdetails button[type=submit],
    .blk_timedepositdetails button[type=button] {
        font-size: 1.3rem;
        line-height: 40px;
    }

.pr_sign {
    display: none;
}



/* Message */

.blk_message_list .col {
    border-bottom: 1px solid #212b30;
}

    .blk_message_list .col a {
        display: block;
        padding: 15px 20px;
    }

        .blk_message_list .col a p {
            color: #fff;
            font-size: 1.4rem;
            line-height: 1.5em;
            transition: 0.5s;
        }

        .blk_message_list .col a span {
            color: #5d6c75;
            line-height: 1.5em;
            margin-top: 8px;
            display: block;
            transition: 0.5s;
        }

        .blk_message_list .col a:hover p,
        .blk_message_list .col a:hover span {
            color: #2e7beb;
        }

.blk_message_post {
    padding: 50px;
}

    .blk_message_post strong {
        font-size: 2.1rem;
        line-height: 1.3em;
        display: block;
    }

    .blk_message_post span {
        color: #5d6c75;
        line-height: 1em;
        margin: 20px 0 15px 0;
        display: block;
    }

    .blk_message_post p {
        font-size: 1.4rem;
        line-height: 1.7em;
    }


.txt_uc {
    text-align: center;
    color: #5d6c75;
    padding: 80px 0;
}




/* Card Activation */

.blk_activation {
    padding: 50px;
    max-width: 500px;
    box-sizing: border-box;
}

    .blk_activation p {
        font-size: 1.3rem;
        line-height: 1.5em;
    }

    .blk_activation .col {
        width: 200px;
        margin: 25px auto 0 auto;
    }

        .blk_activation .col .btn_upload {
            padding: 20px 13px;
            margin-top: 8px;
            border: 1px solid #2e7beb;
            cursor: pointer;
            appearance: none;
            display: block;
            box-sizing: border-box;
            color: #2e7beb;
            text-align: center;
            border-radius: 5px;
        }

            .blk_activation .col .btn_upload input {
                display: none;
            }

            .blk_activation .col .btn_upload img {
                width: 30px;
                margin: 0 auto;
                display: block;
            }

            .blk_activation .col .btn_upload p {
                font-size: 1.2rem;
                line-height: 1.3em;
                margin: 8px 0 0 0;
            }

    .blk_activation button[type=submit] {
        margin: 30px auto 0 auto;
        font-size: 1.3rem;
        line-height: 40px;
    }



/* Coming soon */

.area_comingsoon {
    color: #fff;
    width: 100%;
    height: 100vh;
    background: url(../img/bg_main.jpg) center center /cover no-repeat;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

    .area_comingsoon img {
        display: block;
        max-width: 400px;
        width: 100%;
    }

    .area_comingsoon .copy {
        font-size: 1.2rem;
        position: absolute;
        left: 50%;
        bottom: 50px;
        transform: translateX(-50%);
    }



/* Account - doc */

.mt50 {
    margin-top: 50px;
}

.box_docs {
    margin: 30px auto 50px auto;
    max-width: 580px;
    box-sizing: border-box;
}

    .box_docs .bx_select {
        margin-bottom: 24px;
    }

        .box_docs .bx_select p {
            color: #5d6c75;
            margin-bottom: 10px;
        }

        .box_docs .bx_select .box_select select {
            padding: 10px 15px;
            border: none;
            background: #212b30;
            color: #fff;
            font-size: 1.3rem;
        }

    .box_docs .uploadIDphoto {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: flex-start;
        -webkit-align-items: flex-start;
        justify-content: space-between;
        -webkit-justify-content: space-between;
    }

        .box_docs .uploadIDphoto .col {
            width: 180px;
            padding: 0;
            border: none;
            display: block;
        }

            .box_docs .uploadIDphoto .col .btn_upload {
                padding: 20px 13px;
                margin-top: 8px;
                height: 120px;
                border: 1px solid #2e7beb;
                cursor: pointer;
                appearance: none;
                display: block;
                box-sizing: border-box;
                text-align: center;
                border-radius: 5px;
            }

                .box_docs .uploadIDphoto .col .btn_upload input {
                    display: none;
                }

                .box_docs .uploadIDphoto .col .btn_upload img {
                    width: 30px;
                    margin: 0 auto;
                    display: block;
                }

                .box_docs .uploadIDphoto .col .btn_upload p {
                    font-size: 1.2rem;
                    line-height: 1.3em;
                    margin-top: 8px;
                    color: #2e7beb;
                    font-weight: 300;
                    font-style: italic;
                }



/* Agent */

.area_agent {
    color: #fff;
    width: 100%;
    height: 100vh;
    background: url(../img/bg_agent.jpg) center center /cover no-repeat;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

    .area_agent .col img {
        display: block;
        margin: 0 auto 80px auto;
    }

    .area_agent .col ul {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .area_agent .col ul li {
            margin: 0 20px;
        }

            .area_agent .col ul li a {
                color: #fff;
                font-weight: 700;
                letter-spacing: 0.1em;
                text-align: center;
                border-radius: 5px;
                width: 240px;
                line-height: 60px;
                display: block;
            }

            .area_agent .col ul li:nth-of-type(1) a {
                background: #e04641;
            }

            .area_agent .col ul li:nth-of-type(2) a {
                background: #2e7beb;
            }

    .area_agent .copy {
        font-size: 1.2rem;
        position: absolute;
        left: 50%;
        bottom: 50px;
        transform: translateX(-50%);
    }






@media only screen and (max-width: 768px) {



    /* Common */

    body {
        font-size: 1.3rem;
    }

    input,
    textarea,
    select {
        font-size: 1.3rem;
    }

    button {
        font-size: 1.3rem;
    }

    input[type=text],
    input[type=email],
    input[type=tel],
    input[type=password],
    input[type=date] {
        padding: 10px 15px;
        appearance: none;
        -webkit-appearance: none;
    }

    textarea {
        padding: 10px 15px;
        appearance: none;
        -webkit-appearance: none;
    }

    button[type=submit],
    button[type=button] {
        width: 100%;
        line-height: 52px;
    }

    .box_select select {
        padding: 10px 15px;
    }



    /* Parts */

    .forPc {
        display: none;
    }

    .forSp {
        display: block;
    }

    .mt20 {
        margin-top: 16px;
    }

    .header h1 {
        padding: 0 20px;
    }

    .header ul.btn li a {
        width: 80px;
    }

    .footer {
        text-align: center;
        padding: 40px 20px;
    }

        .footer .data {
            margin-bottom: 24px;
            display: block;
        }

            .footer .data img {
                margin: 0 auto 12px auto;
            }

            .footer .data ul {
                justify-content: center;
                -webkit-justify-content: center;
            }

                .footer .data ul li {
                    margin: 0 10px;
                }





    /* Index */

    .area_main {
        padding: 0 30px;
    }

        .area_main img {
            max-width: 300px;
        }

        .area_main a {
            font-size: 1.4rem;
            border: 2px solid #fff;
            width: 200px;
            line-height: 48px;
        }

            .area_main a:hover {
                border: 2px solid #e04641;
            }

    .area_about {
        padding: 50px 0;
    }

        .area_about + .area_about {
            padding: 0 0 50px 0;
        }

        .area_about .inner .txts {
            padding: 0;
        }

            .area_about .inner .txts h2 {
                font-size: 1.9rem;
                margin-bottom: 20px;
            }

            .area_about .inner .txts p + p {
                margin-top: 12px;
            }

        .area_about .inner img {
            margin: 20px auto 0 auto;
        }

    .area_foryou {
        padding: 40px 20px;
    }

        .area_foryou h2 {
            font-size: 1.5rem;
            margin-bottom: 18px;
        }

        .area_foryou a {
            font-size: 1.4rem;
            border: 2px solid #fff;
            width: 200px;
            line-height: 48px;
        }

            .area_foryou a:hover {
                border: 2px solid #e04641;
            }

    .area_contact {
        padding: 50px 0;
    }

        .area_contact .inner {
            display: block;
        }

        .area_contact .ttl h2 {
            font-size: 1.9rem;
            margin-bottom: 12px;
        }

        .area_contact .forms {
            margin-top: 32px;
            width: 100%;
        }

            .area_contact .forms input {
                margin: 8px 0 16px 0;
            }

            .area_contact .forms textarea {
                margin: 8px 0 16px 0;
            }

            .area_contact .forms button {
                margin-top: 16px;
            }





    /* Member */

    .area_member01 {
        display: block;
    }

        .area_member01::before {
            display: none;
        }

        .area_member01::after {
            width: 100%;
            height: 100%;
            bottom: 0;
        }

        .area_member01 .area_left {
            background: url(../img/bg_member01.jpg) center center /cover no-repeat;
            width: 100%;
            min-height: auto;
            padding: 10px;
        }

            .area_member01 .area_left img {
                max-width: 120px;
            }

        .area_member01 .area_right {
            width: 100%;
            min-height: auto;
            padding: 50px 20px;
        }

            .area_member01 .area_right h1 {
                font-size: 1.9rem;
                margin-bottom: 32px;
            }

            .area_member01 .area_right .affiliator {
                margin: 8px 0 16px 0;
            }

            .area_member01 .area_right input {
                margin: 8px 0 16px 0;
            }

            .area_member01 .area_right button {
                margin-top: 32px;
            }

            .area_member01 .area_right .link {
                margin-top: 16px;
                text-align: center;
            }




    /* Registration */

    .area_registration {
        padding: 50px 20px;
    }

    .cts_registration h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .cts_registration input[type=text],
    .cts_registration input[type=email],
    .cts_registration input[type=tel],
    .cts_registration input[type=password],
    .cts_registration input[type=date],
    .cts_registration .box_select {
        margin: 8px 0 16px 0;
    }

    ul.list_radio {
        margin: 8px 0 8px 0;
    }

        ul.list_radio li {
            margin: 0 16px 8px 0;
        }

    .cts_registration .txts {
        margin: -20px 0 16px 0;
    }

        .cts_registration .txts p + p {
            margin-top: 8px;
        }

    .cts_registration .uploadIDphoto {
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        flex-direction: column;
        -webkit-flex-direction: column;
    }

        .cts_registration .uploadIDphoto .col {
            width: 100%;
            max-width: 240px;
        }

            .cts_registration .uploadIDphoto .col + .col {
                margin-top: 15px;
            }

            .cts_registration .uploadIDphoto .col .btn_upload {
                padding: 17px 10px 20px 10px;
                margin-top: 5px;
                height: auto;
            }

    .cts_registration .box_check {
        line-height: 1.6em;
        margin: 32px 0;
    }

    .cts_registration button[type=submit] {
        margin: 0 auto;
    }

    .cts_export {
        margin-top: 20px;
    }

        .cts_export button[type=submit] {
            line-height: 40px;
        }



    /* MembershipFees */

    .cts_fees01 strong {
        font-size: 4.4rem;
    }

    .blk_verification {
        background: #181c1e;
    }

        .blk_verification .box {
            padding: 50px 20px;
            top: 0;
            transform: translateY(-0%);
        }

            .blk_verification .box .js-adrs {
                letter-spacing: 0;
            }

            .blk_verification .box .note {
                font-size: 1.2rem;
                margin: 24px 0 32px 0;
            }

            .blk_verification .box .fees strong {
                font-size: 3.2rem;
            }

                .blk_verification .box .fees strong span {
                    font-size: 1.7rem;
                }

                .blk_verification .box .fees strong + p {
                    margin-top: 28px;
                }

            .blk_verification .box .btn_close {
                font-size: 1.1rem;
                width: 72px;
                line-height: 32px;
            }






    /* Mypage */

    .header .menu {
        display: none;
    }

    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    .menu-trigger {
        position: relative;
        width: 20px;
        height: 20px;
        margin-right: 20px;
    }

        .menu-trigger span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #fff;
            border-radius: 2px;
        }

            .menu-trigger span:nth-of-type(1) {
                top: 0;
            }

            .menu-trigger span:nth-of-type(2) {
                top: 9px;
            }

            .menu-trigger span:nth-of-type(3) {
                bottom: 0;
            }

        .menu-trigger.active span:nth-of-type(1) {
            -webkit-transform: translateY(9px) rotate(-315deg);
            transform: translateY(9px) rotate(-315deg);
        }

        .menu-trigger.active span:nth-of-type(2) {
            opacity: 0;
        }

        .menu-trigger.active span:nth-of-type(3) {
            -webkit-transform: translateY(-9px) rotate(315deg);
            transform: translateY(-9px) rotate(315deg);
        }

    .modal_menu {
        opacity: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: #212b30;
        box-sizing: border-box;
        padding: 15px 10px 75px 10px;
        border-top: 1px solid #482322;
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        left: 200%;
        z-index: 9999;
        overflow-y: scroll;
        transition: all .4s ease;
    }

        .modal_menu.letsgo {
            opacity: 1;
            left: 0;
        }

        .modal_menu strong {
            display: block;
            color: #fff;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .modal_menu ul + strong {
            margin-top: 16px;
        }

        .modal_menu ul li {
            border-bottom: 2px solid #212b30;
        }

            .modal_menu ul li a {
                font-size: 1.3rem;
                line-height: 1.3em;
                color: #5d6c75;
                background: #181c1e;
                display: block;
                padding: 17px 20px;
            }

                .modal_menu ul li.active a,
                .modal_menu ul li a:hover {
                    color: #fff;
                    background: #2e7beb;
                }

        .modal_menu .btn {
            font-size: 1.3rem;
            line-height: 1.3em;
            display: block;
            text-align: center;
            padding: 13px 0;
            margin-top: 13px;
            color: #fff;
            background: #2e7beb;
            border-radius: 4px;
        }

    .area_mypage {
        min-height: calc(100% - 165px);
        padding: 75px 10px 10px 10px;
        display: block;
    }

        .area_mypage .area_menu {
            display: none;
        }

        .area_mypage .area_conts {
            margin-left: 0;
            display: block;
        }

            .area_mypage .area_conts .blk_balance {
                margin-bottom: 40px;
                padding: 30px;
                display: block;
            }

                .area_mypage .area_conts .blk_balance .data:nth-of-type(1) {
                    padding-top: 0;
                    border-top: none;
                }

                .area_mypage .area_conts .blk_balance .data:last-child {
                    padding-bottom: 0;
                }

                .area_mypage .area_conts .blk_balance .data {
                    padding: 16px 0;
                    border-left: none;
                    border-top: 1px solid rgba(255,255,255,0.2);
                }

                    .area_mypage .area_conts .blk_balance .data p {
                        font-size: 1.2rem;
                        margin-bottom: 7px;
                    }

                    .area_mypage .area_conts .blk_balance .data strong {
                        font-size: 2.3rem;
                    }

                        .area_mypage .area_conts .blk_balance .data strong span {
                            font-size: 1.3rem;
                        }

                    .area_mypage .area_conts .blk_balance .data .sup {
                        margin-top: 6px;
                    }

            .area_mypage .area_conts ul.tab_history {
                padding: 0 10px;
                box-sizing: border-box;
                width: 100%;
                overflow: auto;
                white-space: nowrap;
            }

                .area_mypage .area_conts ul.tab_history::-webkit-scrollbar {
                    height: 2px;
                }

                .area_mypage .area_conts ul.tab_history::-webkit-scrollbar-track {
                    background: #5d6c75;
                }

                .area_mypage .area_conts ul.tab_history::-webkit-scrollbar-thumb {
                    background: #48545b;
                }

                .area_mypage .area_conts ul.tab_history li {
                    margin: 0;
                    padding: 0 10px;
                    overflow: visible;
                }

                    .area_mypage .area_conts ul.tab_history li:after {
                        width: 100%;
                    }

            .area_mypage .area_conts .blk_tbl {
                width: 100%;
                overflow: auto;
                white-space: nowrap;
            }

                .area_mypage .area_conts .blk_tbl::-webkit-scrollbar {
                    height: 2px;
                }

                .area_mypage .area_conts .blk_tbl::-webkit-scrollbar-track {
                    background: #5d6c75;
                }

                .area_mypage .area_conts .blk_tbl::-webkit-scrollbar-thumb {
                    background: #48545b;
                }

                .area_mypage .area_conts .blk_tbl table th {
                    padding: 14px 10px;
                }

                .area_mypage .area_conts .blk_tbl table td {
                    padding: 14px 10px;
                }

                    .area_mypage .area_conts .blk_tbl table th:nth-of-type(1),
                    .area_mypage .area_conts .blk_tbl table td:nth-of-type(1) {
                        padding-left: 20px;
                    }

                    .area_mypage .area_conts .blk_tbl table th:last-child,
                    .area_mypage .area_conts .blk_tbl table td:last-child {
                        padding-right: 20px;
                    }


    .box_paynow {
        margin: -15px -10px 0 -10px;
    }

        .box_paynow a {
            font-size: 1.2rem;
            padding: 8px 15px;
            justify-content: space-between;
            -webkit-justify-content: space-between;
        }

            .box_paynow a span {
                border: 1px solid #fff;
                font-size: 1.1rem;
                padding: 6px 12px;
                margin-left: 10px;
            }


    /* Account */

    .head_account {
        padding: 30px;
        display: block;
    }

        .head_account .user {
            font-size: 1.3rem;
        }

            .head_account .user img {
                width: 30px;
                margin-right: 8px;
            }

        .head_account .link {
            font-size: 1.2rem;
            text-align: left;
            margin-top: 12px;
        }

            .head_account .link p {
                margin-top: 6px;
            }

    .blk_account {
        padding-bottom: 30px;
    }

        .blk_account .col {
            font-size: 1.2rem;
            display: block;
        }

            .blk_account .col p {
                margin-bottom: 8px;
            }

            .blk_account .col .txt {
                display: block;
                padding: 3px 0;
            }

        .blk_account button[type=submit] {
            margin: 20px auto 0 auto;
            width: 240px;
        }

        .blk_account .cts_export button[type=submit] {
            margin: 20px auto 0 auto;
        }



        .blk_account .col .col_fileup {
            display: block;
            margin-top: 10px;
        }

            .blk_account .col .col_fileup .btn_upload {
                padding: 8px 0;
                margin: 8px 0 0 0;
            }

                .blk_account .col .col_fileup .btn_upload p {
                    margin: 0;
                }







    /* Deposit */

    .blk_deposit {
        padding: 30px 20px 40px 20px;
    }

        .blk_deposit .box_adrs .js-adrs {
            padding: 0 15px;
            line-height: 35px;
            font-size: 1.3rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }

        .blk_deposit .box_adrs .js-copybtn {
            width: 60px;
            line-height: 35px;
            font-size: 1.3rem;
        }

        .blk_deposit .note {
            font-size: 1.1rem;
            margin-top: 15px;
        }

    .blk_bank_deposit {
        padding: 30px 20px 40px 20px;
    }

        .blk_bank_deposit .box {
            margin: 10px auto 15px auto;
            padding: 10px 0;
        }

            .blk_bank_deposit .box dl {
                width: 42%;
                margin: 0 2%;
                padding: 10px 0;
            }

                .blk_bank_deposit .box dl dt {
                    font-size: 1.2rem;
                    margin: 0 0 5px 0;
                }

                .blk_bank_deposit .box dl dd {
                    font-size: 1.2rem;
                }

        .blk_bank_deposit p.sup {
            font-size: 1.1rem;
        }


    /* Exchanhge */

    .blk_transaction {
        padding: 30px 20px 40px 20px;
    }

        .blk_transaction p.p2 {
            font-size: 1.2rem;
        }

        .blk_transaction input + p,
        .blk_transaction .box_select + p {
            margin-top: 16px;
        }

        .blk_transaction .rate_exchange {
            margin: 20px auto 0 auto;
            font-size: 2.3rem;
        }

            .blk_transaction .rate_exchange span {
                font-size: 1.3rem;
            }

        .blk_transaction button[type=submit] {
            margin: 20px auto 0 auto;
        }


    /* Time Deposit */

    .blk_timedepositdetails {
        padding: 30px 20px 40px 20px;
    }

        .blk_timedepositdetails .blk_status {
            margin-bottom: 18px;
        }

            .blk_timedepositdetails .blk_status dl {
                width: calc(100% / 2 - 10px);
                margin-bottom: 12px;
            }

                .blk_timedepositdetails .blk_status dl dt {
                    font-size: 1.2rem;
                }

                .blk_timedepositdetails .blk_status dl dd {
                    font-size: 1.2rem;
                    margin-top: 5px;
                }


    /* Message */

    .blk_message_list .col a p {
        font-size: 1.3rem;
    }

    .blk_message_list .col a span {
        font-size: 1.0rem;
    }

    .blk_message_post {
        padding: 30px 20px;
    }

        .blk_message_post strong {
            font-size: 1.7rem;
        }

        .blk_message_post span {
            font-size: 1.0rem;
        }

        .blk_message_post p {
            font-size: 1.3rem;
        }



    /* Card Activation */

    .blk_activation {
        padding: 30px 30px 40px 30px;
    }

        .blk_activation .col {
            margin: 25px auto 0 auto;
        }

        .blk_activation button[type=submit] {
            margin: 30px auto 0 auto;
        }




    /* Coming soon */

    .area_comingsoon img {
        max-width: 240px;
    }

    .area_comingsoon .copy {
        font-size: 1.2rem;
        bottom: 30px;
    }




    /* Account - doc */

    .mt50 {
        margin-top: 40px;
    }

    .box_docs {
        margin: 30px auto 40px auto;
        padding: 0 20px;
    }

        .box_docs .bx_select {
            margin-bottom: 30px;
        }

            .box_docs .bx_select p {
                margin-bottom: 8px;
            }

        .box_docs .uploadIDphoto {
            align-items: center;
            -webkit-align-items: center;
            justify-content: center;
            -webkit-justify-content: center;
            flex-direction: column;
            -webkit-flex-direction: column;
        }

            .box_docs .uploadIDphoto .col {
                width: 100%;
                max-width: 240px;
            }

                .box_docs .uploadIDphoto .col + .col {
                    margin-top: 15px;
                }

                .box_docs .uploadIDphoto .col .btn_upload {
                    padding: 17px 10px 20px 10px;
                    margin-top: 5px;
                    height: auto;
                }




    /* Agent */

    .area_agent .col {
        padding: 0 30px;
        width: 100%;
        box-sizing: border-box;
    }

        .area_agent .col img {
            width: 200px;
            margin: 0 auto 40px auto;
        }

        .area_agent .col ul {
            display: block;
        }

            .area_agent .col ul li {
                margin: 0;
            }

                .area_agent .col ul li + li {
                    margin-top: 20px;
                }

                .area_agent .col ul li a {
                    width: 100%;
                    line-height: 52px;
                }

    .area_agent .copy {
        bottom: 30px;
    }
}
