@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/**
* Base appearance
*/

html {
    height: 100%;
    box-sizing: border-box;
    font-size: 17px;
}

/* crisping image edges */
html * {
    image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

body {
    font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 1em;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.58;
    color: #4d4d4d;
    border-color: #4d4d4d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: auto;
    text-rendering: optimizeLegibility;

    background-color: #fff;

    width: 100%;
    height: 100%;
}

a {
    color: #4d4d4d;
    text-decoration: none;
    opacity: 1;
    transition: opacity .1s ease-in-out;
}

a:hover {
    opacity: .74;
    display: inline-block;
}

img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    outline: none;

    /* add to prevent image blurring */
    -webkit-backface-visibility: hidden;
}

figure {
    outline: none;
}

a.block,
.block>img,
img.block {
    display: block;
}

a.block.fill,
.block.fill>img,
img.block.fill {
    width: 100%;
}

figure {
    display: block;
}

figure>a:first-child,
figure>a:first-child>img,
figure>span:first-child,
figure>span:first-child>img,
figure>em:first-child,
figure>em:first-child>img,
figure>i:first-child,
figure>i:first-child>img,
figure>img {
    display: block;
    -webkit-backface-visibility: hidden;
}

nav ul,
nav ul>li {
    display: block;
    list-style-type: none;
}

small {
    font-size: 1em;
}

em {
    font-style: normal;
}

address {
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 1.4em;
    line-height: 1.32;
}

h1 {
    font-size: 1.8em;
}

.pconly {
    display: inherit !important;
}

.pconly.pconly-inline {
    display: inline !important;
}

.sponly {
    display: none !important;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.bold,
.text-bold, {
    font-weight: bold;
}

.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

.hidden {
    display: none !important;
    position: static !important;
}

/**
* Button appearance
*/

.btn {
    display: inline-block;
    padding: 1em;
    border-radius: .35em;
    background-color: transparent;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 1.2em;
    font-size: 1.2rem;
    line-height: 1;
    margin: 1em 1em 0 1em;
}

.btn.btn-small {
    padding: .5em;
}

p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

.border-top {
    border-top: 1px #c3c3c3 solid;
}

/* buttons */

.btn {
    box-sizing: border-box;
    text-align: center;
    background-color: #909090;
    border: 1px solid #909090;
    color: #fff;

    border-radius: 0;
}

.btn > span {
    display: inline-block;
    vertical-align: baseline;
}

.btn.btn-products > span {
    display: block;
}

.btn.btn-block {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
}

.btn.btn-semi-block {
    max-width: 100%;
    width: 20em;
}

.btn.btn-semi-block-small {
    max-width: 100%;
    width: 10.5em;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: .5rem;
}

.btn.btn-link {
    display: inline;
    background-color: transparent;
    color: #599CE8;
    border: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.btn.btn-primary {
    background-color: #599CE8;
    border-color: #599CE8;
    color: #fff;
}

.btn.btn-default {
    background-color: #fff;
    border: 1px solid #aaa;
    color: #4d4d4d;
}

.btn.btn-skeleton {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn.btn-transparent {
    background-color: transparent;
    border: 1px solid transparent;
    color: inherit;
}

.btn.btn-plutform {
    background-color: #aaa;
    border: 1px solid #aaa;
    font-weight: bold;
    color: #fff;
    padding: 1em;
    margin-left: 0;

    transition: 0.35s;
}

.btn.btn-trial {
    background-color: #cf3e0e;
    border: 1px solid #cf3e0e;
    font-weight: bold;
    color: #fff;
    padding: .7em;
    transition: 0.35s;
}

.btn.btn-trial-small {
    background-color: #cf3e0e;
    border: 1px solid #cf3e0e;
    font-weight: bolder;
    font-size: .8rem;
    color: #fff;
    padding-left: .35em;
    padding-right: .35em;
    padding-top: .5em;
    padding-bottom: .5em;
    transition: 0.35s;
}

.btn.btn-lines {
    background-color: #d33e10;
    border: 1px solid #d33e10;
    font-weight: bold;
    color: #fff;
    text-align: left;
    padding: 1em;
    margin-left: 0;
    transition: .3s;
    position: relative;
    text-decoration: none;
    z-index: 1 !important;
}

.btn.btn-lines::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #fff;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-consult {
    background-color: #f5a500;
    border: 1px solid #f5a500;
    font-weight: bold;
    color: #fff;
    text-align: left;
    padding: 1em;
    margin-left: 0;
    transition: .3s;
    position: relative;
    text-decoration: none;
    z-index: 1 !important;
}

.btn.btn-consult::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #fff;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-recruit {
    background-color: #00d2aa;
    border: 1px solid #00d2aa;
    font-weight: bold;
    color: #fff;
    text-align: left;
    padding: 1em;
    margin-left: 0;
    transition: .3s;
    position: relative;
    text-decoration: none;
    z-index: 1 !important;
}

.btn.btn-recruit:hover {
    background-color: #00d2aa;
    color: #fff;
    opacity: 1;
    text-decoration: none;
    transition: 0.35s;
}

.btn.btn-recruit::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #fff;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-market {
    background-color: #00aae1;
    border: 1px solid #00aae1;
    font-weight: bold;
    color: #fff;
    text-align: left;
    padding: 1em;
    margin-left: 0;
    transition: .3s;
    position: relative;
    text-decoration: none;
    z-index: 1 !important;
}

.btn.btn-market::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #fff;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-bench {
    background-color: #5d4582;
    border: 1px solid #5d4582;
    font-weight: bold;
    color: #fff;
    text-align: left;
    padding: 1em;
    margin-left: 0;
    transition: .3s;
    position: relative;
    text-decoration: none;
    z-index: 1 !important;
}

.btn.btn-bench::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #fff;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-contact {
    background-color: #fff;
    border: 1px solid #fff;
    font-weight: bold;
    text-align: left;
    padding: 1em;
    margin-top: .75rem;
    margin-left: 0;
    transition: .3s;
    position: relative;
    text-decoration: none;
    z-index: 1 !important;
}

.btn.btn-contact-fund {
    border: 1px solid #c03e86;
    color: #c03e86;
    transition: 0.35s;
}

.btn.btn-contact-fund::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #c03e86;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-contact-lines {
    border: 1px solid #d33e10;
    color: #d33e10;
    transition: 0.35s;
}

.btn.btn-contact-lines::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #d33e10;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-contact-consult {
    border: 1px solid #f5a500;
    color: #f5a500;
    transition: 0.35s;
}

.btn.btn-contact-consult::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #f5a500;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-contact-recruit {
    border: 1px solid #00d2aa;
    color: #00d2aa;
    transition: 0.35s;
}


.btn.btn-contact-recruit::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #00d2aa;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-contact-market {
    border: 1px solid #00aae1;
    color: #00aae1;
    transition: 0.35s;
}

.btn.btn-contact-market::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #00aae1;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-contact-bench {
    border: 1px solid #5d4582;
    color: #5d4582;
    transition: 0.35s;
}

.btn.btn-contact-bench::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #5d4582;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: .3s;
}

.btn.btn-back {
    background-color: #aaa;
    border-color: #aaa;
    color: #fff;
}

.btn.btn-heavy {
    font-size: 1.25em;
    font-weight: bold;
}

.btn.btn-icon.icon-chevron {
    background-position: 8px center;
    background-size: 2px auto;
}

.btn.btn-icon.icon-chevron.icon-right {
    background-position: right 2px center;
}

.btn.inner-icon.icon-chevron > span {
    background-position: left center;
    background-size: 16px auto;
    padding-left: 2em;
}

.btn.btn-trial.inner-icon.icon-chevron > span {
    background-position: left 0;
    background-size: 24px auto;
}

.btn.btn-trial-small.inner-icon.icon-chevron > span {
    background-position: left -1px;
    background-size: 14px auto;
    padding-left: 1.5em;
    padding-top: .2em;
    padding-bottom: .2em;
}

.btn.inner-icon.icon-chevron.icon-right > span {
    background-position: right center;
    padding-left: 0;
    padding-right: 2em;
}

.btn.btn-icon.icon-chevron,
.btn.inner-icon.icon-chevron > span {
    background-image: url("../images/portal_top/ico_arrow_otamesi.png");
}

.btn.btn-icon.btn-default.icon-chevron,
.btn.btn-default.inner-icon.icon-chevron > span {
    background-image: url("../images/portal_top/ico_arrow_otamesi.png");
}

.btn.btn-icon.btn-bench {
    background-position: 8px center;
    background-size: 19px auto;
    line-height: 19px;
}

.btn.btn-icon.btn-bench.icon-right {
    background-position: right 8px center;
}

.btn.inner-icon.btn-bench > span {
    background-position: left center;
    background-size: 16px auto;
    padding-left: 1.5em;
    line-height: 16px;
}

.btn.inner-icon.btn-bench.icon-right > span {
    background-position: right center;
    padding-left: 0;
    padding-right: 1.5em;
}

.btn.inner-icon.btn-contact > span {
    background-position: left center;
    background-size: 16px auto;
    padding-left: 1.5em;
    line-height: 16px;
}

.btn.inner-icon.btn-plutform > span {
    background-image: url("../images/portal_top/right-chevron-white.png");
}

.btn.inner-icon.btn-fund > span {
    background-image: url("../images/portal_top/right-chevron-white.png");
}

.btn.inner-icon.btn-contact.btn-contact-fund > span {
    background-image: url("../images/portal_top/right-chevron-fund.png");
}
.btn.inner-icon.btn-lines > span {
    background-image: url("../images/portal_top/right-chevron-white.png");
}

.btn.inner-icon.btn-contact.btn-contact-lines > span {
    background-image: url("../images/portal_top/right-chevron-lines.png");
}

.btn.inner-icon.btn-consult > span {
    background-image: url("../images/portal_top/right-chevron-white.png");
}

.btn.inner-icon.btn-contact.btn-contact-consult > span {
    background-image: url("../images/portal_top/right-chevron-consult.png");
}

.btn.inner-icon.btn-recruit > span {
    background-image: url("../images/portal_top/right-chevron-white.png");
}

.btn.inner-icon.btn-contact.btn-contact-recruit > span {
    background-image: url("../images/portal_top/right-chevron-recruit.png");
}

.btn.inner-icon.btn-market > span {
    background-image: url("../images/portal_top/right-chevron-white.png");
}

.btn.inner-icon.btn-contact.btn-contact-market > span {
    background-image: url("../images/portal_top/right-chevron-market.png");
}

.btn.inner-icon.btn-bench > span {
    background-image: url("../images/portal_top/right-chevron-white.png");
}

.btn.inner-icon.btn-contact.btn-contact-bench > span {
    background-image: url("../images/portal_top/right-chevron-benchmarking.png");
}


.btn.btn-icon.icon-tri {
    background-position: 8px center;
    background-size: 5px auto;
    line-height: 8px;
}

.btn.btn-icon.icon-tri.icon-right {
    background-position: right 8px center;
}

.btn.inner-icon.icon-tri > span {
    background-position: left center;
    background-size: 5px auto;
    padding-left: 1em;
    line-height: 8px;
}

.btn.inner-icon.icon-tri.icon-right > span {
    background-position: right center;
    padding-left: 0;
    padding-right: 1em;
}

.btn.btn-icon.icon-tri,
.btn.inner-icon.icon-tri > span {
    background-image: url("../images/portal_top/ico_arrow_otamesi.png");
}

.btn.btn-default.btn-icon.icon-tri,
.btn.btn-default.inner-icon.icon-tri > span {
    background-image: url("../images/portal_top/ico_arrow_otamesi.png");
}


/**
* Outline layout
*/

article {
    position: relative;
    overflow: hidden;
}


header,
footer,
nav,
article,
article>section,
article>header,
article .wrapper,
main>header {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

article>section,
article>header,
article .wrapper,
main>header,
.page-wrapper {
    max-width: 1170px;
    padding-left: 1em;
    padding-right: 1em;
}

article>section.narrow,
article>section.narrow-80,
article>header.narrow,
article>header.narrow-80,
article .wrapper.narrow,
article .wrapper.narrow-80 {
    max-width: calc(1170px * .8);
/*    max-width: 816px; */
}

article>section.narrow-90,
article>header.narrow-90,
article .wrapper.narrow-90  {
    max-width: calc(1170px * .9);
/*    max-width: 918px; */
}

article>section.narrow-70,
article>header.narrow-70,
article .wrapper.narrow-70 {
    max-width: calc(1170px * .7);
/*    max-width: 714px; */
}

article>section.narrow-60,
article>header.narrow-60,
article .wrapper.narrow-60 {
    max-width: calc(1170px * .6);
/*    max-width: 612px; */
}

article>section.full,
article>header.full,
article .wrapper.full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

article>section.row-section,
article>header.row-section {
    overflow: hidden;
}

.row,
header,
article,
section,
footer,
nav>ul,
aside {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.row:after,
header:after,
article:after,
section:after,
footer:after,
nav>ul:after,
aside:after,
.clearfix {
    content: "";
    display: block;
    clear: both;
}
.row.row-table:after {
    display: none;
}


/**
* Row module layout
*/

ul.list,
ul.list>li {
    display: block;
    list-style-type: none;
}

ul.default {
    padding-left: 1.35em;
}

.row {
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
}

.row:first-child {
    margin-top: 0;
}

.row:last-child {
    margin-bottom: 0;
}

.row>.col,
.row.left>.col {
    display: block;
    float: left;
}

.row.right>.col {
    float: right;
}

ul.row,
ul.row>li.col,
ol.row,
ol.row>li.col {
    display: block;
    list-style-type: none;
}

.row.row-table {
    display: table;
    margin-top: 0;
    margin-bottom: 0;
}

.row.row-table > .table-row {
    display: table-row;
}

.row.row-table > .table-row > .col,
.row.row-table > .col {
    display: table-cell;
    float: none;
    vertical-align: top;
}

.row.row-table.table-middle > .table-row > .col,
.row.row-table.table-middle > .col {
    vertical-align: middle;
}

.row.row-inline>.col {
    display: inline-block;
    float: none
}

.row>.col.col-1,
.row>.col.col-1-1,
.row>.col.col-2-2,
.row>.col.col-3-3,
.row>.col.col-4-4,
.row>.col.col-5-5,
.row>.col.col-6-6,
.row>.col.col-7-7,
.row>.col.col-8-8,
.row>.col.col-9-9,
.row>.col.col-9-9,
.row>.col.col-10-10,
.row>.col.col-11-11,
.row>.col.col-12-12 {
    width: 100%;
}

.row>.col.col-2,
.row>.col.col-2-1,
.row>.col.col-4-2,
.row>.col.col-6-3,
.row>.col.col-8-4,
.row>.col.col-10-5,
.row>.col.col-12-6 {
    width: 50%;
}

.row>.col.col-3,
.row>.col.col-3-1,
.row>.col.col-6-2,
.row>.col.col-9-3,
.row>.col.col-12-4 {
    width: 33.333%;
}

.row>.col.col-3-2,
.row>.col.col-6-4,
.row>.col.col-9-6,
.row>.col.col-12-8 {
    width: 66.666%;
}

.row>.col.col-4,
.row>.col.col-4-1,
.row>.col.col-8-2,
.row>.col.col-12-3 {
    width: 25%;
}

.row>.col.col-4-3,
.row>.col.col-8-6,
.row>.col.col-12-9 {
    width: 75%;
}

.row>.col.col-5,
.row>.col.col-5-1,
.row>.col.col-10-2 {
    width: 20%;
}

.row>.col.col-5-2,
.row>.col.col-10-4 {
    width: 40%;
}

.row>.col.col-5-3,
.row>.col.col-10-6 {
    width: 60%;
}

.row>.col.col-5-4,
.row>.col.col-10-8 {
    width: 80%;
}

.row>.col.col-6,
.row>.col.col-6-1,
.row>.col.col-12-2 {
    width: 16.666%;
}

.row>.col.col-6-5,
.row>.col.col-12-10 {
    width: 83.333%;
}

.row>.col.col-7,
.row>.col.col-7-1 {
    width: 14.285%;
}

.row>.col.col-7-2 {
    width: 28.571%;
}

.row>.col.col-7-3 {
    width: 42.857%;
}

.row>.col.col-7-4 {
    width: 57.142%;
}

.row>.col.col-7-5 {
    width: 71.428%;
}

.row>.col.col-7-6 {
    width: 85.714%;
}

.row>.col.col-8,
.row>.col.col-8-1 {
    width: 12.5%;
}

.row>.col.col-8-3 {
    width: 37.5%;
}

.row>.col.col-8-5 {
    width: 62.5%;
}

.row>.col.col-8-7 {
    width: 87.5%;
}

.row>.col.col-9,
.row>.col.col-9-1 {
    width: 11.111%;
}

.row>.col.col-9-2 {
    width: 22.222%;
}

.row>.col.col-9-4 {
    width: 44.444%;
}

.row>.col.col-9-5 {
    width: 55.555%;
}

.row>.col.col-9-7 {
    width: 77.777%;
}

.row>.col.col-9-8 {
    width: 88.888%;
}

.row>.col.col-10,
.row>.col.col-10-1 {
    width: 10%;
}

.row>.col.col-10-3 {
    width: 30%;
}

.row>.col.col-10-7 {
    width: 70%;
}

.row>.col.col-10-9 {
    width: 90%;
}

.row>.col.col-11,
.row>.col.col-11-1 {
    width: 9.09%;
}

.row>.col.col-11-2 {
    width: 18.181%;
}

.row>.col.col-11-2 {
    width: 27.272%;
}

.row>.col.col-11-3 {
    width: 27.272%;
}

.row>.col.col-11-4 {
    width: 36.363%;
}

.row>.col.col-11-4 {
    width: 36.363%;
}

.row>.col.col-11-5 {
    width: 45.454%;
}

.row>.col.col-11-6 {
    width: 54.545%;
}

.row>.col.col-11-7 {
    width: 63.636%;
}

.row>.col.col-11-8 {
    width: 72.727%;
}

.row>.col.col-11-9 {
    width: 81.818%;
}

.row>.col.col-11-10 {
    width: 90.909%;
}

.row>.col.col-12,
.row>.col.col-12-1 {
    width: 8.333%;
}

.row>.col.col-12-5 {
    width: 41.666%;
}

.row>.col.col-12-7 {
    width: 58.333%;
}

.row>.col.col-12-11 {
    width: 91.666%;
}

.row.row-separate,
.row.row-separate-md {
    width: 100%;
    width: -webkit-calc(100% + 2em);
    width: calc(100% + 2em);
    margin-left: -2em;
    margin-top: -2em;
}
.row.row-separate>.col,
.row.row-separate-md>.col {
    padding-left: 2em;
    margin-top: 2em;
}

.row.row-separate-sm {
    width: 100%;
    width: -webkit-calc(100% + 1em);
    width: calc(100% + 1em);
    margin-left: -1em;
    margin-top: -1em;
}

.row.row-separate-sm>.col {
    padding-left: 1em;
    margin-top: 1em;
}

.row.row-separate-lg {
    width: 100%;
    width: -webkit-calc(100% + 3em);
    width: calc(100% + 3em);
    margin-left: -3em;
    margin-top: -3em;
}

.row.row-separate-lg>.col {
    padding-left: 3em;
    margin-top: 3em
}

.row>.col>a {
    display: block;
}

/**
 * Row module flex-box addon
 */
.row.row-flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content:         flex-start;
    -webkit-align-content: flex-start;
    align-content:         flex-start;
}

.row.row-flex.flex-vertical-center {
    -webkit-align-items: center;
    align-items: center;
}

.row.row-flex > .col {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    float: none;
}

/**
 * Row module media addon
 */

.row.row-media {
}

.row.row-media .media-image {
    width: 37.5%;
}
.row.row-media .media-body {
    width: 62.5%;
}

.row.row-media.media-left .media-image,
.row.row-media.media-left .media-body {
    float: left;
}
.row.row-media.media-left .media-image {
    padding-right: 3em;
}

.row.row-media.media-right .media-image,
.row.row-media.media-right .media-body {
    float: right;
}
.row.row-media.media-right .media-image {
    padding-left: 3em;
}


/**
 * Definition list as table appearance
 */

dl.bordered {
    border-top: 1px solid #ccc;
}

dl.bordered>dt {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: rgba(180, 180, 180, .25);
    text-align: center;
    padding: 0 1em;
}

dl.bordered>dt:last-of-type {
}

dl.bordered>dd {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 0 1em;
}

dl.bordered>dd>p {
    opacity: .8;
}

dl.bordered>dt:before,
dl.bordered>dd:before,
dl.bordered>dt:after,
dl.bordered>dd:after  {
    content: "";
    display: block;
    height: 1em;
}

dl.bordered>dd:last-of-type {
}


/**
 * Form appearance
 */

form.form input[type=text],
form.form input[type=email],
form.form input[type=password],
form.form input[type=tel],
form.form input[type=number],
form.form textarea,
form.form select,
form.form button:not(.btn) {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: inline-block;
    font-size: 1em;
    padding: .5em .5em;
    border: 1px solid #ccc;
    border-radius: 1px;
    max-width: 100%;
    line-height: 1.2;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
    vertical-align: -moz-middle-with-baseline;
    background-color: rgba(255, 255 ,255, .25);
}

form.form label {
    display: inline-block;
    cursor: pointer;
    line-height: 1.5;
    padding-top: 0;
    padding-bottom: .5em;
    margin-right: 1em;
}

form.form select,
form.form button:not(.btn) {
    background-color: rgba(255, 255 ,255, .25);
}

form.form button:not(.btn) {
    cursor: pointer;
    outline: none;
}

form.form button:not(.btn):focus {
    opacity: .8;
}

form.form button:not(.btn).button-image {
    font-size: 0;
    line-height: 0;
    padding: 0;
    border: none;
}

form.form select.placeholder {
    color: #ccc;
}

/*
form.form input[type=checkbox],
form.form input[type=radio] {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #B4B4B5;
    height: 1.58em;
    width: 1em;
    line-height: 1.58em;
    margin-right: .25em;
}*/

form.form td>input[type=email],
form.form td>input[type=text],
form.form td>input[type=number] {
    margin-left: .65em;
}

form.form td>input:first-child {
    margin-left: 0;
}

form.form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/down-chevron.png");
    background-repeat: no-repeat;
    background-position: center right .65em;
    background-size: .65em .65em;
    padding-right: 2.5em;
}

form.form select > option{
    color: #4d4d4d;
}

form.form select::-ms-expand {
    display: none;
}

form.form label > input[type=checkbox],
form.form label > input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    position: relative;
    display: inline-block;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
    vertical-align: -moz-middle-with-baseline;
    cursor: pointer;
    
    padding-left: 1em;
    padding-top: 1em;
    
    border-radius: 0;
    outline: none;
    overflow: hidden;

    margin-right: .5em;

    background-color: transparent;
    border: 1px solid #ccc;
}

form.form label > input[type=radio] {
    border-radius: 50%;
}

form.form label > input[type=checkbox]:checked:before,
form.form label > input[type=radio]:checked:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    
    outline: none;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

form.form label > input[type=checkbox]:checked:before {

    margin-top: .075em;
    margin-left: .36em;

    /* setting the checkbox */
    border-color: gray;
    border-width: 2px;

    /* short arm */
    width: .33em;
    border-bottom-style: solid;
    /* long arm */
    height: .66em;
    border-right-style: solid;
  
    /* rotate the mirrored L to make it a checkbox */
    transform-origin: center;
    -o-transform-origin: center;
    -ms-transform-origin: center;
    -webkit-transform-origin: center;
    transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    
    box-shadow: 2px 2px 2px 0px rgba(89, 156, 232, .1);
}

form.form label > input[type=radio]:checked:before {
    width: .6em;
    height: .6em;
    margin-top: .2em;
    margin-left: .2em;

    background-color: gray;
    border-radius: 50%;
    
    box-shadow: -1px -1px 1px 1px rgba(89, 156, 232, .1);
}
form.form label > input[type=checkbox] + span,
form.form label > input[type=radio] + span {
    display: inline;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
    vertical-align: -moz-middle-with-baseline;
    opacity: .8;
}

/* color of placeholders */
:placeholder-shown {
    color: #ccc;
}
::-webkit-input-placeholder{
    color: #ccc;
}
:-moz-placeholder {
    color: #ccc;
    opacity: 1;
}
::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #ccc;
}

/* trimming image with figure */

figure.trim {
    position: relative;
    display: block;
}

figure.trim > em,
figure.trim > span,
figure.trim > i {
    display: block;
    overflow: hidden;
    position: relative;

    width: 100%;
    height: auto;
}

figure.trim > em:before,
figure.trim > span:before,
figure.trim > i:before {
    content: "";
    display: block;
    padding-top: 70.7%;
}

figure.trim > em > img,
figure.trim > span > img,
figure.trim > i > img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 9999px;
}

figure.trim.trim-invert > em > img,
figure.trim.trim-invert > span > img,
figure.trim.trim-invert > i > img {
    width: auto;
    max-width: 9999px;
    height: 100%;
    max-height: 100%;
}

/* scroll trigger action */

.scroll-trigger {
    -webkit-backface-visibility: hidden;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(.24,.75,.39,1);
    transition-delay: .5s;

    opacity: 0;
}
.scroll-trigger.triggered {
    opacity: 1;
}
.scroll-trigger.delayed {
    transition-delay: .7s;
    transition-duration: .8s;
}

.scroll-trigger.fadein {
}

.scroll-trigger.fadein.triggered {
    transition-property: opacity;
}

.scroll-trigger.slidein {
    transform: translateX(10em);
}
.scroll-trigger.slidein.triggered {
    transition-property: opacity, transform;
    transform: translateX(0);
}

.scroll-trigger.pullup {
    transform: translateY(2em);
}
.scroll-trigger.pullup.pullup-small {
    transform: translateY(1em);
}

.scroll-trigger.pullup.triggered {
    transition-property: opacity, transform;
    transform: translateY(0);
}

.scroll-trigger.expand {
    transition-duration: .5s;
    transform: scale(.5);
}

.scroll-trigger.expand.triggered {
    transition-property: opacity, transform;
    transform: scale(1);
}

/* PC */
@media screen and (min-width: 781px) {

    .btn.btn-plutform:hover {
        -webkit-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
        transform: scale(1.1,1.1);
        transition: 0.35s;
        opacity: 1;
    }
    
    .btn.btn-trial:hover,
    .btn.btn-trial-small:hover {
        -webkit-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
        transform: scale(1.1,1.1);
        transition: .3s;
        opacity: 1;
        text-decoration: none;
    }

    .btn.btn-contact-fund:hover {
        background-color: #c03e86;
        color: #fff;
        opacity: 1;
        text-decoration: none;
        transition: 0.35s;
    }
    .btn.btn-contact-lines:hover {
        background-color: #d33e10;
        color: #fff;
        opacity: 1;
        text-decoration: none;
        transition: 0.35s;
    }
    .btn.btn-contact-consult:hover {
        background-color: #f5a500;
        color: #fff;
        opacity: 1;
        text-decoration: none;
        transition: 0.35s;
    }
    .btn.btn-contact-recruit:hover {
        background-color: #00d2aa;
        color: #fff;
        opacity: 1;
        text-decoration: none;
        transition: 0.35s;
    }
    .btn.btn-contact-market:hover {
        background-color: #00aae1;
        color: #fff;
        opacity: 1;
        text-decoration: none;
        transition: 0.35s;
    }
    .btn.btn-contact-bench:hover {
        background-color: #5d4582;
        color: #fff;
        opacity: 1;
        text-decoration: none;
        transition: 0.35s;
    }

    .btn.btn-lines:hover {
        color: #d33e10;
        opacity: 1;
    }
    .btn.btn-consult:hover {
        color: #f5a500;
        opacity: 1;
    }
    .btn.btn-recruit:hover {
        color: #00d2aa;
        opacity: 1;
    }
    .btn.btn-market:hover {
        color: #00aae1;
        opacity: 1;
    }
    .btn.btn-bench:hover {
        color: #5d4582;
        opacity: 1;
    }
    .btn.btn-contact:hover {
        color: #fff;
        opacity: 1;
    }

    .btn.btn-lines:hover::before {
        transform: scale(1, 1);
    }

    .btn.btn-consult:hover::before {
        transform: scale(1, 1);
    }

    .btn.btn-recruit:hover::before {
        transform: scale(1, 1);
    }
    
    .btn.btn-market:hover::before {
        transform: scale(1, 1);
    }

    .btn.btn-bench:hover::before {
        transform: scale(1, 1);
    }
    
    .btn.btn-contact-fund:hover::before {
        transform: scale(1, 1);
    }

    .btn.btn-contact-lines:hover::before {
        transform: scale(1, 1);
    }

    .btn.btn-contact-consult:hover::before {
        transform: scale(1, 1);
    }
    
    .btn.btn-contact-recruit:hover::before {
        transform: scale(1, 1);
    }
    
    .btn.btn-contact-market:hover::before {
        transform: scale(1, 1);
    }

    .btn.btn-contact-bench:hover::before {
        transform: scale(1, 1);
    }

    .btn.inner-icon.btn-fund:hover > span {
        background-image: url("../images/portal_top/right-chevron-fund.png");
    }

    .btn.inner-icon.btn-contact.btn-contact-fund:hover > span {
        background-image: url("../images/portal_top/right-chevron-white.png");
    }

    .btn.inner-icon.btn-lines:hover > span {
        background-image: url("../images/portal_top/right-chevron-lines.png");
    }

    .btn.inner-icon.btn-contact.btn-contact-lines:hover > span {
        background-image: url("../images/portal_top/right-chevron-white.png");
    }

    .btn.inner-icon.btn-consult:hover > span {
        background-image: url("../images/portal_top/right-chevron-consult.png");
    }

    .btn.inner-icon.btn-contact.btn-contact-consult:hover > span {
        background-image: url("../images/portal_top/right-chevron-white.png");
    }

    .btn.inner-icon.btn-recruit:hover > span {
        background-image: url("../images/portal_top/right-chevron-recruit.png");
    }

    .btn.inner-icon.btn-contact.btn-contact-recruit:hover > span {
        background-image: url("../images/portal_top/right-chevron-white.png");
    }

    .btn.inner-icon.btn-market:hover > span {
        background-image: url("../images/portal_top/right-chevron-market.png");
    }

    .btn.inner-icon.btn-contact.btn-contact-market:hover > span {
        background-image: url("../images/portal_top/right-chevron-white.png");
    }

    .btn.inner-icon.btn-bench:hover > span {
        background-image: url("../images/portal_top/right-chevron-benchmarking.png");
    }

    .btn.inner-icon.btn-contact.btn-contact-bench:hover > span {
        background-image: url("../images/portal_top/right-chevron-white.png");
    }
}

/**
 * Breakpoint: ~780px
 */

 @media screen and (max-width: 780px) {
    /**
    * Base appearance
    */
    html {
        font-size: 14px;
    }
    body {
        line-height: 1.5;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
    }
    /**
    * Outline layout
    */
    article>section {
        max-width: none;
    }

    article>section.full {
    }

    .pconly,
    .pconly.pconly-inline {
        display: none !important;
    }

    .sponly {
        display: block !important;
    }
    
    .border-top-sp {
        border-top: 1px #c3c3c3 solid;
    }

    /**
    * Row module layout
    */

    .row>.col.col-sp-1,
    .row>.col.col-sp-1-1,
    .row>.col.col-sp-2-2,
    .row>.col.col-sp-3-3,
    .row>.col.col-sp-4-4,
    .row>.col.col-sp-5-5,
    .row>.col.col-sp-6-6,
    .row>.col.col-sp-7-7,
    .row>.col.col-sp-8-8,
    .row>.col.col-sp-9-9,
    .row>.col.col-sp-9-9,
    .row>.col.col-sp-10-10,
    .row>.col.col-sp-11-11,
    .row>.col.col-sp-12-12 {
        width: 100%;
    }
    
    .row>.col.col-sp-2,
    .row>.col.col-sp-2-1,
    .row>.col.col-sp-4-2,
    .row>.col.col-sp-6-3,
    .row>.col.col-sp-8-4,
    .row>.col.col-sp-10-5,
    .row>.col.col-sp-12-6 {
        width: 50%;
    }
    
    .row>.col.col-sp-3,
    .row>.col.col-sp-3-1,
    .row>.col.col-sp-6-2,
    .row>.col.col-sp-9-3,
    .row>.col.col-sp-12-4 {
        width: 33.333%;
    }
    
    .row>.col.col-sp-3-2,
    .row>.col.col-sp-6-4,
    .row>.col.col-sp-9-6,
    .row>.col.col-sp-12-8 {
        width: 66.666%;
    }
    
    .row>.col.col-sp-4,
    .row>.col.col-sp-4-1,
    .row>.col.col-sp-8-2,
    .row>.col.col-sp-12-3 {
        width: 25%;
    }
    
    .row>.col.col-sp-4-3,
    .row>.col.col-sp-8-6,
    .row>.col.col-sp-12-9 {
        width: 75%;
    }
    
    .row>.col.col-sp-5,
    .row>.col.col-sp-5-1,
    .row>.col.col-sp-10-2 {
        width: 20%;
    }
    
    .row>.col.col-sp-5-2,
    .row>.col.col-sp-10-4 {
        width: 40%;
    }
    
    .row>.col.col-sp-5-3,
    .row>.col.col-sp-10-6 {
        width: 60%;
    }
    
    .row>.col.col-sp-5-4,
    .row>.col.col-sp-10-8 {
        width: 80%;
    }
    
    .row>.col.col-sp-6,
    .row>.col.col-sp-6-1,
    .row>.col.col-sp-12-2 {
        width: 16.666%;
    }
    
    .row>.col.col-sp-6-5,
    .row>.col.col-sp-12-10 {
        width: 83.333%;
    }
    
    .row>.col.col-sp-7,
    .row>.col.col-sp-7-1 {
        width: 14.285%;
    }
    
    .row>.col.col-sp-7-2 {
        width: 28.571%;
    }
    
    .row>.col.col-sp-7-3 {
        width: 42.857%;
    }
    
    .row>.col.col-sp-7-4 {
        width: 57.142%;
    }
    
    .row>.col.col-sp-7-5 {
        width: 71.428%;
    }
    
    .row>.col.col-sp-7-6 {
        width: 85.714%;
    }
    
    .row>.col.col-sp-8,
    .row>.col.col-sp-8-1 {
        width: 12.5%;
    }
    
    .row>.col.col-sp-8-3 {
        width: 37.5%;
    }
    
    .row>.col.col-sp-8-5 {
        width: 62.5%;
    }
    
    .row>.col.col-sp-8-7 {
        width: 87.5%;
    }
    
    .row>.col.col-sp-9,
    .row>.col.col-sp-9-1 {
        width: 11.111%;
    }
    
    .row>.col.col-sp-9-2 {
        width: 22.222%;
    }
    
    .row>.col.col-sp-9-4 {
        width: 44.444%;
    }
    
    .row>.col.col-sp-9-5 {
        width: 55.555%;
    }
    
    .row>.col.col-sp-9-7 {
        width: 77.777%;
    }
    
    .row>.col.col-sp-9-8 {
        width: 88.888%;
    }
    
    .row>.col.col-sp-10,
    .row>.col.col-sp-10-1 {
        width: 10%;
    }
    
    .row>.col.col-sp-10-3 {
        width: 30%;
    }
    
    .row>.col.col-sp-10-7 {
        width: 70%;
    }
    
    .row>.col.col-sp-10-9 {
        width: 90%;
    }
    
    .row>.col.col-sp-11,
    .row>.col.col-sp-11-1 {
        width: 9.09%;
    }
    
    .row>.col.col-sp-11-2 {
        width: 18.181%;
    }
    
    .row>.col.col-sp-11-2 {
        width: 27.272%;
    }
    
    .row>.col.col-sp-11-3 {
        width: 27.272%;
    }
    
    .row>.col.col-sp-11-4 {
        width: 36.363%;
    }
    
    .row>.col.col-sp-11-4 {
        width: 36.363%;
    }
    
    .row>.col.col-sp-11-5 {
        width: 45.454%;
    }
    
    .row>.col.col-sp-11-6 {
        width: 54.545%;
    }
    
    .row>.col.col-sp-11-7 {
        width: 63.636%;
    }
    
    .row>.col.col-sp-11-8 {
        width: 72.727%;
    }
    
    .row>.col.col-sp-11-9 {
        width: 81.818%;
    }
    
    .row>.col.col-sp-11-10 {
        width: 90.909%;
    }
    
    .row>.col.col-sp-12,
    .row>.col.col-sp-12-1 {
        width: 8.333%;
    }
    
    .row>.col.col-sp-12-5 {
        width: 41.666%;
    }
    
    .row>.col.col-sp-12-7 {
        width: 58.333%;
    }
    
    .row>.col.col-sp-12-11 {
        width: 91.666%;
    }

    .row.row-separate,
    .row.row-separate-md {
        width: 100%;
        width: -webkit-calc(100% + 1em);
        width: calc(100% + 1em);
        margin-left: -1em;
        margin-top: -2em;
    }

    .row.row-separate>.col,
    .row.row-separate-md>.col {
        padding-left: 1em;
        margin-top: 2em;
    }
    
    .row.row-separate-sm {
        width: 100%;
        width: -webkit-calc(100% + .5em);
        width: calc(100% + .5em);
        margin-left: -.5em;
        margin-top: -1em;
    }
    
    .row.row-separate-sm>.col {
        padding-left: .5em;
        margin-top: 1em;
    }
    
    .row.row-separate-lg {
        width: 100%;
        width: -webkit-calc(100% + 2em);
        width: calc(100% + 2em);
        margin-left: -2em;
        margin-top: -3em;
    }
    
    .row.row-separate-lg>.col {
        padding-left: 2em;
        margin-top: 3em
    }

    .row.row-table.row-sp-table-collapse,
    .row.row-table.row-sp-table-collapse > .table-row,
    .row.row-table.row-sp-table-collapse > .table-row > .col,
    .row.row-table.row-sp-table-collapse > .col {
        display: block;
    }

    /**
    * Row module media addon
    */

    .row.row-media {
    }

    .row.row-media .media-image {
        width: auto;
    }
    .row.row-media .media-body {
        width: 100%;
    }

    .row.row-media.media-left .media-image,
    .row.row-media.media-left .media-body {
        float: none;
    }
    .row.row-media.media-left .media-image {
        padding-right: 0;
    }

    .row.row-media.media-right .media-image,
    .row.row-media.media-right .media-body {
        float: none;
    }
    .row.row-media.media-right .media-image {
        padding-left: 0;
    }

    /* Definition border layout with row module */
    
    dl.bordered {
        overflow: hidden;
    }

    dl.row.bordered>dt.col {
        width: 100%;
        text-align: left;
        font-weight: bold;
        border-bottom: 0;
        padding: 0 1em;
        
        box-shadow: 0px 1px 1px 0 rgba(100, 100, 100, 0.15);
    }
    
    dl.row.bordered>dt.col:before,
    dl.row.bordered>dt.col:after  {
        height: .5em;
    }

    dl.bordered>dd {
        border-left: 1px solid #ccc;
    }

    /* trimming image with figure */

    figure.trim > em:first-child:before,
    figure.trim > span:first-child:before,
    figure.trim > i:first-child:before {
        padding-top: 61.8%;
    }

    /**
    * Button appearance
    */

    .btn {
        margin-top: 1em;
        margin-left: 0;
        margin-right: 0;
    }

    .btn.btn.btn-semi-block {
        width: 100%;
        text-decoration: none;
    }

    .btn.btn.btn-semi-block > span  {
        display: block;
    }

    .btn.btn-plutform,
    .btn.btn-lines,
    .btn.btn-consult,
    .btn.btn-recruit,
    .btn.btn-market,
    .btn.btn-bench,
    .btn.btn-contact {
        padding: 1.4rem;
        font-size: 1.2rem;
    }

    .btn.btn-trial {
        padding: 1.2rem;
        font-size: 1.2rem;
    }

    .btn.btn-trial.inner-icon.icon-chevron > span {
        display: inline-block;
    }

}
