@charset "utf-8";
/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

html {
    font-size: 16px;
}

body {
    color: #333;
    line-height: 1.6;
    font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,Verdana,"M+ 1p",sans-serif;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

ul, ol {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

img {
    max-width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* header-white */
.header-white {
    width: 100%;
    background-color: #fff;
    box-shadow:0px 0px 7px 0px #000000;
}

.header-white .inner {
    width: auto;
    max-width: 1054px;
    margin: 0 auto;
    padding: 23px 15px;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.header-white .hdr-logo {
    width: 275px;
    height: auto;
    margin-right: auto;
}

.header-white .header-btn {
    display: flex;
}

.header-white .header-btn div {
    margin-left: 1.25rem;
}

.header-white .header-btn a {
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
    padding: 0.75rem 2.5rem;
    display: block;
    transition: opacity 0.3s;
}

.header-white .header-btn a:hover {
    opacity: 0.7;
}

.header-white .btn-account a {
    color: #fff;
    background-color: #ff5a00;
}

.header-white .btn-login a {
    color: #a78b42;
    background-color: #003257;
}

.content-inner {
    width: auto;
    max-width: 1054px;
    margin: 0 auto;
    padding: 50px 15px;
}

.disclaimer {
    background-color: #efefef;
}

.disclaimer-inner {
    width: auto;
    max-width: 1054px;
    margin: 0 auto;
    padding: 60px 15px 45px;
}

.disclaimer-inner h2 {
    font-size: 1.125rem;
    margin-bottom: 1.125rem;
}

.disclaimer-inner p {
    font-size: 0.8125rem;
    margin-bottom: 1.125rem;
}

/* footer */
.footer-inner {
    width: auto;
    max-width: 1054px;
    margin: 0 auto;
    padding: 24px 15px;
}

.footer-inner p {
    font-size: 0.875rem;
    text-align: center;
}

.corporate-info {
    color: #5F2E2A;
    text-align: center;
    padding: 1.5625rem 0;
    border-top: solid 1px #5F2E2A;
    border-bottom: solid 1px #5F2E2A;
}

.btn-trade {
    color: #fff;
    background-color: #e6293d;
    border:2px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25);
    border-color: #e6293d;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    line-height: 1.5;
    text-decoration: none;
    width: 95%;
    max-width: 600px;
    display: block;
    position: relative;
    border-radius: 4px;
    cursor: pointer;
    margin:16px auto;
}

.btn-trade:after {
    content: "⟩";
    color: #fff;
    font-size: 0.8em;
    line-height: 1em;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    top: 50%;
    right: 15px;
    border: solid 1px #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

/**----------
common class
-----------**/

/* text-align */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}


/* background-color */
.bg-white {
    background-color: #fff !important;
}

.bg-gray {
    background-color: #f7f8f8 !important;
}

.bg-brown {
    color: #fff;
    background-color: #5f2e2a !important;
}


/* margin */
.mb-30 {
    margin-bottom: 30px;
}


/* PC */
@media all and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}



/* SP */
@media all and (max-width: 767px) {
    .pc {
        display: none !important;
    }

    .header-white .inner {
        padding: 15px;
    }

    .header-white .hdr-logo {
        width: 194px;
        height: auto;
        margin-right: auto;
    }

    .header-white .header-btn {
        display: block;
    }

    .header-white .header-btn div {
        margin-left: 0.75rem;
    }

    .header-white .header-btn div:first-child {
        margin-bottom: 0.25rem;
    }

    .header-white .header-btn a {
        font-size: 0.75rem;
        padding: 0.5em 1.4em;
    }

}