﻿@charset "UTF-8";

/*CSSDocument*/


/* share
===============================================================*/

.clearfix:after {
    content: " ";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
}

.clearfix {
    display: inline-block;
}
/* exlude MacIE5 \*/
* html .clearfix {
    height: 1%
}

.clearfix {
    display: block;
}
/* end MacIE5 */


.clear {
    clear: both;
}

.c-check-input {
    display: none;
}

.c-check {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding-left: 30px;
}

    .c-check:before {
        width: 20px;
        height: 20px;
        background: #FFF;
        position: absolute;
        border: #000 1px solid;
        box-sizing: border-box;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        content: '';
    }

    .c-check > span {
        position: absolute;
        width: 13px;
        height: 7px;
        display: block;
        top: 6px;
        left: 3px;
        margin: auto;
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.c-check-parts1,
.c-check-parts2 {
    position: absolute;
    background: #000;
}

.c-check-parts1 {
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.c-check-parts2 {
    height: 100%;
    width: 2px;
    top: 0;
    left: 0;
    opacity: 0;
}

.c-check-input:checked + .c-check .c-check-parts1 {
    -webkit-animation: check01 0.3s 0.2s ease-in-out alternate forwards;
    animation: check01 0.3s 0.2s ease-in-out alternate forwards;
}

.c-check-input:checked + .c-check .c-check-parts2 {
    -webkit-animation: check02 0.2s 0s ease-in-out alternate forwards;
    animation: check02 0.2s 0s ease-in-out alternate forwards;
}

@keyframes check01 {
    0% {
        opacity: 1;
        width: 0px;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

@-webkit-keyframes check01 {
    0% {
        opacity: 1;
        width: 0px;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

@keyframes check02 {
    0% {
        opacity: 1;
        height: 0px;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}

@-webkit-keyframes check02 {
    0% {
        opacity: 1;
        height: 0px;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}


a.c-defBtn {
    display: block;
    background: #959595;
    font-size: 16px;
    border-radius: 100px;
    line-height: 1;
    color: #FFF;
    font-weight: bold;
    padding: 8px 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
}

    a.c-defBtn.is-red {
        background-color: #ff0000;
    }

    a.c-defBtn .svg-inline--fa {
        /*  background-image: url(../images/icon_tab.png);
  background-repeat: no-repeat;
  background-position: left 10px center; */
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        left: 12px;
        font-size: 12px;
    }

    a.c-defBtn:hover {
        opacity: 0.7;
    }


.c-loadingBack {
    position: fixed;
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
    left: 0;
    top: 0;
    z-index: 10000
}

.c-loadingOuter {
    display: none;
    height: 250px;
    width: 250px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 10001;
    background: #ffffff;
}

.c-loading {
    width: 200px;
    margin: 0 auto;
}

    .c-loading .timer {
        fill: #999999 !important;
    }

        .c-loading .timer .number {
            font-size: 30px;
        }

        .c-loading .timer .percent {
            font-size: 16px;
        }

    .c-loading .border {
        stroke: #FFF !important;
    }

    .c-loading .circle {
        stroke: #999999 !important;
    }

.c-loadingText {
    font-size: 16px;
    font-weight: bold;
    color: #999;
}

.c-balBoxOuter {
    position: relative;
    margin: 0 0px;
}

.c-balBox {
    position: absolute;
    width: 100%;
    top: 13px;
    left: 0;
    border: #ff9c00 1px solid;
    box-sizing: border-box;
    z-index: 5000;
    background: #FFF;
    display: none;
}

.c-balBoxInner {
    padding: 15px 15px 15px 20px;
}

.c-balBox-title {
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    margin-bottom: 30px;
}

    .c-balBox-title:after {
        position: absolute;
        content: '';
        height: 1px;
        width: 100px;
        background: #000;
        margin: auto;
        left: 0;
        right: 0;
        bottom: -12px;
    }

.c-balBox-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 10px;
    font-weight: bold;
}

.c-balBox-closeWrap {
}

.c-balBox-close {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

    .c-balBox-close:before {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        border: #959595 1px solid;
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        bottom: 0;
    }

    .c-balBox-close span {
        display: inline-block;
        position: relative;
        padding-left: 30px;
        font-size: 14px;
        font-weight: bold;
    }

        .c-balBox-close span:before,
        .c-balBox-close span:after {
            content: '';
            display: block;
            background: #959595;
            position: absolute;
            margin: auto;
            top: -4px;
            bottom: 0;
        }

        .c-balBox-close span:before {
            width: 25px;
            height: 1px;
            left: -2px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .c-balBox-close span:after {
            width: 1px;
            height: 25px;
            left: 10px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

.c-balBox-link {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

    .c-balBox-link:before,
    .c-balBox-link:after {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        content: '';
        vertical-align: middle;
        box-sizing: border-box;
        width: 7px;
        height: 7px;
        border: 7px solid transparent;
        opacity: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .c-balBox-link:before {
        border-bottom: 14px solid #fff;
        top: 24px;
        z-index: 5002;
    }

    .c-balBox-link:after {
        border-bottom: 14px solid #ff9c00;
        top: 23px;
        z-index: 5001;
    }

    .c-balBox-link.is-active:before,
    .c-balBox-link.is-active:after {
        opacity: 0;
    }

a.c-btn,
button.c-btn {
    text-decoration: none;
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    color: #FFF;
    border-radius: 50px;
    background: #959595;
    border: none;
    padding: 15px 0;
    position: relative;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.c-btn2 {
    display: block;
    margin: 5px 0 5px 5px;
    width: auto;
    font-weight: bold;
    line-height: 0.6;
    color: #FFF;
    background: #FF0000;
    border: none;
    padding: 15px 0;
    position: relative;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.c-btn3 {
    font-size: 10px;
    font-weight: initial;
}
.c-btn4 {
    font-size: 12px;
}
.c-btn-mail:before,
.c-btn-print:before,
.c-btn-pdf:before {
    display: inline-block;
    font: normal normal normal 16px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
}

.c-btn-mail:before {
    content: "\f003";
    left: 10px;
}

.c-btn-print:before {
    content: "\f02f";
    left: 10px;
}

.c-btn-pdf:before {
    content: "\f1c1";
    left: 10px;
    font-size: 14px;
}

.c-btn-prev:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    content: '';
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.c-btn-next:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    content: '';
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

a.c-btn:hover,
button.c-btn:hover {
    background: #000;
}

.c-btn.is-two {
    padding: 12px 0;
}

.c-btn.is-off {
    pointer-events: none;
    background: #c1c0c0;
    color: #a0a0a0;
}

    .c-btn.is-off:before {
        border-color: #a0a0a0;
    }

.c-btn.is-on {
    background: #ff0000;
}


.p-note {
}

    .p-note .mCSB_scrollTools .mCSB_draggerRail {
        background: none;
    }

    .p-note .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        background: #a0a0a0;
        width: 6px;
        border-radius: 5px;
    }

    .p-note .mCSB_inside > .mCSB_container {
        margin-right: 10px;
    }

    .p-note .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
    .p-note .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
        background: #a0a0a0;
    }

.p-noteContent {
    box-sizing: border-box;
    margin-bottom: 30px;
    height: 300px;
    padding: 10px 0;
}

.p-noteInner {
    /*  overflow: scroll; */
    padding: 20px 8px 10px 10px;
    box-sizing: border-box;
}

.p-noteHeadTitle {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 34px;
}

.p-noteInner p {
    font-size: 16px;
    line-height: 2;
    text-align: left;
    padding-bottom: 10px;
    font-weight: bold;
}

.p-noteCheck {
    margin-bottom: 30px;
}

.p-note-btn {
    text-align: center;
    padding: 0 20px 40px 20px;
}

    .p-note-btn:after {
        content: '';
        display: block;
        clear: both;
    }

    .p-note-btn li {
    }

        .p-note-btn li + li {
            margin-top: 30px;
        }

        .p-note-btn li:nth-child(2) {
        }

        .p-note-btn li a {
            display: block;
            background: #FF6161;
            font-size: 18px;
            line-height: 1;
            color: #FFF;
            border-radius: 50px;
            font-weight: bold;
            padding: 20px 0 19px 0;
            position: relative;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }
            /*
.p-note-btn li a:before {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 10;
} */
            .p-note-btn li a span {
                position: relative;
                z-index: 10;
            }

        .p-note-btn li p {
            font-size: 16px;
            line-height: 1;
            font-weight: bold;
            padding-top: 13px;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out;
        }

    .p-note-btn.p-note-noBtn {
    }

        .p-note-btn.p-note-noBtn li a {
            color: #fff;
            pointer-events: none;
            background-color: #ff6161;
        }

    .p-note-btn li a:after {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        border-radius: 50px;
        background: #c1c0c0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        opacity: 0;
    }

    .p-note-btn.p-note-noBtn li a:after {
        opacity: 1;
    }

    .p-note-btn.p-note-noBtn li p {
        color: #000;
    }


.p-question {
    padding: 0 0 40px 0;
}

.p-questionNum {
    height: 40px;
}

.p-questionNumList {
    font-family: 'Anton', sans-serif;
}

    .p-questionNumList li {
        position: relative;
        /*  margin-top: 30px; */
        float: left;
        width: 40px;
        height: 40px;
    }

        .p-questionNumList li span {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            display: block;
            font-size: 18px;
            line-height: 40px;
            color: #FFF;
            text-align: center;
            background: #CECECE;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .p-questionNumList li + li {
            margin-left: 1px;
        }

        .p-questionNumList li.is-pass {
            width: 30px;
        }

            .p-questionNumList li.is-pass span {
                /*  margin-top: 40px; */
                height: 30px;
                font-size: 14px;
                line-height: 30px;
                background: rgb(149,149,149); /* Old browsers */
                background: -moz-linear-gradient(top, rgba(149,149,149,1) 0%, rgba(140,140,140,1) 100%); /* FF3.6-15 */
                background: -webkit-linear-gradient(top, rgba(149,149,149,1) 0%,rgba(140,140,140,1) 100%); /* Chrome10-25,Safari5.1-6 */
                background: linear-gradient(to bottom, rgba(149,149,149,1) 0%,rgba(140,140,140,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#959595', endColorstr='#8c8c8c',GradientType=0 ); /* IE6-9 */
            }

        .p-questionNumList li.is-now {
            width: 40px;
        }

            .p-questionNumList li.is-now span {
                /*  margin-top: 0px; */
                font-size: 18px;
                line-height: 40px;
                height: 40px;
                overflow: hidden;
                color: #FFF;
                background: #FF6161;
            }

.p-questionBtnList.p-questionBtnList-2 {
}

    .p-questionBtnList.p-questionBtnList-2 li {
    }

        .p-questionBtnList.p-questionBtnList-2 li:nth-child(2n) {
            margin-right: 0;
        }

.p-questionNumList li:nth-child(1) {
    z-index: 10;
}

.p-questionNumList li:nth-child(2) {
    z-index: 9;
}

.p-questionNumList li:nth-child(3) {
    z-index: 8;
}

.p-questionNumList li:nth-child(4) {
    z-index: 7;
}

.p-questionNumList li:nth-child(5) {
    z-index: 6;
}

.p-questionNumList li:nth-child(6) {
    z-index: 5;
}

.p-questionNumList li:nth-child(7) {
    z-index: 4;
}

.p-questionNumList li:nth-child(8) {
    z-index: 1;
}

.p-questionNumList li.is-previous1,
.p-questionNumList li.is-previous2,
.p-questionNumList li.is-previous3,
.p-questionNumList li.is-previous4,
.p-questionNumList li.is-previous5,
.p-questionNumList li.is-previous6,
.p-questionNumList li.is-previous7 {
    opacity: 0;
}

.p-questionNumList li.is-previous1 {
    -webkit-animation: previous1 0.15s 1s ease-in-out alternate forwards;
    animation: previous1 0.15s 1s ease-in-out alternate forwards;
}

.p-questionNumList li.is-previous2 {
    -webkit-animation: previous2 0.3s 1s ease-in-out alternate forwards;
    animation: previous2 0.3s 1s ease-in-out alternate forwards;
}

.p-questionNumList li.is-previous3 {
    -webkit-animation: previous3 0.45s 1s ease-in-out alternate forwards;
    animation: previous3 0.45s 1s ease-in-out alternate forwards;
}

.p-questionNumList li.is-previous4 {
    -webkit-animation: previous4 0.6s 1s ease-in-out alternate forwards;
    animation: previous4 0.6s 1s ease-in-out alternate forwards;
}

.p-questionNumList li.is-previous5 {
    -webkit-animation: previous5 0.75s 1s ease-in-out alternate forwards;
    animation: previous5 0.75s 1s ease-in-out alternate forwards;
}

.p-questionNumList li.is-previous6 {
    -webkit-animation: previous6 0.9s 1s ease-in-out alternate forwards;
    animation: previous6 0.9s 1s ease-in-out alternate forwards;
}

.p-questionNumList li.is-previous7 {
    -webkit-animation: previous7 1.05s 1s ease-in-out alternate forwards;
    animation: previous7 1.05s 1s ease-in-out alternate forwards;
}

@keyframes previous1 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-41px, 0%);
        transform: translate(-41px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes previous1 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-41px, 0%);
        transform: translate(-41px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@keyframes previous2 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-82px, 0%);
        transform: translate(-82px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes previous2 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-82px, 0%);
        transform: translate(-82px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@keyframes previous3 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-123px, 0%);
        transform: translate(-123px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes previous3 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-123px, 0%);
        transform: translate(-123px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@keyframes previous4 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-164px, 0%);
        transform: translate(-164px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes previous4 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-164px, 0%);
        transform: translate(-164px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@keyframes previous5 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-205px, 0%);
        transform: translate(-205px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes previous5 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-205px, 0%);
        transform: translate(-205px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@keyframes previous6 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-246px, 0%);
        transform: translate(-246px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes previous6 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-246px, 0%);
        transform: translate(-246px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@keyframes previous7 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-287px, 0%);
        transform: translate(-287px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes previous7 {
    0% {
        opacity: 1;
        -webkit-transform: translate(-287px, 0%);
        transform: translate(-287px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}



.p-questionContent {
    padding: 30px 20px 40px 20px;
    box-sizing: border-box;
}

.p-questionHeadTitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

    .p-questionHeadTitle a {
        color: #ff9c00;
    }

.p-questionBtnList {
}

    .p-questionBtnList li {
    }

        .p-questionBtnList li + li {
            margin-top: 20px;
        }

.p-questionCheckBtn-input {
    display: none;
}

.p-questionCheckBtn {
    display: table;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}

    .p-questionCheckBtn p {
        display: table-cell;
        height: 50px;
        vertical-align: middle;
        font-size: 20px;
        line-height: 26px;
        color: #FF6161;
        border-radius: 50px;
        border: 2px solid #ff6161;
        font-weight: bold;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .p-questionCheckBtn p > span {
            font-size: 16px;
        }

    .p-questionCheckBtn > span {
        display: block;
        position: absolute;
        opacity: 0;
    }

        .p-questionCheckBtn > span:nth-child(1) {
            width: 100%;
            height: 3px;
            top: 0;
            left: 0;
        }

        .p-questionCheckBtn > span:nth-child(2) {
            width: 3px;
            height: 100%;
            top: 0;
            right: 0;
        }

        .p-questionCheckBtn > span:nth-child(3) {
            width: 100%;
            height: 3px;
            bottom: 0;
            right: 0;
        }

        .p-questionCheckBtn > span:nth-child(4) {
            width: 3px;
            height: 100%;
            bottom: 0;
            left: 0;
        }

    .p-questionCheckBtn:hover > span:nth-child(1) {
        -webkit-animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
        animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
    }

    .p-questionCheckBtn:hover > span:nth-child(2) {
        -webkit-animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
        animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
    }

    .p-questionCheckBtn:hover > span:nth-child(3) {
        -webkit-animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
        animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
    }

    .p-questionCheckBtn:hover > span:nth-child(4) {
        -webkit-animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
        animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
    }

.p-questionCheckBtn-input:checked + .p-questionCheckBtn > span {
    opacity: 1;
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%
    }
}

@keyframes height {
    0% {
        height: 0%;
    }

    100% {
        height: 100%
    }
}

@-webkit-keyframes height {
    0% {
        height: 0%;
    }

    100% {
        height: 100%
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

/*
.p-questionCheckBtn:hover:before {
  opacity: 1;
} */
.p-questionCheckBtn.is-big {
}

    .p-questionCheckBtn.is-big p {
    }

.p-bottomBtn {
    padding-top: 35px;
    display: flex;
}

.p-questionPrev {
}

.p-questionNextBtn,
a.p-questionPrevBtn {
    font-size: 16px;
    color: #FFF;
    font-weight: bold;
    padding: 12px 0;
    display: inline-block;
    background: #fff;
    color: #ff6161;
    border-radius: 50px;
    width: 48%;
    position: relative;
    border: none;
    outline: 0;
}

    .p-questionNextBtn:before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 16px;
        margin: auto;
        content: '';
        vertical-align: middle;
        width: 10px;
        height: 10px;
        border-top: 1px solid #ff6161;
        border-left: 1px solid #ff6161;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    a.p-questionPrevBtn:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 16px;
        margin: auto;
        content: '';
        vertical-align: middle;
        width: 10px;
        height: 10px;
        border-top: 1px solid #ff6161;
        border-left: 1px solid #ff6161;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
/*
button.p-questionNextBtn {
  background: #c1c0c0;
  color: #a0a0a0;
} */
.p-questionNextBtn {
    pointer-events: none;
    background: #c1c0c0;
    color: #a0a0a0;
}

    .p-questionNextBtn.is-two {
        margin-left: 4%;
    }

    .p-questionNextBtn.is-red.is-active {
        background: #FF0000;
        cursor: pointer;
        color: #FFF;
        pointer-events: auto;
    }

.p-lastTimeCaution {
    padding-top: 30px;
}

.p-priorityInner {
    padding: 20px;
}

.p-priorityHead {
    margin-bottom: 30px;
    position: relative;
}

.p-priorityHeadTitle {
    font-size: 18px;
    line-height: 1.7;
}

    .p-priorityHeadTitle > span {
    }

        .p-priorityHeadTitle > span i,
        .p-priorityHeadTitle > span svg {
            color: #ff6161;
        }

        .p-priorityHeadTitle > span > span {
            font-size: 14px;
            display: inline-block;
            padding-left: 5px;
            vertical-align: middle;
            text-decoration: underline;
        }

.p-region {
    padding: 0 0 40px 0;
}

.p-regionContent {
    padding: 20px 0 20px 0;
}

.p-regionHead {
    margin-bottom: 30px;
    position: relative;
}

.p-regionHeadTitle {
    font-size: 18px;
    line-height: 1.7;
}

    .p-regionHeadTitle > span {
    }

        .p-regionHeadTitle > span i,
        .p-regionHeadTitle > svg i {
            color: #ff6161;
        }

        .p-regionHeadTitle > span > span {
            vertical-align: middle;
            font-size: 14px;
            display: inline-block;
            padding-left: 5px;
        }

.p-regionBtn-input {
    display: none;
}

.p-regionBtn {
    width: 100%;
    box-sizing: border-box;
    color: #FFF;
    position: relative;
    display: block;
    border-radius: 50px;
}

.p-regionBtn.is-on {
    background-color: #ff6161;
    cursor: pointer;
}

.p-regionBtn.is-off {
    background: #898989;
}

.p-regionBtn-name,
.p-regionBtn-num {
    box-sizing: border-box;
}

.p-regionBtn-name {
    height: 34px;
    padding-right: 34px;
    display: block;
    padding-top: 6px;
    position: relative;
    font-size: 16px;
    z-index: 10;
    font-weight: bold;
}

.p-regionBtn-num {
    height: 26px;
    line-height: 26px;
    width: 30px;
    top: 4px;
    right: 4px;
    display: block;
    position: absolute;
    z-index: 11;
    font-weight: bold;
    background: #FFF;
    border-radius: 50px;
    width: 40px;
    color: #898989;
}

.p-regionBtn.is-on .p-regionBtn-num {
    background: #FFF;
    color: #FF6161;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.p-regionBtnList01 {
    background: url(../images/region_img01.png) no-repeat center center;
    background-size: 100% auto;
    width: 100%;
    margin-bottom: 18px;
    position: relative;
    padding: 0 4%;
    box-sizing: border-box;
}

    .p-regionBtnList01 li {
        opacity: 0;
        float: left;
        width: 48%;
        margin-bottom: 10px;
    }

        .p-regionBtnList01 li:nth-child(2n) {
            float: right;
        }

.p-regionList-europe {
}

.p-regionList-middleEast {
}

.p-regionList-africa {
}

.p-regionList-asia {
}

.p-regionList-japan {
}

.p-regionList-oceania {
}

.p-regionList-northAmerica {
}

.p-regionList-latinAmerica {
}

.p-regionBtnList01 li:nth-child(1) {
    -webkit-animation: memo 0.5s 0s ease-in-out alternate forwards;
    animation: memo 0.5s 0s ease-in-out alternate forwards;
}

.p-regionBtnList01 li:nth-child(2) {
    -webkit-animation: memo 0.5s 0.2s ease-in-out alternate forwards;
    animation: memo 0.5s 0.2s ease-in-out alternate forwards;
}

.p-regionBtnList01 li:nth-child(3) {
    -webkit-animation: memo 0.5s 0.4s ease-in-out alternate forwards;
    animation: memo 0.5s 0.4s ease-in-out alternate forwards;
}

.p-regionBtnList01 li:nth-child(4) {
    -webkit-animation: memo 0.5s 0.6s ease-in-out alternate forwards;
    animation: memo 0.5s 0.6s ease-in-out alternate forwards;
}

.p-regionBtnList01 li:nth-child(5) {
    -webkit-animation: memo 0.5s 0.8s ease-in-out alternate forwards;
    animation: memo 0.5s 0.8s ease-in-out alternate forwards;
}

.p-regionBtnList01 li:nth-child(6) {
    -webkit-animation: memo 0.5s 1.0s ease-in-out alternate forwards;
    animation: memo 0.5s 1.0s ease-in-out alternate forwards;
}

.p-regionBtnList01 li:nth-child(7) {
    -webkit-animation: memo 0.5s 1.2s ease-in-out alternate forwards;
    animation: memo 0.5s 1.2s ease-in-out alternate forwards;
}

.p-regionBtnList01 li:nth-child(8) {
    -webkit-animation: memo 0.5s 1.4s ease-in-out alternate forwards;
    animation: memo 0.5s 1.4s ease-in-out alternate forwards;
}

@keyframes memo {
    0% {
        opacity: 0;
        -webkit-transform: translate(20px, 0%);
        transform: translate(20px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

@-webkit-keyframes memo {
    0% {
        opacity: 0;
        -webkit-transform: translate(20px, 0%);
        transform: translate(20px, 0%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}


.p-regionBtnList02 {
    margin-bottom: 10px;
    padding: 0 4%;
}

    .p-regionBtnList02 li {
        margin: 0 auto 10px auto;
        width: 48%;
    }

.p-regionCaution {
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
}



.p-target {
    padding: 0 0 40px 0;
}

.p-targetContent {
    padding: 20px 10px 20px 10px;
    box-sizing: border-box;
}

.p-targetHead {
    margin-bottom: 25px;
}

.p-targetHeadTitle {
    font-size: 18px;
    line-height: 1.7;
}

    .p-targetHeadTitle > span {
    }

        .p-targetHeadTitle > span i,
        .p-targetHeadTitle > span svg {
            color: #ff6161;
        }

        .p-targetHeadTitle > span > span {
            font-size: 14px;
            display: inline-block;
            padding-left: 5px;
            text-decoration: underline;
        }

.p-targetFrame {
    margin: 0 auto;
}

.p-targetFrame-small {
    width: 100%;
}

.p-targetFrame-big {
}

.p-targetFrame-small ul {
}

    .p-targetFrame-small ul li {
        float: left;
        width: 31.5%;
        margin-right: 2.75%;
        margin-bottom: 10px;
    }

        .p-targetFrame-small ul li:nth-child(3n) {
            margin-right: 0;
        }

        .p-targetFrame-small ul li:nth-child(3n + 1) {
            clear: both;
        }

.p-targetCheck-input {
    display: none;
}

.p-targetCheck {
    width: 100%;
    display: block;
    background: #fff;
    border: 2px solid #FF6161;
    border-radius: 50px;
    color: #FF6161;
    cursor: pointer;
    padding: 10px;
    position: relative;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


.p-targetCheck-input:checked + .p-targetCheck {
    background-color: #ff6161;
    color: #fff;
}

.p-targetCheckName {
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
}

.p-targetCheckText-num {
    font-size: 25px;
    display: inline-block;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    margin-top: 10px;
}

.p-targetCheckText-unit {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    padding: 0 0 0 0px;
}

.p-targetFrame-big .p-targetCheck {
}

    .p-targetFrame-big .p-targetCheck .p-targetCheckText {
    }

.p-fund {
    padding: 0 0 30px 0;
}

.p-fundContent {
    padding: 20px 15px 20px 15px;
    box-sizing: border-box;
}

.p-fundHead {
    margin-bottom: 15px;
}

.p-fundHeadTitle {
    font-size: 18px;
    line-height: 1.7;
    background-color: #FF6161;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 10px 20px;
}

    .p-fundHeadTitle > span {
    }

        .p-fundHeadTitle > span i,
        .p-fundHeadTitle > span svg {
            color: #ff9c00;
        }

        .p-fundHeadTitle > span > span {
            font-size: 14px;
            display: inline-block;
            padding-left: 5px;
        }


.p-fundResult1 {
    margin-bottom: 20px;
}

.p-fundMeterOuter {
    position: relative;
    width: 250px;
    margin: 0 auto;
}

.p-fundMeter {
    background: url(../images/mater_img01.png) no-repeat center center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    position: relative;
}

.p-fundMeter-link {
    padding: 20px 0 0 0;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 20px;
}

    .p-fundMeter-link > span > span {
        color: #ff9c00;
        font-size: 24px;
        display: inline-block;
        margin-left: 7px;
        vertical-align: middle;
    }

    .p-fundMeter-link .c-balBoxOuter {
        margin: 0;
        width: 120%;
        margin-left: -10%;
    }

    .p-fundMeter-link .c-balBox {
        top: 25px;
    }

    .p-fundMeter-link .c-balBox-link::before {
        top: 32px;
    }

    .p-fundMeter-link .c-balBox-link::after {
        top: 31px;
    }


.p-fundMeterParts {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 30px;
}

    .p-fundMeterParts img {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: 30px;
        -webkit-transform-origin: 15px 70px;
        -ms-transform-origin: 15px 70px;
        transform-origin: 15px 70px;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .p-fundMeterParts.meter_tab01 img {
        -webkit-transform: rotate(-80deg);
        -ms-transform: rotate(-80deg);
        transform: rotate(-80deg);
    }

    .p-fundMeterParts.meter_tab02 img {
        -webkit-transform: rotate(-41deg);
        -ms-transform: rotate(-41deg);
        transform: rotate(-41deg);
    }

    .p-fundMeterParts.meter_tab03 img {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .p-fundMeterParts.meter_tab04 img {
        -webkit-transform: rotate(41deg);
        -ms-transform: rotate(41deg);
        transform: rotate(41deg);
    }

    .p-fundMeterParts.meter_tab05 img {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
    }


.p-fundTypeDetail {
    margin-bottom: 20px;
}

.p-fundTypeDetail-item {
    border: #ff0000 1px solid;
    background: #FFF;
    padding: 25px 0 15px 0;
    display: none;
}

    .p-fundTypeDetail-item.is-first {
        display: block;
    }

.p-fundTypeDetail-title {
    font-size: 22px;
    line-height: 1;
    font-family: 'Anton', sans-serif;
    position: relative;
    margin-bottom: 25px;
    font-weight: normal;
    letter-spacing: 1px;
}

    .p-fundTypeDetail-title:after {
        content: '';
        display: block;
        background: #000;
        width: 60px;
        height: 1px;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -12px;
        position: absolute;
    }

.p-fundTypeDetail-text {
    font-size: 12px;
    line-height: 2;
    text-align: left;
    padding: 0 10px;
}

.p-fundResult1-bottom {
    font-size: 16px;
    line-height: 1.6;
    color: #4D4D4D;
    font-weight: bold;
}

.p-fundRecommend {
}

.p-fundRecommendList {
    margin-bottom: 0px;
}

    .p-fundRecommendList > li {
        width: 280px;
        float: left;
        position: relative;
    }

.p-fundRecommend-cover {
    font-size: 72px;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.slick-track > li {
    padding: 0 5px 30px 5px;
}

    .slick-track > li > div,
    .p-fundRecommendList > li > div {
        position: relative;
    }

        .slick-track > li > div:after,
        .p-fundRecommendList > li > div:after {
            display: block;
            height: 100%;
            content: '';
            width: 100%;
            background: rgba(255,255,255,0.8);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }
/*
.p-fundRecommendList > li + li {
  margin-left: 25px;
} */
.p-fundRecommendFrame {
    padding-bottom: 22px;
    position: relative;
}

.p-fundRecommendHead {
    background: #FBB300;
    display: table;
    width: 100%;
    color: #fff;
}

.p-fundRecommendList > li:nth-child(2) .p-fundRecommendHead {
    background: #80C46E;
}
.p-fundRecommendList > li:nth-child(3) .p-fundRecommendHead {
    background: #6EADD7;
}


.p-fundRecommendHead-tag img {
    width: 20%;
    height: 20%;
}

.p-fundRecommendHead-tag,
.p-fundRecommendHead-category {
    text-align: center;
}

.p-fundRecommendHead-tag {
    font-size: 8px;
    line-height: 1;
    padding: 5px 0 5px 10px;
}

    .p-fundRecommendHead-tag img {
        display: inline;
    }

.p-fundRecommendHead-category {
    font-size: 14px;
    line-height: 1;
    padding: 5px 0px 8px 0;
    font-weight: bold;
}

.p-fundRecommendMs {
    background: #FFF;
    width: 100%;
    color: #313131;
}

.p-fundRecommendMs-tag,
.p-fundRecommendMs-star {
    text-align: center;
    color: #000000;
}

.p-fundRecommendMs-tag {
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    padding: 10px 0 0 0px;
}

.p-fundRecommendMs-star {
    font-size: 16px;
    line-height: 1;
    padding: 5px 10px 6px 0;
    letter-spacing: 1px;
}

    .p-fundRecommendMs-star span {
        color: #0b186d;
    }

.p-fundRecommendName {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    color: #4D4D4D;
    text-decoration: underline;
    background: #FFF;
    padding: 10px 19px 13px 19px;
}

.p-fundRecommendDetail {
    margin: 10px;
    padding: 10px;
    background-color: #F8F8F8;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .p-fundRecommendDetail dl {
        display: table;
        margin: 0 0 0 auto;
        width: 100%;
    }

    .p-fundRecommendDetail dt,
    .p-fundRecommendDetail dd {
        display: table-cell;
        vertical-align: baseline;
        font-weight: bold;
    }

    .p-fundRecommendDetail dt {
        font-size: 12px;
        width: 40%;
        text-align: left;
    }

    .p-fundRecommendDetail dd {
        font-size: 12px;
        padding: 0 13px 0 10px;
        width: 60%;
        text-align: right;
    }

.p-fundRecommendBtn {
    margin: 0 15px;
    box-sizing: border-box;
}

    .p-fundRecommendBtn li {
    }

        .p-fundRecommendBtn li + li {
            margin-top: 6px;
        }


.slick-track > li > div:hover .p-fundRecommend-cover,
.slick-track > li > div:hover:after,
.p-fundRecommendList > li > div:hover .p-fundRecommend-cover,
.p-fundRecommendList > li > div:hover:after {
    opacity: 0.6;
}

.is-active .p-fundRecommend-cover,
.slick-track > li > div.is-active:after,
.p-fundRecommendList > li > div.is-active:after {
    display: none;
}


.p-fundCase {
    background: #FFF;
}

.p-fundCaseHeadTitle {
    font-size: 16px;
    line-height: 1.5;
    background: #FF6161;
    border-radius: 10px;
    padding: 9px 0 10px 0;
    margin-bottom: 27px;
    color: #fff;
}

.p-fundCaseinner {
    margin: 0 10px;
}

.p-fundCase-box {
    margin-bottom: 20px;
}

.p-fundCase-boxGray {
    background: #eeeeee;
}

.p-fundCase-merit,
.p-fundCase-demerit {
    display: table;
}

.p-fundCase-meritGraph,
.p-fundCase-meritText,
.p-fundCase-demeritGraph,
.p-fundCase-demeritText {
    display: table-cell;
    vertical-align: middle;
}

.p-fundCase-meritGraph,
.p-fundCase-demeritGraph {
    width: 80px;
}

    .p-fundCase-meritGraph text,
    .p-fundCase-demeritGraph text {
        color: #000;
        fill: #000;
        font-size: 24px !important;
    }

    .p-fundCase-meritGraph .timer,
    .p-fundCase-demeritGraph .timer {
        display: none;
    }

    .p-fundCase-meritGraph .circle {
        stroke: #ff9c00;
    }

    .p-fundCase-meritGraph .border {
        stroke: #FFF;
    }

    .p-fundCase-demeritGraph .circle {
        stroke: #ff0000;
    }

    .p-fundCase-demeritGraph .border {
        stroke: #FFF;
    }

.p-fundCase-meritText,
.p-fundCase-demeritText {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    padding-right: 15px;
    font-weight: bold;
}

.p-fundCaseMiddleTitle {
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    position: relative;
    border-bottom: #ff2222 1px solid;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

    .p-fundCaseMiddleTitle svg {
        font-size: 16px;
        line-height: 1.5;
        vertical-align: bottom;
        margin-right: 4px;
        color: #ff2222;
    }

    .p-fundCaseMiddleTitle span {
        font-size: 14px;
        line-height: 19px;
        position: absolute;
        right: 0;
        bottom: -28px;
        font-weight: normal;
        font-weight: bold;
    }

        .p-fundCaseMiddleTitle span svg {
            font-size: 14px;
            line-height: 19px;
            vertical-align: middle;
            margin-right: 4px;
        }

        .p-fundCaseMiddleTitle span a {
            text-decoration: underline;
        }

.p-fundCaseinner .p-fundCase-box:nth-child(3) .p-fundCaseMiddleTitle {
    margin-bottom: 35px;
}

.p-fundCase-caution {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    margin-top: 15px;
}

    .p-fundCase-caution p {
        text-indent: -1em;
        padding-left: 1em;
        font-weight: bold;
    }

        .p-fundCase-caution p a {
            color: #e60012;
            text-decoration: underline;
        }

        .p-fundCase-caution p svg {
            color: #e60012;
            font-size: 10px;
        }

.p-fundCaseBottom-btnWrap {
    margin-top: 20px;
    padding: 20px 0 0 0;
    background-color: #fff;
    border-radius: 10px;
}

.p-fundCaseBottom-btnList {
    text-align: center;
}

    .p-fundCaseBottom-btnList li {
        display: inline-block;
        width: 48.5%;
        margin-bottom: 10px;
        margin-left: 10px;
    }
/*
        .p-fundCaseBottom-btnList li:nth-child(2n) {
            margin-left: 3%;
        }
*/
.p-fundCaseBottom-btnList2 {
    text-align: center;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    display: flow-root;
}

    .p-fundCaseBottom-btnList2 li {
        display: inline-block;
        width: 260px;
        margin: 0 19px 10px 27px;
        width: 50%;
    }

    .p-fundCaseBottom-btnList2 .c-btn-orange {
        background: #FBB300;
        border-radius: 100px;
        font-size: 16px;
    }

.p-fundCaseBottom-btnList3 {
    text-align: center;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    display: flow-root;
}

    .p-fundCaseBottom-btnList3 li {
        display: inline-block;
        width: 260px;
        margin: 0 19px 0 27px;
        width: 50%;
    }

    .p-fundCaseBottom-btnList3 .c-btn2 {
        background: #80C46E;
        border-radius: 100px;
        font-size: 16px;
    }

.p-fundCaseBottom-btnList4 {
    text-align: center;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
    margin-bottom: 30px;
    background-color: #ffffff;
    display: flow-root;
}

    .p-fundCaseBottom-btnList4 li {
        display: inline-block;
        width: 260px;
        margin: 0 19px 0 27px;
        width: 50%;
    }

    .p-fundCaseBottom-btnList4 .c-btn2 {
        background: #6EADD7;
        border-radius: 100px;
        font-size: 16px;
    }

.p-modalmail {
    background: #FFF;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 25px 10px;
}

.p-modalmail-headTitle {
    font-size: 18px;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
}

    .p-modalmail-headTitle span {
    }

.p-modalmail-headLineTitle {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

.p-modalmail-middleTitle {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.p-modalmail-text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 40px;
    font-weight: bold;
}

.p-modalmail-btn {
    text-align: center;
    margin: 0 auto;
}

    .p-modalmail-btn .c-btn {
        margin: 0 auto;
        width: 48%;
    }

.p-modalmail-btnCaution {
    font-size: 14px;
    line-height: 22px;
    padding: 25px 0 10px 0;
    font-weight: bold;
}





.p-constellationOuter {
    margin: 40px 10px 40px 10px;
    background: #FFF;
    position: relative;
}

.p-constellation {
    padding: 25px 20px;
    text-align: center;
}

.p-constellation-title {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.p-constellation-intro {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    text-align: left;
    margin-bottom: 30px;
}

.p-constellationList {
    padding: 0 10px;
}

    .p-constellationList li {
        width: 30%;
        margin-right: 5%;
        float: left;
        margin-bottom: 20px;
    }

        .p-constellationList li:nth-child(3n) {
            margin-right: 0;
        }

        .p-constellationList li:nth-child(3n + 1) {
            clear: both;
        }

.p-constellation-input {
    display: none;
}

.p-constellationBtn {
    font-size: 14px;
    line-height: 1.4;
    font-weight: bold;
    cursor: pointer;
}

    .p-constellationBtn img {
        margin-bottom: 20px;
    }

.p-constellation-bottom {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    padding-top: 10px;
    margin-bottom: 30px;
    text-align: left;
}

button.mfp-close {
    top: -30px;
    right: 0px;
    background: #FFF;
    padding: 0;
    touch-action: manipulation;
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    border: #000 1px solid;
    position: absolute;
    margin: auto;
    text-indent: -9999px;
    opacity: 1;
}

    button.mfp-close:before,
    button.mfp-close:after {
        content: '';
        display: block;
        background: #000;
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
    }

    button.mfp-close:before {
        width: 29px;
        height: 1px;
        left: -5px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    button.mfp-close:after {
        width: 1px;
        height: 29px;
        left: 9px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    button.mfp-close:active {
        top: -30px;
    }

.popup-modal-dismiss {
    width: 60%;
    margin: 0 auto;
}

    .popup-modal-dismiss .c-btn {
        margin: 0 auto;
    }

.p-resultStyleTextOuter {
    display: none;
}

    .p-resultStyleTextOuter.is-active {
        display: block;
    }

.p-resultStyleText {
    text-align: center;
    position: relative;
    font-size: 16px;
    line-height: 30px;
    margin: 10px 0;
}

.p-resultStyleType {
    margin-bottom: 30px;
}

    .p-resultStyleType p {
        display: inline-block;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
        color: #ff6161;
        width: 188px;
    }

.p-resultStyleList {
    margin-bottom: 20px;
}

    .p-resultStyleList li {
        width: 29%;
        display: inline-block;
        margin: 0 2.1% 15px 2.1%;
    }

        .p-resultStyleList li:nth-child(5n) {
            margin-right: 0;
        }

.p-resultStyleList-inner {
    position: relative;
    background-color: #f8f8f8;
    padding: 15px 10px;
    border-radius: 10px;
    border: 3px solid #f8f8f8;
}

.p-resultStyleList-inner img {
    width: 70%;
    height: 70%;
}

    .p-resultStyleList-inner p {
        width: 100%;
        margin-top: 10px;
        font-weight: bold;
        font-size: 12px;
        line-height: 1;
        bottom: 14px;
        left: 0;
        box-sizing: border-box;
        color: #4D4D4D;
    }

        .p-resultStyleList-inner p span {
            display: block;
        }

        .is-active .p-resultStyleList-inner,
        .p-resultStyleList-inner:hover {
            position: relative;
            background-color: #FFF7F2;
            padding: 15px 10px;
            border-radius: 10px;
            border: 3px solid #FF6161;
        }
    
        .p-resultStyleList-inner:hover p,
        .is-active .p-resultStyleList-inner:hover p {
            color: #FF6161;
        }
    
        .is-active .p-resultStyleList-inner img.active-image,
        .p-resultStyleList-inner:hover img.active-image {
            display: inline;
        }
        .is-active .p-resultStyleList-inner img.normal-image,
        .p-resultStyleList-inner:hover img.normal-image {
            display: none;
        }
        .p-resultStyleList-inner img.active-image {
            display: none;
        }
        .p-resultStyleList-inner img.normal-image {
            display: inline;
        }



#mail {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}


.mfp-iframe-scaler {
    padding-top: 100%;
}

    .mfp-iframe-scaler .mfp-close {
        width: 21px !important;
        right: 0 !important;
        text-indent: -9999px;
        text-align: left;
    }

.p-zenkaiCaution {
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    padding-top: 30px;
    font-weight: bold;
}

.p-questionGraph {
    margin-bottom: 15px;
}



.st-headTitle {
    font-size: 23px;
    line-height: 1.5;
    font-weight: normal;
    color: #000;
    margin-bottom: 50px;
    position: relative;
}

    .st-headTitle:before {
        content: '';
        display: block;
        width: 58px;
        margin: auto;
        left: 0;
        right: 0;
        bottom: -25px;
        background: #FF0000;
        height: 1px;
        position: absolute;
    }

.st-inner {
    background: #FFF;
}

.p-FResult {
    padding: 20px 15px 20px 15px;
    box-sizing: border-box;
}

.p-FRHeadTitle {
    background: #FF6161;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #fff;
    border-radius: 10px;
    position: relative;
}

    .p-FRHeadTitle span {
        display: inline-block;
        padding: 5px 0 4px 0;
    }



.p-FR_graphComparison {
    margin-bottom: 20px;
    position: relative;
}

.p-FR_graphComp-item {
    width: 47%;
    box-sizing: border-box;
    background: #F4F4F4;
    padding: 0 10px 15px;
}

.p-FR_graphComp-item1 {
    float: left;
}

.p-FR_graphComp-item2 {
    float: right;
}

.p-FR_graphComp-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 7px;
    padding: 10px 0 8px 0;
    border-bottom: 2px solid #4D4D4D;
}

    .p-FR_graphComp-title.is-def {
        margin-bottom: 46px;
    }

.p-FR_graphComp-subTitle {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.p-FR_graphComp-graph {
    position: relative;
    margin: 0 auto 10px auto;
}

.p-FR_graphComp-graphLink {
    position: absolute;
    top: 10px;
    right: 10px;
}

    .p-FR_graphComp-graphLink a {
        font-size: 11px;
        font-weight: bold;
        cursor: pointer;
        background: #4D4D4D;
        border-radius: 5px;
        padding: 2px 5px 1px;
        color: #fff;
    }

        .p-FR_graphComp-graphLink a i {
            font-size: 12px;
            line-height: 21px;
            color: #FFF;
            margin-right: 5px;
        }

.p-FR_graphComp-changeBtn {
    margin: 0 10px;
}

    .p-FR_graphComp-changeBtn a {
        width: 100%;
        margin: 0 auto;
        display: block;
        font-size: 13px;
        line-height: 1.4;
        font-weight: bold;
        color: #FFF;
        position: relative;
        background: #959595;
        border-radius: 5px;
        padding: 6px 0 5px 0px;
        text-align: center;
        box-sizing: border-box;
    }

        .p-FR_graphComp-changeBtn a:before,
        .p-FR_graphComp-changeBtn a:after {
            position: absolute;
            bottom: 7px;
            right: 5px;
            margin: auto;
            content: '';
            vertical-align: middle;
        }

        .p-FR_graphComp-changeBtn a::before {
            width: 11px;
            height: 11px;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            background: #FFF;
        }

        .p-FR_graphComp-changeBtn a::after {
            width: 3px;
            height: 3px;
            bottom: 10px;
            right: 8px;
            border-top: 1px solid #959595;
            border-right: 1px solid #959595;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

.p-FR_graphComp-per {
    margin: 15px auto 0 auto;
    box-sizing: border-box;
    border: #ff0000 2px solid;
    border-radius: 5px;
    background: #FFF;
}

.p-FR_graphComp-perInner {
    padding: 13px 0 5px 0;
}

.p-FR_graphComp-perTitle {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 3px;
    display: inline-block;
    padding-left: 30px;
}

.p-FR_graphComp-perLink {
    margin-bottom: 8px;
    display: inline-block;
    vertical-align: top;
}

    .p-FR_graphComp-perLink i {
        color: #ff9c00;
        font-size: 14px;
        line-height: 1;
        vertical-align: middle;
    }

    .p-FR_graphComp-perLink span {
        font-size: 12px;
        line-height: 1;
        font-weight: bold;
        display: inline-block;
        padding: 0 0 0 5px;
    }

.p-FR_graphComp-perNum {
    text-align: center;
}

    .p-FR_graphComp-perNum p {
        display: inline-block;
        font-size: 30px;
        line-height: 30px;
        font-weight: bold;
    }

        .p-FR_graphComp-perNum p span {
            font-size: 12px;
        }

    .p-FR_graphComp-perNum.is-umbrella:before {
        content: "\f0e9";
        font: normal normal normal 48px/1 FontAwesome;
        display: inline-block;
        padding: 0 5px 0 0;
        color: #0066ff;
    }

@media screen and (max-width:970px) {
    .p-FR_graphComp-per {
        height: auto;
    }
}

.p-FR_graphComp-description {
    margin-bottom: 20px;
}

.p-FR_graphComp-descriptionList {
}

    .p-FR_graphComp-descriptionList li {
        display: inline-block;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
        padding: 0 0 0 18px;
        position: relative;
        margin-left: 5px;
        margin-bottom: 8px;
    }

        .p-FR_graphComp-descriptionList li span {
            content: '';
            width: 15px;
            height: 15px;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto;
        }
        /*
.p-FR_graphComp-des01:before {
  background: #e94d7c;
}
.p-FR_graphComp-des02:before {
  background: #3e8be7;
}
.p-FR_graphComp-des03:before {
  background: #f7bf4a;
}
.p-FR_graphComp-des04:before {
  background: #9354db;
}
.p-FR_graphComp-des05:before {
  background: #f27921;
}
.p-FR_graphComp-des06:before {
  background: #639d3d;
}
*/
        .p-FR_graphComp-descriptionList li:nth-child(3n + 1) {
            margin-left: 0px;
        }

.p-FR_graphComp-desCaution {
    font-size: 14px;
    line-height: 2;
    text-align: left;
    font-weight: bold;
    margin-bottom: 30px;
}

.p-FR_possession {
}

.p-FR_posHead {
    position: relative;
    margin-bottom: 15px;
}

.p-FR_posHeadTitle {
    position: relative;
    font-size: 18px;
    line-height: 1.4;
    padding: 7px 10px 7px;
    text-align: center;
    background: #FF6161;
    color: #fff;
    border-radius: 10px;
}

.p-FR_posHead-link {
    display: inline-block;
    position: absolute;
    top: 55px;
    bottom: 0;
    margin: auto;
    right: 10px;
    height: 27px;
}

    .p-FR_posHead-link i {
        color: #ff6161;
        font-size: 20px;
        line-height: 1;
        vertical-align: middle;
    }

    .p-FR_posHead-link span {
        font-size: 10px;
        line-height: 1;
        font-weight: bold;
        display: inline-block;
        padding: 0 0 0 5px;
        vertical-align: middle;
        color: #4D4D4D;
    }

.p-FR_posIntro {
    margin: 30px 0;
}

.p-FR_posIntro-text,
.p-FR_posIntro-btn {
}

.p-FR_posIntro-text {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 20px;
}

.p-FR_posIntro-btn {
    text-align: center;
}

    .p-FR_posIntro-btn a {
        font-size: 16px;
        line-height: 1.4;
        color: #FFF;
        font-weight: bold;
        text-align: center;
        width: 100%;
        display: inline-block;
        padding: 15px 0;
        background: #959595;
        border-radius: 25px;
    }

    .p-FR_posIntro-btn span {
        display: inline-block;
        width: 100%;
        max-width: 226px;
        position: relative;
    }

.p-FR_posArea {
    border: #000 1px solid;
    background: #FFF;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 30px;
    padding: 30px 20px;
}

.p-FR_posArea-addBtn {
    padding: 0 0 0 40px;
    display: block;
    background: #ff0000;
    max-width: 306px;
    height: 50px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    border-radius: 25px;
    position: relative;
}

    .p-FR_posArea-addBtn span {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        color: #FFF;
        text-align: left;
        border-left: #FFF 2px solid;
        display: block;
        padding: 0 0 0 15px;
        font-weight: bold;
    }

    .p-FR_posArea-addBtn:before {
        content: "\f040";
        font: normal normal normal 14px/1 FontAwesome;
        position: absolute;
        line-height: 50px;
        font-size: 22px;
        top: 0;
        margin: auto;
        bottom: 0;
        left: 14px;
        color: #FFF;
    }

.p-FR_posCaution {
    margin-bottom: 30px;
}

.p-FR_posCaution-title {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    border-bottom: #000 1px solid;
    margin-bottom: 13px;
    padding-bottom: 9px;
}

    .p-FR_posCaution-title span {
        font-size: 14px;
    }

.p-FR_posCaution-text {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    font-weight: bold;
}

.p-FR_posBtnArea {
    margin-top: 15px;
}

.p-FR_posBtnAreaList {
    text-align: center;
}

    .p-FR_posBtnAreaList li {
        display: block;
        vertical-align: top;
        margin: 0 0px;
        float: left;
        width: 48%;
    }

        .p-FR_posBtnAreaList li:nth-child(2n) {
            float: right;
        }

.p-FR_posBtnArea .c-btn {
    width: 100%;
    padding: 20px 0 19px 0;
}

    .p-FR_posBtnArea .c-btn.is-two {
        padding: 12px 0;
    }




.p-FR_posTableOuter {
    margin-bottom: 20px;
    overflow-x: scroll;
}

.p-FR_posTableInner {
    width: 650px;
}

.p-FR_posTable {
    width: 100%;
    border-top: #000 1px solid;
    border-left: #000 1px solid;
}

    .p-FR_posTable th,
    .p-FR_posTable td {
        border-bottom: #000 1px solid;
        border-right: #000 1px solid;
        vertical-align: middle;
        box-sizing: border-box;
    }

    .p-FR_posTable th {
        background: #fce7e7;
        font-size: 14px;
        line-height: 1.4;
        padding: 13px 0;
    }

.p-FR_posTable-delate {
    width: 45px;
}

.p-FR_posTable-fundName {
    width: 160px;
}

.p-FR_posTable-category {
    width: 80px;
}

.p-FR_posTable-cost {
    width: 60px;
}

.p-FR_posTable-achievement {
    width: 60px;
}

.p-FR_posTable-popularity {
    width: 60px;
}

.p-FR_posTable-rating {
    width: 60px;
}

.p-FR_posTable-possession {
    width: 60px;
}

.p-FR_posTable-arrow1,
.p-FR_posTable-arrow2 {
    font-size: 10px;
    line-height: 10px;
}

.p-FR_posTable-arrow2 {
    margin-top: 2px;
}

    .p-FR_posTable-arrow1 .is-noActive,
    .p-FR_posTable-arrow2 .is-noActive {
        pointer-events: none;
        color: #7E7E7E;
    }

.p-FR_posTable td {
    padding: 13px 5px;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
    background: #FFF;
    box-sizing: border-box;
}

.p-FR_posTable-iconDelate {
    background: #4D4D4D;
    display: inline-block;
    border-radius: 5px;
    color: #FFF;
    position: relative;
    margin-bottom: 5px;
}

    .p-FR_posTable-iconDelate a {
        color: #FFF !important;
        padding: 3px 5px 1px 5px;
    }

.p-FR_posTable-categoryIcon {
    position: relative;
}

.p-FR_posTable-iconHandling {
    background: #ff6161;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    color: #FFF;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1;
}

.p-FR_posTable-iconChange {
    background: #959595;
    display: block;
    padding: 3px 3px;
    border-radius: 3px;
    color: #FFF;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1;
}

.p-FR_posTable tbody tr:nth-child(2n + 1) td {
    background: #F4F4F4;
}
.p-FR_posTable tbody tr td:nth-child(7) {
    color: #0b186d;
}


.p-FR_possession .p-FR_posTable-fundName {
    width: 160px;
}


.p-FR_details {
    background: #FFF;
    margin-bottom: 20px;
}

.p-FR_details-item {
}

    .p-FR_details-item + .p-FR_details-item {
        margin-top: 25px;
    }

.p-FR_details-title {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    border-left: #ff6161 5px solid;
    padding: 2px 0 0 9px;
    margin-bottom: 14px;
}

    .p-FR_details-title span {
        color: #FF0000;
    }

.p-FR_details-list {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    font-weight: bold;
    background: #eeeeee;
    padding: 15px 15px;
}

    .p-FR_details-list li {
        text-indent: -1em;
        padding-left: 1em;
    }

        .p-FR_details-list li + li {
            margin-top: 8px;
        }

        .p-FR_details-list li a {
            color: #FF0000;
        }

.p-FR_details-text {
    font-size: 22px;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    margin-top: 25px;
}

.p-FR_detailsChart {
    margin: 0 auto;
    display: table;
}

.p-FR_detailsChart-item {
    display: table-cell;
    vertical-align: top;
    width: 47%;
}

.p-FR_detailsChart-arrow {
    display: table-cell;
    vertical-align: top;
    padding-top: 160px;
    text-align: center;
    position: relative;
}

    .p-FR_detailsChart-arrow img {
        position: absolute;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        width: 30px;
        max-width: none;
    }

.p-FR_detailsChart-title {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 42px;
}

    .p-FR_detailsChart-title span {
        display: block;
        padding: 7px 15px 7px 15px;
        background: #d2d2d2;
    }

.p-FR_detailsChart-item.is-after .p-FR_detailsChart-title span {
    background: #ff0000;
    color: #FFF;
    letter-spacing: -1px;
}

.p-FR_detailsChart-chart {
    position: relative;
    margin: 0 10px 15px 10px;
}

.p-FR_detailsChart-chartLink {
    position: absolute;
    top: 15px;
    right: 5px;
}

    .p-FR_detailsChart-chartLink a {
        font-size: 11px;
        font-weight: bold;
        cursor: pointer;
        background: #4D4D4D;
        border-radius: 5px;
        padding: 2px 5px 1px;
        color: #fff;
    }

        .p-FR_detailsChart-chartLink a i {
            font-size: 10px;
            line-height: 16px;
            height: 16px;
            width: 16px;
            border-radius: 50%;
            color: #FFF;
            margin: 0 auto;
        }

.p-FR_detailsChart-match {
    margin: 0 auto 20px auto;
    border-radius: 5px;
    border: #d2d2d2 2px solid;
    background: #FFF;
    box-sizing: border-box;
    padding: 10px 5px 5px 5px;
}

.p-FR_detailsChart-matchTitle {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.p-FR_detailsChart-matchText {
    font-size: 36px;
    line-height: 36px;
    font-weight: bold;
}

    .p-FR_detailsChart-matchText.is-sunshine:before {
        content: "\f185";
        font: normal normal normal 36px/1 FontAwesome;
        display: inline-block;
        padding: 0 5px 0 0;
        color: #f27921;
    }

    .p-FR_detailsChart-matchText.is-umbrella:before {
        content: "\f0e9";
        font: normal normal normal 36px/1 FontAwesome;
        display: inline-block;
        padding: 0 5px 0 0;
        color: #0066ff;
    }

    .p-FR_detailsChart-matchText.is-cloud:before {
        content: "\f0c2";
        font: normal normal normal 36px/1 FontAwesome;
        display: inline-block;
        padding: 0 5px 0 0;
        color: #959595;
    }

    .p-FR_detailsChart-matchText span {
        font-size: 18px;
    }

.p-FR_detailsChartCaution {
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 30px;
}

.p-FR_trading {
    padding: 0 0px;
    margin: 0 0px;
}

.p-FR_tradingTab {
}

.p-FR_tradingTabList {
}

    .p-FR_tradingTabList li {
        background: #f8f8f8;
        position: relative;
        z-index: 10;
        padding: 10px;
    }

        .p-FR_tradingTabList li.is-active {
            z-index: 20;
            background: #ffffff;
        }

.p-FR_tradingTab-inner {
    position: relative;
    padding-left: 20px;
}

.p-FR_tradingTab-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 42px;
    background: #ff6161;
    border-radius: 5px;
}

.p-FR_tradingTabList li:nth-child(2) .p-FR_tradingTab-inner:before {
    background: #6EADD7;
}

.p-FR_tradingTab-head {
    position: relative;
    margin-bottom: 6px;
}

.p-FR_tradingTab-headTitle {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
}

.p-FR_tradingTab-text {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
}

.p-FR_tradingTab-headTitle-link {
    display: inline-block;
    position: absolute;
    top: 0px;
    margin: auto;
    right: 0px;
    height: 30px;
}

    .p-FR_tradingTab-headTitle-link i {
        color: #ff9c00;
        font-size: 20px;
        line-height: 1;
        vertical-align: middle;
    }

    .p-FR_tradingTab-headTitle-link span {
        font-size: 13px;
        line-height: 1;
        font-weight: bold;
        display: inline-block;
        padding: 0 0 0 5px;
        vertical-align: middle;
    }

.p-FR_tradingTabList li:nth-child(2) .p-FR_tradingTab-headTitle:before {
    color: #0066ff;
}

.p-FR_tradingTabList li:nth-child(2) .p-FR_tradingTab-head:after {
    border: #0066ff 1px solid;
}
/* .p-FR_tradingTabList li.is-active:after {
  position: absolute;
  height: 20px;
  background: #FFf;
  content: '';
  width: 100%;
  bottom: -15px;
  left: 0;
} */

.p-FR_tradingWrap {
    background: #FFF;
    padding: 12px 15px;
    position: relative;
    z-index: 15;
}

.p-FR_tradingContents {
}

.p-FR_tradingContents-text {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    font-weight: bold;
}

.p-FR_tradingContents-text2 {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    font-weight: bold;
    margin-top: 25px;
}

.p-FR_trading-displayBtn {
    text-align: left;
    margin-bottom: 14px;
    margin-top: 10px;
}

    .p-FR_trading-displayBtn li {
        position: relative;
    }

        .p-FR_trading-displayBtn li + li {
            margin-top: 2px;
        }

        .p-FR_trading-displayBtn li input {
            display: none;
        }

        .p-FR_trading-displayBtn li label {
            display: inline-block;
            padding: 0 0 0 27px;
            font-size: 14px;
            line-height: 1;
            font-weight: bold;
        }

            .p-FR_trading-displayBtn li label:before,
            .p-FR_trading-displayBtn li label:after {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                margin: auto;
            }

            .p-FR_trading-displayBtn li label:before {
                width: 20px;
                height: 20px;
                border-radius: 50px;
                background: #dcdcdc;
                left: 0;
            }

            .p-FR_trading-displayBtn li label:after {
                width: 14px;
                height: 14px;
                background: #dcdcdc;
                border-radius: 50%;
                left: 3px;
            }

            #trading1 .p-FR_trading-displayBtn li input:checked + label:after {
                background: #ff6161;
            }
            #trading2 .p-FR_trading-displayBtn li input:checked + label:after {
                background: #6EADD7;
            }

.p-FR_tradingWrap .p-FR_posTableInner {
    width: 720px;
}

.p-FR_trading .p-FR_posTable-fundName {
    width: 160px;
}

.p-fundCaseBottom-btnWrap.p-FR_tradingBottomBtn {
    margin: 0 0px;
}

    .p-fundCaseBottom-btnWrap.p-FR_tradingBottomBtn .p-fundCaseBottom-btnList {
        max-width: none;
    }

    .p-fundCaseBottom-btnWrap.p-FR_tradingBottomBtn li {
        width: 48%;
    }

       

        .p-fundCaseBottom-btnWrap.p-FR_tradingBottomBtn li .c-btn {
            width: 100%;
        }


.p-FRebalanceConfig {
}

.p-FRebalanceConfig-title {
    font-size: 18px;
    line-height: 1.4;
    padding: 4px 0 0 0;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
    color: #ff6161;
    border-bottom: 2px solid #ff6161;
}

.p-FRebalanceConfig-question {
    margin-bottom: 20px;
}

.p-FRebalanceConfig-questionTitle {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
}

.p-FRebalanceConfig-questionText {
    font-size: 13px;
    line-height: 24px;
    font-weight: bold;
}

.p-FRebalanceConfig-questionTitle + .p-FRebalanceConfig-questionText {
    margin-top: 10px;
}

.p-FRebalanceConfig-answer {
}

.p-FRebalanceConfig-inputArea {
    text-align: center;
}

    .p-FRebalanceConfig-inputArea input {
        width: 200px;
        box-sizing: border-box;
        border: none;
        height: 40px;
        text-align: right;
        padding: 0 10px;
        font-size: 30px;
        vertical-align: bottom;
        color: #4D4D4D;
        background: #F4F4F4;
        border-radius: 10px;
    }

        .p-FRebalanceConfig-inputArea input::-webkit-input-placeholder {
            color: #000;
        }

        .p-FRebalanceConfig-inputArea input:-ms-input-placeholder {
            color: #000;
        }

        .p-FRebalanceConfig-inputArea input::-moz-placeholder {
            color: #000;
        }

    .p-FRebalanceConfig-inputArea span {
        display: inline-block;
        font-size: 24px;
        line-height: 1;
        font-weight: bold;
        margin-left: 8px;
    }

.p-FRebalanceConfig-answer + .p-FRebalanceConfig-title {
    margin-top: 25px;
}


.p-FRebalanceConfig-answer {
}

.p-FRebalanceConfig-answerBtnList {
}

    .p-FRebalanceConfig-answerBtnList li {
        display: inline-block;
        width: 46%;
        margin: 0 0 0 0%;/*0 0 0 8%*/
    }

        .p-FRebalanceConfig-answerBtnList li:nth-child(2n+1) {
            margin: 0 0 0 0;
        }

        .p-FRebalanceConfig-answerBtnList li:nth-child(n+3) {
        }

.p-FRebalanceConfig-answerBtnInput {
    display: none;
}

.p-FRebalanceConfig-answerBtn {
    display: table;
    background: #fff;
    border: 3px solid #ff6161;
    width: 100%;
    position: relative;
    border-radius: 100px;
    color: #ff6161;
    cursor: pointer;
    box-sizing: border-box;
}

    .p-FRebalanceConfig-answerBtn span {
        display: table-cell;
        height: 60px;
        vertical-align: middle;
        font-size: 18px;
        line-height: 24px;
        font-weight: bold;
    }

    .p-FRebalanceConfig-answerBtn.is-textSmall span {
        font-size: 16px;
        line-height: 26px;
    }

.p-FRebalanceConfig-answerBtnInput:checked + .p-FRebalanceConfig-answerBtn {
    background: #ff6161;
    color: #fff;
}

.p-FRebalanceConfig-answerBtnList.p-FRebalanceConfig-answerBtnList-4 {
}

    .p-FRebalanceConfig-answerBtnList.p-FRebalanceConfig-answerBtnList-4 li {
        width: 22.4%;
        margin: 0 0 0 3.46%;
    }

        .p-FRebalanceConfig-answerBtnList.p-FRebalanceConfig-answerBtnList-4 li:nth-child(4n +1) {
            margin-left: 0;
        }

        .p-FRebalanceConfig-answerBtnList.p-FRebalanceConfig-answerBtnList-4 li:nth-child(n + 5 ) {
            margin-top: 20px;
        }

.p-FRebalanceConfig-point {
    margin-top: 20px;
    border: #a0a0a0 1px solid;
    padding: 15px 15px 10px 15px;
    background: #FFF;
}

.p-FRebalanceConfig-pointTitle {
    color: #ff0000;
    font-size: 18px;
    line-height: 1.4;
    position: relative;
    padding: 0 0 0 18px;
    text-align: left;
    margin-bottom: 5px;
}

    .p-FRebalanceConfig-pointTitle:before {
        content: '';
        background: url(../images/icon-light.png) no-repeat center center;
        background-size: auto 20px;
        width: 19px;
        height: 20px;
        display: block;
        position: absolute;
        top: 0px;
        left: -4px;
    }

.p-FRebalanceConfig-pointText {
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}

.p-FRebalanceBtnArea {
    margin-top: 30px;
}

.p-FRebalanceBtnAreaList {
    display: flex;
}

    .p-FRebalanceBtnAreaList li {
        display: inline-block;
        vertical-align: top;
        width: 48%;
    }

        .p-FRebalanceBtnAreaList li + li {
            margin-left: 4%;
        }

        .p-FRebalanceBtnAreaList li .c-btn {
            width: 100%;
        }


#style_chanbe {
    position: relative;
    margin: 50px auto;
}

.p-modalChangeStyle {
    background: #FFF;
    padding: 30px 15px;
    text-align: center;
}

.p-modalChangeStyle-headTitle {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
}

.p-modalChangeStyle-intro {
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.p-modalChangeStyle-detail {
    text-align: center;
    border: #FF0000 1px solid;
    padding: 15px 10px 10px 10px;
    margin-bottom: 28px;
}

.p-modalChangeStyle-detailType {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 10px;
}

.p-modalChangeStyle-detailText {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    text-align: left;
}

.p-modalChangeStyle-chartList {
    text-align: center;
    margin-bottom: 35px;
}

    .p-modalChangeStyle-chartList > li {
        width: 48%;
        box-sizing: border-box;
        border: #c9c9c9 1px solid;
        list-style: none;
        display: inline-block;
        margin-left: 4%;
    }

        .p-modalChangeStyle-chartList > li:nth-child(2n+1) {
            margin-left: 0;
        }

        .p-modalChangeStyle-chartList > li:nth-child(n + 3) {
            margin-top: 10px;
        }

        .p-modalChangeStyle-chartList > li input {
            display: none;
        }

        .p-modalChangeStyle-chartList > li label {
            display: block;
            padding: 10px 6% 15px 6%;
            position: relative;
        }
/*.p-modalChangeStyle-chartList > li label:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: #FF0000 3px solid;
  box-sizing: border-box;
  position: absolute;
  top:0;
  left: 0;
  opacity: 0;
 	-webkit-transition: all 0.5s ease-out; 
	-moz-transition: all 0.5s ease-out; 
	-o-transition: all 0.5s ease-out; 
	transition: all 0.5s ease-out;   
}
.p-modalChangeStyle-chartList > li label:hover:before ,
.p-modalChangeStyle-chartList > li input:checked +label:before {
  opacity: 1;
} */
.p-modalChangeStyle-chartList-title {
    margin-bottom: 30px;
    display: block;
    background: #e5e5e5;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    padding: 7px 0 5px 0;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.p-modalChangeStyle-chartList > li label:hover .p-modalChangeStyle-chartList-title,
.p-modalChangeStyle-chartList > li input:checked + label .p-modalChangeStyle-chartList-title {
    background: #FF0000;
    color: #FFF;
}

.p-modalChangeStyle-chartList-graph {
    position: relative;
    max-width: 247px;
    margin: 0 auto;
}

.p-modalChangeStyle-chartList-graphLink {
    position: absolute;
    top: -20px;
    right: 0;
}

    .p-modalChangeStyle-chartList-graphLink a {
        font-size: 11px;
        font-weight: bold;
        cursor: pointer;
        line-height: 13px;
    }

        .p-modalChangeStyle-chartList-graphLink a i {
            font-size: 8px;
            line-height: 13px;
            height: 13px;
            width: 13px;
            border-radius: 50%;
            background: #ff0000;
            color: #FFF;
            display: block;
            margin: 0 auto;
        }

.p-modalChangeStyle-caution {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    text-align: left;
    margin: 20px 0 25px 0;
}

.p-modalChangeStyle .p-FR_graphComp-descriptionList {
    padding: 0 20px;
}

.p-modalChangeStyle .p-FR_posBtnAreaList li {
    float: none;
    margin: 0 auto;
}

    .p-modalChangeStyle .p-FR_posBtnAreaList li + li {
        margin-top: 10px;
    }


#style_fundinput {
    margin: 50px auto;
    position: relative;
}

.p-modalFundInput {
    background: #FFF;
    padding: 25px 15px 30px 15px;
    text-align: center;
}

.p-modalFundInput-headTitle {
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.p-modalFundInput-headLineTitle {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: #FF0000 1px solid;
    padding-bottom: 10px;
}

    .p-modalFundInput-headLineTitle span {
        display: inline-block;
    }

        .p-modalFundInput-headLineTitle span:before {
            content: "\f002";
            font: normal normal normal 16px/1 FontAwesome;
            display: inline-block;
            margin-right: 5px;
            color: #FF0000;
        }

.p-modalFundInput-intro {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

.p-modalFundInput-list {
    margin-bottom: 30px;
}

    .p-modalFundInput-list dt {
        font-size: 14px;
        line-height: 1.4;
        text-align: left;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .p-modalFundInput-list dd + dt {
        margin-top: 20px;
    }

.p-modalFundInput-input {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    padding: 0 10px;
    box-sizing: border-box;
    border: #e5e5e5 2px solid;
    height: 40px;
    width: 100%;
}

.p-modalFundInput-select {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    padding: 0 10px;
    box-sizing: border-box;
    border: #e5e5e5 3px solid;
    height: 40px;
    width: 100%;
}

.freeword {
    align: left;
    width: 100%;
    display: inline-block;
}

.p-modalFundInput-pulldowns1 {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    padding: 0 10px;
    box-sizing: border-box;
    border: #e5e5e5 3px solid;
    height: 50px;
    width: 48%;
}

.p-modalFundInput-pulldowns2 {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    padding: 0 10px;
    box-sizing: border-box;
    border: #e5e5e5 3px solid;
    height: 50px;
    width: 50%;
}

.p-modalFundInput-btn {
    text-align: center;
    max-width: 175px;
    margin: 0 auto;
}

    .p-modalFundInput-btn .c-btn {
        margin: 0 auto;
    }



#style_fundList {
    margin: 50px auto;
    position: relative;
}

.p-modalFundList {
    background: #FFF;
    padding: 25px 15px 40px 15px;
    text-align: center;
}

.p-modalFundList-headTitle {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
}

.p-modalFundList-cond {
    background: #eeeeee;
    padding: 15px 15px;
    margin-bottom: 20px;
}

    .p-modalFundList-cond dl {
        display: table;
    }

    .p-modalFundList-cond dt,
    .p-modalFundList-cond dd {
        display: table-cell;
        vertical-align: top;
        font-size: 16px;
        line-height: 1.4;
        font-weight: bold;
    }

    .p-modalFundList-cond dl + dl {
        margin-top: 7px;
    }

.p-modalFundList-listOuter {
    border: #e5e5e5 3px solid;
    height: 300px;
    overflow-y: scroll;
}

.p-modalFundList-list {
    padding: 0 10px 0 5px;
}

    .p-modalFundList-list li {
        font-size: 13px;
        line-height: 1.4;
        text-align: left;
        position: relative;
        font-weight: bold;
    }

        .p-modalFundList-list li + li {
            border-top: #e5e5e5 1px solid;
        }

        .p-modalFundList-list li input {
            display: none;
        }

        .p-modalFundList-list li label {
            display: block;
            cursor: pointer;
            position: relative;
            padding: 7px 80px 5px 0;
        }

        .p-modalFundList-list li input:checked + label {
            background: #ffe7e7;
        }

        .p-modalFundList-list li span {
            display: block;
            color: #FFF;
            background: #ff0000;
            padding: 4px 8px 0 8px;
            line-height: 13px;
            position: absolute;
            top: 0;
            bottom: 0;
            box-sizing: border-box;
            height: 20px;
            right: 0;
            border-radius: 5px;
            margin: auto;
        }

.p-modalFundList-caution {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 34px;
}

.p-modalFundList-btn {
    text-align: center;
}

    .p-modalFundList-btn li {
        display: block;
        width: 155px;
        margin: 0 auto;
    }

        .p-modalFundList-btn li + li {
            margin-top: 10px;
        }

.p-modalFundList-listNoneOuter {
    border: #e5e5e5 4px solid;
    overflow-y: scroll;
}

.p-modalFundList-listNone {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    padding: 40px 0;
}



#evaluation_input {
    position: relative;
    max-width: 980px;
    margin: 100px auto;
}

.p-modalEvaluation {
    background: #FFF;
    padding: 20px 15px 40px 15px;
    text-align: center;
}

.p-modalEvaluation-headTitle {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
}

.p-modalEvaluation-intro {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.p-modalEvaluationInput {
    background: #eeeeee;
    margin-bottom: 10px;
    text-align: center;
}

.p-modalEvaluationInput-tag,
.p-modalEvaluationInput-area {
}

.p-modalEvaluationInput-tag {
    font-size: 14px;
    line-height: 1.5;
    padding: 20px 10px 0 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

.p-modalEvaluationInput-area {
    padding: 0 5px 15px 5px;
}

.p-modalEvaluationInput-areaRadio {
    margin-bottom: 15px;
}

    .p-modalEvaluationInput-areaRadio input {
        display: none;
    }

    .p-modalEvaluationInput-areaRadio label {
        vertical-align: middle;
        font-size: 14px;
        font-weight: bold;
        line-height: 1;
        display: inline-block;
        padding: 2px 0 0 26px;
        position: relative;
        margin-right: 17px;
    }

        .p-modalEvaluationInput-areaRadio label:before {
            display: block;
            width: 15px;
            height: 15px;
            box-sizing: border-box;
            border: #000 1px solid;
            background: #FFF;
            border-radius: 50%;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            content: '';
            z-index: 10;
        }

    .p-modalEvaluationInput-areaRadio input:checked + label:before {
        background: #FF0000;
    }

.p-modalEvaluationInput-areaInput input {
    height: 45px;
    box-sizing: border-box;
    border: #e5e5e5 2px solid;
    vertical-align: bottom;
    width: 100%;
    max-width: 200px;
    margin-left: 40px;
}

.p-modalEvaluationInput-areaInput span {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    margin-left: 5px;
}

.p-modalEvaluationCaution {
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
    font-weight: bold;
    margin-bottom: 20px;
}





.popUpBox {
}

    .popUpBox a {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

.p-popUpBoxOuter {
    position: absolute;
    top: 0;
    width: 1px;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 50;
}

.p-popUpBoxWrap {
    position: absolute;
    bottom: 20px;
    left: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border: #000 3px solid;
}

    .p-popUpBoxWrap.is-left {
        -webkit-transform: translate(-170px, 0);
        transform: translate(-170px, 0);
    }

    .p-popUpBoxWrap:before {
        position: absolute;
        bottom: -25px;
        left: 0;
        right: 0;
        margin: auto;
        content: '';
        vertical-align: middle;
        box-sizing: border-box;
        width: 8px;
        height: 8px;
        border: 8px solid transparent;
        border-top: 16px solid #000;
    }

    .p-popUpBoxWrap.is-left:before {
        -webkit-transform: translate(67px, 0);
        transform: translate(67px, 0);
    }

.p-popUpBox {
    background: #FFF;
    color: #000;
}


.p-popTypeList {
    padding: 15px 10px 15px 15px;
    width: 200px;
    box-sizing: border-box;
    font-size: 14px;
}

    .p-popTypeList li {
        display: table;
        width: 100%;
        position: relative;
        font-weight: bold;
    }

        .p-popTypeList li span span {
            content: '';
            width: 15px;
            height: 15px;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto;
        }
        /*
.p-popTypeList-des01:before {
  background: #e94d7c;
}
.p-popTypeList-des02:before {
  background: #3e8be7;
}
.p-popTypeList-des03:before {
  background: #f7bf4a;
}
.p-popTypeList-des04:before {
  background: #9354db;
}
.p-popTypeList-des05:before {
  background: #f27921;
}
.p-popTypeList-des06:before {
  background: #639d3d;
}
*/
        .p-popTypeList li + li {
            margin-top: 7px;
        }

        .p-popTypeList li span {
            display: table-cell;
            vertical-align: middle;
            font-weight: bold;
        }

            .p-popTypeList li span[class^="p-popTypeList-des"] {
                text-align: left;
                padding-left: 30px;
            }

            .p-popTypeList li span:nth-child(2) {
                text-align: right;
            }

.p-popDelate {
    padding: 15px 10px 20px 15px;
    width: 300px;
    box-sizing: border-box;
}

.p-popDelate-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 15px;
}


.p-popBtn {
    text-align: center;
}

    .p-popBtn a,
    .p-popBtn button {
        border: none;
        background: #e5e5e5;
        display: inline-block;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
        padding: 5px 10px;
        margin: 0 5px;
        cursor: pointer;
    }

.p-popSelect {
    padding: 15px 10px 20px 15px;
    width: 240px;
    box-sizing: border-box;
}

.p-popSelectList {
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
}

    .p-popSelectList li {
    }

        .p-popSelectList li + li {
            margin-top: 10px;
        }

        .p-popSelectList li input {
            display: none;
        }

        .p-popSelectList li label {
            display: inline-block;
            position: relative;
            padding: 0 0 0 29px;
            cursor: pointer;
        }

            .p-popSelectList li label:before {
                width: 18px;
                height: 18px;
                box-sizing: border-box;
                border: #a0a0a0 1px solid;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                margin: auto;
                content: '';
            }

            .p-popSelectList li label span {
                border-right: 3px solid #FF0000;
                border-bottom: 3px solid #FF0000;
                content: '';
                opacity: 0;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                position: absolute;
                top: 0;
                bottom: 0;
                left: 5px;
                width: 6px;
                height: 10px;
            }

        .p-popSelectList li input:checked + label span {
            opacity: 1;
        }

.p-popNoAdd {
    padding: 15px 10px 20px 15px;
    width: 300px;
    box-sizing: border-box;
}

.p-popNoAdd-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
}



.mfp-content > div > .p-popUpBoxOuter {
    position: static;
    top: auto;
    width: auto;
    margin: auto;
    left: auto;
    right: auto;
    z-index: 50;
}

    .mfp-content > div > .p-popUpBoxOuter > .p-popUpBoxWrap {
        position: static;
        bottom: auto;
        left: auto;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        border: #000 3px solid;
    }

        .mfp-content > div > .p-popUpBoxOuter > .p-popUpBoxWrap:before {
            display: none;
        }

        .mfp-content > div > .p-popUpBoxOuter > .p-popUpBoxWrap .p-popDelate {
            margin: 0 auto;
        }

        .mfp-content > div > .p-popUpBoxOuter > .p-popUpBoxWrap .p-popSelect {
            margin: 0 auto;
        }

        .mfp-content > div > .p-popUpBoxOuter > .p-popUpBoxWrap .p-popNoAdd {
            margin: 0 auto;
        }


.in_fade {
    opacity: 1;
}

    .in_fade.is-move {
        -webkit-animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
        animation: fadeIn 0.5s 0s ease-in-out alternate forwards;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px, 20px);
        transform: translate(0px, 20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px, 20px);
        transform: translate(0px, 20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}


.u-backPanel01 {
    /*  background: #FFF url(../images/back_panel01.png); */
    background: #FFF;
}

.u-boxShadow {
    box-shadow: 0 0 5px 3px rgba(0,0,0,0.1);
}


.pie-chart {
    height: 250px;
}

.pop-pie-chart {
    height: 150px;
}

.p-FR_posTable thead a {
    color: #7E7E7E;
}

    .p-FR_posTable thead a.is-active {
        color: #212020;
    }

.is-icon-sunshine:before {
    content: "\f185";
    font: normal normal normal 48px/1 FontAwesome;
    display: inline-block;
    padding: 0 5px 0 0;
    color: #f27921;
}

.is-icon-cloud:before {
    content: "\f0c2";
    font: normal normal normal 48px/1 FontAwesome;
    display: inline-block;
    padding: 0 5px 0 0;
    color: #959595;
}

.is-icon-umbrella:before {
    content: "\f0e9";
    font: normal normal normal 48px/1 FontAwesome;
    display: inline-block;
    padding: 0 5px 0 0;
    color: #0066ff;
}

.highcharts-background {
    fill: #F4F4F4;
    stroke: #F4F4F4;
    stroke-width: 0;
}

/*
    chart
------------------------------------------*/
.paratit {
    width: 7em;
    font-size: 12px;
}

.paraoption {
    padding: 4px 0 0 0px;
}

.html5content {
    display: none;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 250px;
}

.html5content_01 {
    display: none;
    left: 0px;
    position: absolute;
    top: 0px;
    z-index: 1;
}

.html5content_02 {
    display: none;
    left: 0px;
    position: absolute;
    top: 0px;
    z-index: 2;
}

.ms-nav-legend-label {
    font-size: 10px;
}

.ms-nav-legend-1 {
    color: #f1961f;
}

.ms-nav-legend-2 {
    color: #72c3db;
}

.ms-nav-legend-3 {
    color: #f1961f;
}

.chparam li {
    display: block;
    font-size: 12px;
    padding-right: 0;
    text-align: left;
}

.markerPrice {
    color: #f1961f;
}

.plowBack {
    color: #82a6c9;
}

.netAssets {
    color: #f1961f;
}

.flaparam {
    margin-left: 0px;
    padding: 5px 0 5px 0;
    border: 1px solid #ccc;
    background: #eee;
}

.paratit {
    float: left;
    width: 7em;
    margin: 0;
    padding: 5px 0 0 5px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    font-size: 12px;
}

.paraoption {
    float: left;
    width: 188px;
    padding: 0;
    margin-top: -3px;
}

    .paraoption img {
        margin-right: 5px;
        width: 76px;
    }

.list-help-01 li {
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    padding-left: 6px;
}

    .list-help-01 li img {
        position: relative;
        top: -4px;
        left: 4px;
    }

.span-left {
    float: left;
    font-size: 10px;
    font-weight: bold;
    border-left: #ff6161 8px solid;
    padding-left: 10px;
}

.span-asterisk {
    float: left;
    font-size: 10px;
}
 /* メールで送るボタン */
 .c-btn-orange {
     display: block;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    color: #FFF;
    background: orange;
    border-radius: 5px;
    border: none;
    padding: 15px 0;
    position: relative;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;

}
