@charset "UTF-8";
/*---------------
    common
---------------*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
}
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
    font-size: 1.0rem;
    min-width: 1240px;
    word-break: break-all;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: 'Noto Sans Japanese', sans-serif;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    text-decoration: none;
}
a[href^="tel:"] {
  cursor: default;
  color: #fff;
}
.clearfix:after {
    content: '';
    display: block;
    clear: both;
}
.container {
    max-width: 1300px;
    width: 100%;
    padding: 110px 30px;
    margin: 0 auto;
}
.heading {
    font-size: 40px;
    font-weight: normal;
    line-height: 5.0rem;
    letter-spacing: 0.03em;
}
.txt {
    font-size: 1.8rem;
    line-height: 3.2rem;
    letter-spacing: 0.03em;
}
.txt02 {
    font-size: 2.4rem;
    line-height: 3.4rem;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 20px;
}
.cmn-link .link-regist {
    display: block;
    max-width: 700px;
    width: 100%;
    padding: 29px 0;
    margin: 0 auto 22px;
    background: #ffb511;
    border-radius: 4px;
    font-size: 3.0rem;
    font-weight: bold;
    color: #fff;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    text-align: center;
}
.cmn-link .link-regist:hover {
    background: #ffc137;
}
.cmn-link .link-txt {
    text-align: center;
}
.cmn-link .link-mail {
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.cmn-link .link-mail:hover {
    border-bottom: none;
}


/*---------------
    header
---------------*/
/*animation container*/
.ani-arrows-container {
    background: #0f1941;
    font-size: 14px; /*set animation size*/
    height: 460px;
    overflow: hidden;
    position: relative;
}
/*arrow visual*/
.ani-arrow {
    -webkit-animation: ani-arrows 6s 1.5s forwards infinite;
            animation: ani-arrows 6s 1.5s forwards infinite;
    background: #e74536;
    border-radius: 2em;
    display: block;
    height: 4em;
    margin-top: 2em;
    position: relative;
    -webkit-transform: translate3d(-130%, 0, 0); /*move arrows out of initial view*/
            transform: translate3d(-130%, 0, 0); /*move arrows out of initial view*/
    width: 15em;
}
.ani-arrow::before, .ani-arrow::after {
    background: #e74536;
    border-radius: 2em;
    content: "";
    height: 4em;
    position: absolute;
    right: -1.3em;
    width: 10em;
}
.ani-arrow::before {
    content: "";
    top: -2.2em;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.ani-arrow::after {
    right: -1.3em;
    top: 2.1em;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
/*arrow 2*/
.ani-arrow-2 {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
    margin: 6em 0 0 -7em;
}
.ani-arrow-2, .ani-arrow-2::before, .ani-arrow-2::after {
    background: #ffb511;
}
/*arrow 3*/
.ani-arrow-3 {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
    margin: 6em 0 0 -14em;
}
.ani-arrow-3, .ani-arrow-3::before, .ani-arrow-3::after {
    background: #6ba5b4;
}
/*Keyframe animation*/
@-webkit-keyframes ani-arrows {
    0% {
        -webkit-animation-timing-function: ease-out;
                    animation-timing-function: ease-out;
        -webkit-transform: translate3d(-110%,0,0);
                transform: translate3d(-110%,0,0);
    }
    10% {
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
        -webkit-transform: translate3d(40vw,0,0);
                transform: translate3d(40vw,0,0);
    }
    85% {
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
        -webkit-transform: translate3d(65vw,0,0);
                transform: translate3d(65vw,0,0);
    }
    90% {
        -webkit-transform: translate3d(150vw,0,0);
                transform: translate3d(150vw,0,0);
    }
    100% {
        -webkit-transform: translate3d(170vw,0,0);
                transform: translate3d(170vw,0,0);
    }
}
@keyframes ani-arrows {
    0% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
        -webkit-transform: translate3d(-110%,0,0);
                transform: translate3d(-110%,0,0);
    }
    10% {
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
        -webkit-transform: translate3d(40vw,0,0);
                transform: translate3d(40vw,0,0);
    }
    85% {
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
        -webkit-transform: translate3d(65vw,0,0);
                transform: translate3d(65vw,0,0);
    }
    90% {
        -webkit-transform: translate3d(150vw,0,0);
                transform: translate3d(150vw,0,0);
    }
    100% {
        -webkit-transform: translate3d(170vw,0,0);
                transform: translate3d(170vw,0,0);
    }
}
/*larger viewports*/
@media (min-width: 501px) {
    .ani-arrows-container {
        font-size: 17px; /*change arrow size*/
    }
    @-webkit-keyframes ani-arrows {
        0% {
            -webkit-animation-timing-function: ease-out;
                    animation-timing-function: ease-out;
            -webkit-transform: translate3d(-110%,0,0);
                    transform: translate3d(-110%,0,0);
        }
        10% {
            -webkit-animation-timing-function: ease-in;
                    animation-timing-function: ease-in;
            -webkit-transform: translate3d(60vw,0,0);
                    transform: translate3d(60vw,0,0);
        }
        85% {
            -webkit-animation-timing-function: ease-out;
                    animation-timing-function: ease-out;
            -webkit-transform: translate3d(65vw,0,0);
                    transform: translate3d(65vw,0,0);
        }
        90% {
            -webkit-transform: translate3d(110vw,0,0);
                    transform: translate3d(110vw,0,0);
        }
        100% {
            -webkit-transform: translate3d(150vw,0,0);
                    transform: translate3d(150vw,0,0);
        }
    }
    @keyframes ani-arrows {
        0% {
            -webkit-animation-timing-function: ease-out;
                    animation-timing-function: ease-out;
            -webkit-transform: translate3d(-110%,0,0);
                    transform: translate3d(-110%,0,0);
        }
        10% {
            -webkit-animation-timing-function: ease-in;
                    animation-timing-function: ease-in;
            -webkit-transform: translate3d(60vw,0,0);
                    transform: translate3d(60vw,0,0);
        }
        85% {
            -webkit-animation-timing-function: ease-out;
                    animation-timing-function: ease-out;
            -webkit-transform: translate3d(65vw,0,0);
                    transform: translate3d(65vw,0,0);
        }
        90% {
            -webkit-transform: translate3d(110vw,0,0);
                    transform: translate3d(110vw,0,0);
        }
        100% {
            -webkit-transform: translate3d(150vw,0,0);
                    transform: translate3d(150vw,0,0);
        }
    }
}
/*mv*/
.mv {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
}
.mv.container {
    padding: 0 30px;
}
.mv .logo {
    margin-top: 30px;
    margin-bottom: 90px;
}
.mv .catch {
    font-size: 44px;
    font-weight: normal;
    line-height: 58px;
    letter-spacing: 0.03em;
    margin-bottom: 50px;
}
.mv .txt {
    font-size: 18px;
}
.mv .lead {
    font-size: 40px;
    letter-spacing: 0.05em;
    position: absolute;
    right: 0;
    bottom: 0;
}
.mv .lead .color {
    color: #ffb511;
}
/*---------------
    company
---------------*/
.company .ttl {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-align: center;
    margin: 32px 0 15px;
}
.company .company-slider {
    margin-bottom: 23px;
}
.company .company-slider .slider-img {
    padding: 0 6px;
    text-align: center;
}
.company .company-slider .slider-img:focus {
    outline: none;
}
/*---------------
    strength
---------------*/
.strength {
    background: #f7f5f0;
    color: #0f1940;
}
.strength .container {
    background: url('../../pc/img/bg_strength.png') no-repeat;
    background-position: 48% 0;
}
.strength .heading {
    margin-bottom: 209px;
}
.strength .link-mail {
    color: #2175d9;
    border-color: #2175d9;
}
.strength .strength-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 106px;
}
.strength .strength-dt {
    font-size: 3.2rem;
    line-height: 4.1rem;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}
.strength .strength-dt .number {
    display: block;
    font-size: 1.5rem;
    line-height: 4.1rem;
    letter-spacing: 0.03em;
}
.strength .strength-dt .color {
    color: #2175d9;
}
.strength .strength-list01 {
    width: 540px;
}
.strength .strength-list01 .strength-dd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.strength .strength-list01 .strength-dd .mr {
    width: 245px;
    margin-right: 28px;
}
.strength .strength-list01 .strength-img .caption01 {
    display: block;
    width: 135px;
    margin: 0 auto;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-align: left;
}
.strength .strength-list01 .strength-img .caption02 {
    display: block;
    width: 135px;
    margin: -5px auto 0;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-align: left;
}
.strength .strength-list02 {
    width: 569px;
}
.strength .strength-list02 .strength-dd .mb {
    display: block;
    margin-bottom: 30px;
}
/*---------------
    specialists
---------------*/
.specialists .heading {
    text-align: center;
    letter-spacing: 0.03em;
    margin: 0 0 41px;
}
.specialists .specialists-box {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.specialists .specialists-list {
    max-width: 218px;
    list-style: none;
}
.specialists .specialists-industry {
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.16;
    margin: 0 -10px 26px;
}
.specialists .specialists-img {
    text-align: center;
    margin: 0 0 24px;
}
.specialists .specialists-txt {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    line-height: 1.75;
    margin: 0 0 15px 0;
    min-height: 100px;
}
.specialists .specialists-btn {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    text-align: center;
    border: 1px solid #2175d9;
    border-radius: 4px;
}
.specialists .specialists-btn:hover {
    opacity: 0.8;
}
.specialists .specialists-btn a {
    display: block;
    color: #2175d9;
    padding: 11px 0;
}
/*---------------
    consultant
---------------*/
.consultant {
    overflow: hidden;
    background: #0f1940;
    color: #fff;
}
.consultant .heading {
    text-align: center;
    margin-bottom: 48px;
}
.consultant .txt {
    max-width: 986px;
    width: 100%;
    margin: 0 auto;
    line-height: 3.0rem;
}
.consultant .link-mail {
    color: #fff;
    border-color: #fff;
}
.consultant .txt.mb01 {
    margin-bottom: 35px;
}
.consultant .txt.mb02 {
    margin-bottom: 70px;
}
.consultant .consultant-box {
    list-style-type: none;
    margin: 0 -100px 115px;
    box-shadow: 10px 10px 10px #0b1232;
}
.consultant .consultant-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.consultant .consultant-list .info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    background: #fff;
    color: #0f1940;
    padding: 87px 95px 20px 88px;
}
.consultant .consultant-list .info .name {
    font-size: 4.0rem;
    line-height: 4.0rem;
    letter-spacing: 0.03em;
    margin-bottom:15px;
}
.consultant .consultant-list .info .kana {
    display: block;
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}
.consultant .consultant-list .info .position {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.4rem;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}
.consultant .consultant-list .info .txt {
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    overflow: auto;
    height: 135px;
    padding: 5px;
}
.consultant .slick-dots {
    bottom: -54px;
}
.consultant .slick-dots li {
    width: 14px;
    height: 14px;
    margin: 0 10px;
}
.consultant .slick-dots li button {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
}
.consultant .slick-arrow {
    display: none;
}
.consultant .slick-dots li button:before {
    content: '';
    width: 14px;
    height: 14px;
    opacity: 1;
    color: #fff;
}
.consultant .slick-dots li.slick-active button:before {
    background: #fff;
    border-radius: 50%;
}
.consultant .posi {
    position: relative;
}
.consultant .link-consultant {
    position: absolute;
    bottom: -71px;
    right: -100px;
    font-size: 16px;
    line-height: 2.8rem;;
    letter-spacing: 0.03em;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 8px 35px;
    overflow: hidden;
}
.consultant .link-consultant:hover {
    opacity: 0.8;
}
@media screen and (max-width: 1439px) {
    .consultant .link-consultant {
        right: -30px;
    }
}
/*---------------
    ex
---------------*/
.ex {
    overflow: hidden;
    background: #2175d9;
    color: #fff;
}
.ex .heading {
    text-align: center;
    margin-bottom: 50px;
}
.ex .link-mail {
    color: #fff;
}
.ex .ex-box {
    list-style-type: none;
    text-align: center;
    margin: 0 -180px 132px;
}
.ex .ex-list {
    max-width: 314px;
    width: 100%;
    margin: 0 15px;
    box-shadow: 7px 7px 5px #1c6ac8;
    position: relative;
}
.ex .ex-list .before-after:after {
    content: '';
    position: absolute;
    box-shadow: 7px 7px 5px #1c6ac8;
}
.ex .ex-list .age-industry {
    color: #0f1940;
    background: #f7f5f0;
    padding: 36px 10px;
}
.ex .ex-list .age-industry .age {
    font-size: 2.4rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}
.ex .ex-list .age-industry .industry {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.4rem;
    letter-spacing: 0.03em;
}
.ex .ex-list .before-after {
    background: #fff;
    padding: 30px 10px;
}
.ex .ex-list .before-after .before {
    color: #0f1940;
    position: relative;
    padding-bottom: 44px;
}
.ex .ex-list .before-after .before:after {
    content: '';
    background: url('../../pc/img/ico_ex_arrow.png') no-repeat;
    width: 31px;
    height: 16px;
    display: block;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.ex .ex-list .before-after .after {
    color: #2175d9;
    font-weight: bold;
}
.ex .ex-list .before-after .position {
    display: block;
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 7px;
}
.ex .ex-list .before-after .position.lh {
    line-height: 1.6rem;
    margin-top: -4px;
}
.ex .ex-list .before-after .income {
    display: block;
    font-size: 2.8rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
}
.ex .slick-prev:before,
.ex .slick-next:before {
    content: none;
}
.ex .slick-prev,
.ex .slick-next {
    width: 89px;
    height: 89px;
}
.ex .slick-prev:hover,
.ex .slick-next:hover {
    opacity: 0.8;
}
.ex .slick-prev {
    left: 20px;
    top: auto;
    bottom: -163px;
    background: url('../../pc/img/ico_prev.png') no-repeat;
}
.ex .slick-next {
    right: 20px;
    top: auto;
    bottom: -163px;
    background: url('../../pc/img/ico_next.png') no-repeat;
}
@media screen and (max-width: 1599px) {
    .ex .slick-prev {
        left: 9.5%;
    }
    .ex .slick-next {
        right: 8.5%;
    }
}
/*---------------
    flow
---------------*/
.flow {
    color: #0f1940;
    position: relative;
    z-index: 2;
    background: #f7f5f0;
}
.flow .heading {
    text-align: center;
    margin-bottom: 50px;
}
.flow .link-mail {
    color: #2175d9;
    border-color: #2175d9;
}
.flow .flow-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style-type: none;
    margin-bottom: 75px;
}
.flow .flow-list {
    width: 217px;
}
.flow .flow-list .flow-dt {
    font-size: 2.4rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    text-align: center;
}
.flow .flow-list .flow-dt .number {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.4rem;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}
.flow .flow-dd .step-img {
    text-align: center;
}
.flow .step01 .step-img {
    margin: 52px 0 33px;
}
.flow .step02 .step-img {
    margin: 38px 0 46px;
}
.flow .step03 .step-img {
    margin: 57px 0 37px;
}
.flow .step04 .step-img {
    margin: 70px 0 49px;
}
.flow .step05 .step-img {
    margin: 70px 0 50px;
}
.flow .flow-dd .txt {
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
}
/*---------------
    about
---------------*/
.about {
    background: #55abb9;
    color: #fff;
    overflow: hidden;
}
.about .container {
    position: relative;
}
.about .container:before {
    content: '';
    background: url('../../pc/img/bg_map.png') no-repeat;
    display: block;
    width: 551px;
    height: 509px;
    position: absolute;
    z-index: 1;
    top: -60px;
    right: -150px;
}
.about .posi {
    position: relative;
    z-index: 2;
}
.about .heading {
    text-align: center;
    margin-bottom: 50px;
}
.about .link-mail {
    color: #fff;
    border-color: #fff;
}
.about .about-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 83px;
}
.about .about-box {
    margin: 87px 0 0 71px;
}
.about .about-list {
    margin-bottom: 40px;
}
.about .about-list .about-dt {
    font-weight: bold;
}
/*---------------
    footer
---------------*/
.copyright {
    background: #0f1940;
    color: #fff;
    font-size: 1.4rem;
    line-height: 2.8rem;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 41px 0;
}
