@charset "utf-8";

/*
 * Extracted CSS for:
 * - FP事業
 * - 人材教育事業
 * - PR事業
 *
 * Header / footer / unrelated site-wide sections have been omitted.
 */


.link-blue {
    color: #71c5e8;
}

.link-blue-line {
    color: #71c5e8;
    text-decoration: underline;
}


/* ------------------------------------------
  Read more ボタン
--------------------------------------------- */
.btn-cmn-more {
    color: #858585;
    position: relative;
    display: inline-block;
    padding-right: 60px;
}

.btn-cmn-more:after {
    content: "";
    display: block;
    width: 44px;
    height: 44px;
    text-align: center;
    border-radius: 22px;
    text-decoration: none;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #576fe6 51%, #3bade3 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -22px;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.btn-cmn-more:hover:after {
    color: #fff;
    background-position: 99% 50%;
    opacity: 1;
}

.btn-cmn-more:before {
    content: "";
    display: block;
    background: url(../images/btn-cmn-more.svg) no-repeat;
    width: 18px;
    height: 14px;
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -6px;
    z-index: 2;
}

@media screen and (max-width: 750px) {
    .btn-cmn-more {
        padding-right: 16vw;
    }
}

/* ------------------------------------------
  btn
--------------------------------------------- */
.btn-wrap {
    text-align: center;
    width: 100%;
}


.btn {
    /*ボタンの形状*/
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 400px;
    height: 60px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #576fe6 51%, #3bade3 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
    position: relative;
    font-size: 100%;
    font-weight: 500;
    border: none;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.btn:hover {
    color: #fff;
    background-position: 99% 50%;
    opacity: 1;
}

.btn:after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 30px;
    right: 25px;
}

/*large*/
.btn-l {
    /*ボタンの形状*/
    width: 540px;
    height: 100px;
    font-size: 20px;
}

.btn-l:after {
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 49px;
    right: 35px;
}

@media screen and (max-width: 750px) {
    .btn {
        width: 100%;
        height: 16vw;
        border-radius: 1.5vw;
        font-size: 3.6vw;
    }

    .btn-l {
        width: 100%;
        height: 20vw;
        border-radius: 1.5vw;
        font-size: 4.0vw;
        line-height: 1.5;
    }
}

/* ------------------------------------------
  top common
--------------------------------------------- */
.top-head-lv02 {}

.top-head-lv02 small {
    display: block;
    color: #71c5e8;
    font-size: 22px;
    line-height: 1;
    font-family: 'Hind', sans-serif;
    font-weight: 500;
    padding-bottom: 30px;
}

.top-head-lv02 span {
    display: block;
    font-size: 26px;
    line-height: 1.75;
    font-weight: 500;
    padding-bottom: 30px;
    letter-spacing: 4px;
}

.top-sec-lead {
    padding-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .top-head-lv02 small {
        font-size: 3.73vw;
        padding-bottom: 3vw;
    }

    .top-head-lv02 span {
        font-size: 4.0vw;
        padding-bottom: 3vw;
        letter-spacing: 1vw;
    }

    .top-sec-lead {
        padding-bottom: 8vw;
    }
}

/* ------------------------------------------
  img-animation-wrap
--------------------------------------------- */
.img-animation-wrap {
    opacity: 0;
}

.img-animation {
    overflow: hidden;
    position: relative;
    opacity: 1;
}

.img-animation:before {
    animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes img-animation {
    100% {
        transform: translateX(100%);
    }
}

@media screen and (max-width: 750px) {
    .img-green {
        width: 92vw;
        height: 25vw;
        display: flex;
        justify-content: center;
    }

    .img-green img {
        width: auto;
        height: 25vw;
    }

    .img-Office {
        width: 92vw;
        height: 28vw;
        display: flex;
        justify-content: center;
    }


    .img-Office img {
        width: auto;
        height: 28vw;
    }

}

/* ------------------------------------------
  sub common
--------------------------------------------- */
.subPage {
    width: 940px;
    margin: 0 auto;
}

.subPage-block {
    padding-bottom: 80px;
    max-width: 940px;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .subPage {
        width: 100%;
        margin: 0 auto;
        padding: 0 8vw;
    }

    .subPage-block {
        padding-bottom: 8vw;
    }
}


/* ------------------------------------------
  pageTitle
--------------------------------------------- */
.pageTitle {
    overflow: hidden;
}

.pageTitle-grd {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute !important;
    top: 0;
    left: 0;
}

.pageTitle-inner {
    width: 1110px;
    height: 410px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.pageTitle-noImg .pageTitle-inner {
    justify-content: center;
    text-align: center;
}


.pageTitle small {
    display: block;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #596ee5;
}

.pageTitle span {
    display: block;
    font-family: 'Hind', sans-serif;
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
    letter-spacing: 12px;
    background: linear-gradient(90deg, #576ee5, #3cace3);
    background: -webkit-linear-gradient(0deg, #576ee5, #3cace3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pageTitle-link {
    display: inline-block;
    padding: 15px 15px 0 0;
    letter-spacing: 4px;
    font-weight: 500;
    position: relative;
}

@media screen and (max-width: 750px) {
    .pageTitle-inner {
        width: 100%;
        height: auto;
        display: block;
        padding: 8vw;
    }

    .pageTitle-text {
        padding-bottom: 5vw;
    }

    .pageTitle small {
        padding-bottom: 2vw;
        font-size: 3.2vw;
        letter-spacing: 0.5vw;
    }

    .pageTitle span {
        font-size: 14.5vw;
        letter-spacing: 2.4vw;
    }

    .pageTitle-link {
        display: inline-block;
        padding: 4vw 4vw 0 0;
        letter-spacing: 0.5vw;
        line-height: 1.5;
    }

    .pageTitle-img img {
        width: 30vw;
        height: auto:
    }

    .pageTitle-noImg span {
        font-size: 9.5vw;
        letter-spacing: 2vw;
    }
}

/* ------------------------------------------
  geneBox
--------------------------------------------- */
.geneBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.geneBox:nth-child(odd) {
    flex-direction: row-reverse;
}

.geneBox-mt + .geneBox-mt,
.geneBox + .geneBox {
    margin-top: 50px;
}

.geneBox-text {
    width: 475px;
}

.geneBox-title {
    position: relative;
    padding-bottom: 30px;
}

.geneBox-title-nam {
    font-family: 'Hind', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 72px;
    line-height: 1;
    color: #71c5e830;
    position: absolute;
    top: 0;
    left: 0;
}

.geneBox-title-cnt {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 1.5;
    padding: 25px 0 30px 10px;
    display: block;
    position: relative;
}

.geneBox-title-cnt:after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #71c5e880;
}

.geneBox-img {
    width: 380px;
}

.geneBox-img img {
    width: 100%;
    height: auto;
}

.geneBox-listBox {
    background: #f1f9fd;
    padding: 20px 30px 20px 40px;
}

.geneBox-listBox h4 {
    font-size: 20px;
    font-weight: 700;
    color: #71c5e8;
    text-align: center;
    text-decoration: underline;
}

.geneBox-listBox ul {
    display: flex;
    flex-wrap: wrap;
}

.geneBox-listBox li {
    width: 47%;
    line-height: 1.5;
    padding-top: 15px;
    padding-left: 16px;
    text-indent: -11px;
    font-weight: 500;
}

.geneBox-listBox li:nth-child(odd) {
    margin-right: 6%;
}

.geneBox-listBox li i {
    margin-right: 5px;
}

.geneBox-paragraph {}

@media screen and (max-width: 750px) {
    .geneBox {
        display: block;
    }

    .geneBox-mt + .geneBox-mt,
    .geneBox + .geneBox {
        margin-top: 10vw;
    }

    .geneBox-img,
    .geneBox-text {
        width: 100%;
    }

    .geneBox-img {
        margin-bottom: 3vw;
    }

    .geneBox-img img {
        width: 100%;
        height: auto;
    }

    .geneBox-title {
        padding-bottom: 4vw;
    }

    .geneBox-title-nam {
        font-size: 13vw;
        top: 1vw;
    }

    .geneBox-title-cnt {
        font-size: 4.8vw;
        letter-spacing: 0.5vw;
        padding: 4vw 0 3vw 4vw;
    }

    .geneBox-listBox {
        padding: 4vw 6vw;
    }

    .geneBox-listBox h4 {
        font-size: 4.0vw;
    }

    .geneBox-listBox li {
        padding-top: 3vw;
        padding-left: 3vw;
        text-indent: -2.5vw;
    }
}

/*geneBox-others*/
.geneBox-blue {
    background: #f1f9fd;
    padding: 45px;
}

.geneBox-title-center {
    text-align: center;
}

.geneBox-title-center .geneBox-title {
    display: inline-block;
}

.geneBox-oneColumn {
    text-align: center;
}


.geneBox-oneColumn-inner + .geneBox-oneColumn-inner {
    padding-top: 40px;
}

.geneBox-inner {
    text-align: left;
}

.geneBox-inner .geneBox + .geneBox {
    text-align: left;
}

.geneBox-blue .geneBox-inner .geneBox-text {
    width: 380px;
}

.geneBox-blue .geneBox-inner {
    padding: 0 15px;
}

.geneBox-title-lv4 {
    color: #71c5e8;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .geneBox-blue {
        padding: 7vw 6vw;
    }

    .geneBox-oneColumn-inner + .geneBox-oneColumn-inner {
        padding-top: 5vw;
    }

    .geneBox-title-lv4 {
        font-size: 4.4vw;
        padding-bottom: 3vw;

    }

    .geneBox-blue .geneBox-inner .geneBox-text {
        width: 100%;
    }

    .geneBox-inner .geneBox + .geneBox {
        margin-top: 6vw;
    }

    .geneBox-blue .geneBox-inner {
        padding: 0;
    }
}

.geneBox-btn {
    flex-wrap: wrap;
}

.geneBox .btn-wrap {
    padding: 50px 0;
}

@media screen and (max-width: 750px) {
    .geneBox .btn-wrap {
        padding: 6vw 0 0vw;
    }
}

/* ------------------------------------------
  subPage-h-blue
--------------------------------------------- */
.subPage-h-blue {
    background: #71c5e8;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    border-radius: 8px 8px 0 0;
    margin-bottom: 30px;
}

.subPage-h-blue strong {
    color: #fff25f;
    font-size: 28px;
}

@media screen and (max-width: 750px) {
    .subPage-h-blue {
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
        border-radius: 8px 8px 0 0;
        margin-bottom: 5vw;
        padding: 1vw 4vw;
        line-height: 1.5;
    }

    .subPage-h-blue strong {
        font-size: 110%;
    }
}

/* ------------------------------------------
  subPage-h-img-wrap
--------------------------------------------- */
.subPage-h-img-wrap {
    position: relative;
    padding-top: 24%;
    margin-bottom: 40px;
}

.subPage-h-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.subPage-h-img-bg img{
    width: 100%;
    height: auto;
}

.subPage-h-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    color: #fff;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

.subPage-h-img-text small {
    display: block;
    width: 100%;
    font-size: 22px;
}

.subPage-h-img-text strong {
    display: block;
    width: 100%;
    font-size: 28px;
}

.subPage-h-img-text a {
    color: #fff;
    text-decoration: underline;
    position: relative;
    padding-right: 10px;
}

.subPage-h-img-text a:after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 12px;
    right: 0;

}

@media screen and (max-width: 750px) {
    .subPage-h-img-wrap {
        margin-bottom: 4vw;
    }

    .subPage-h-img-bg img {
        width: 100%;
    }

    .subPage-h-img {
        padding-bottom: 3vw;
    }

    .subPage-h-img-text small {
        font-size: 3vw;
    }

    .subPage-h-img-text strong {
        font-size: 4.8vw;
        line-height: 1.25;
    }

    .subPage-h-img-text a {
        padding: 1vw 2vw;
        letter-spacing: 0.25vw;
        font-size: 3.0vw;
        display: inline-block;
    }

    .subPage-h-img-text a:after {
        width: 1.75vw;
        height: 1.75vw;
        top: 3vw;
        right: 0;
    }
}

/* ------------------------------------------
  subPage-fukidashi
--------------------------------------------- */
.subPage-fukidashi {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subPage-fukidashi-text {
    width: 720px;
    padding: 15px;
    text-align: center;
    color: #71c5e8;
    background: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 8px;
    -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(0 0 0 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(-6px 0 -6px rgba(0, 0, 0, 0.2));
    position: relative;
}

.subPage-fukidashi-text:before {
    content: "";
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: #fff;
    position: absolute;
    right: -30px;
    top: 50%;
    margin-top: -15px;
}

.fukidashi-reverse {
    flex-direction: row-reverse;
}

.fukidashi-reverse .subPage-fukidashi-text:before {
    border: 15px solid transparent;
    border-right-color: #fff;
    position: absolute;
    right: inherit;
    left: -30px;
    top: 50%;
    margin-top: -15px;
}

@media screen and (max-width: 750px) {
    .subPage-fukidashi-text {
        width: 54vw;
        padding: 3.5vw;
        text-align: left;
        font-size: 3.6vw;
        border-radius: 2vw;
        letter-spacing: 0.25vw;
    }

    .subPage-fukidashi-img {
        width: 24vw;
    }

    .subPage-fukidashi-img img {
        width: 100%;
        height: auto;
    }
}

/* ------------------------------------------
  subPage-step
--------------------------------------------- */
.subPage-step {
    display: flex;
    justify-content: space-between;
}

.subPage-step-img {
    margin-bottom: 15px;
    position: relative;
}

.subPage-step-img img {
    width: 170px;
}

.subPage-step-img-fukidashi {}

.subPage-step-img-fukidashi {
    width: 90px;
    height: 90px;
    border-radius: 45px;
    background: #eeb13d;
    color: #fff;
    position: absolute;
    top: -20px;
    right: -40px;
    text-align: center;
    line-height: 1.25;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subPage-step-img-fukidashi:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: -8px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #eeb13d;
    z-index: 0;
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.subPage-step-title {
    text-align: center;
    padding-bottom: 10px;
}

.subPage-step-text {
    text-align: left;
}

.subPage-step-num {
    display: inline-block;
    background: #71c5e8;
    color: #fff;
    line-height: 1;
    font-weight: 500;
    padding: 5px 30px;
    margin-bottom: 12px;
    border-radius: 20px;
}

.subPage-step-cnt {
    display: block;
    text-align: center;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
}

.subPage-step-text dd {
    line-height: 1.5;
}

.subPage-step-text dd strong {
    text-decoration: underline;
}

.subPage-step li {
    position: relative;
    text-align: center;
}

.subPage-step li + li:before {
    content: "";
    display: block;
    width: 31px;
    height: 75px;
    background: url(../images/arrow-right.svg) no-repeat;
    position: absolute;
    left: -45px;
    top: 50%;
    margin-top: -37px;
}

@media screen and (max-width: 750px) {
    .subPage-step {
        display: block;
    }

    .subPage-step li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100% !important;
    }

    .subPage-step li + li {
        padding-top: 14vw;
    }

    .subPage-step li + li:before {
        width: 16vw;
        height: 7vw;
        background: url(../images/arrow-bottom.svg) no-repeat;
        position: absolute;
        left: 50%;
        top: 5vw;
        margin-top: 0;
        margin-left: -8vw;
    }

    .subPage-step-img {
        margin-bottom: 0;
        width: 35%;
    }

    .subPage-step-img img {
        width: 100%;
        width: 100%;
    }

    .subPage-step-text {
        width: 60%;
    }

    .subPage-step-title {
        padding-bottom: 1vw;
        text-align: left;
    }

    .subPage-step-num {
        padding: 1vw 2vw;
        margin-bottom: 1vw;
        border-radius: 4vw;
    }

    .subPage-step-cnt {
        font-size: 4vw;
        text-align: left;
    }

    .subPage-step-img-fukidashi {
        width: 20vw;
        height: 20vw;
        border-radius: 10vw;
        top: -5vw;
        right: inherit;
        left: -6vw;
        font-size: 3.2vw;
    }

    .subPage-step-img-fukidashi:before {
        bottom: -2vw;
        right: -2vw;
        left: initial;
        margin-top: -2vw;
        border: 4vw solid transparent;
        border-left: 4vw solid #eeb13d;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);

    }

    .subPage-step-img-fukidashi span {
        position: relative;
    }
}

/* ------------------------------------------
  .subPage-marker
--------------------------------------------- */
.marker {
    display: inline;
    position: relative;
    background-image: linear-gradient(90deg, #feee6b, #feee6b);
    /* 単色の場合は同じ色、グラデーションさせる場合は別々の色 */
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 30%;
    /* '30%'の部分にマーカーの太さを記入 */
    transition: all 1s ease-in-out;
    /* マーカーを引く速度を調整 */
    font-weight: 500;
    /* ついでに太字にしたい場合 */
}

.marker-active {
    background-size: 100% 30%;
    /* '30%'の部分は上で設定した太さに合わせる */
}


/* ------------------------------------------
  .subPage-fukidashi-kyocho
--------------------------------------------- */
.subPage-fukidashi-kyocho {
    min-height: 167px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 5px;
}

.subPage-fukidashi-kyocho p {
    display: inline-block;
    position: relative;
    padding: 0 55px;
}

.subPage-fukidashi-kyocho p .marker:before {
    height: 20px;
}

@media screen and (max-width: 750px) {
    .subPage-fukidashi-kyocho {
        min-height: 0;
        font-size: 7vw;
        justify-content: space-between;
    }

    .subPage-fukidashi-kyocho img {
        width: 8vw;
    }

    .subPage-fukidashi-kyocho p {
        padding: 0;
        line-height: 1.5;
        text-align: center;
    }
}


/* ------------------------------------------
  subPage-arrow
--------------------------------------------- */
.subPage-arrow {
    background: url(../images/arrow-down.svg) no-repeat center;
    text-align: center;
    background-size: 82px;
    min-height: 62px;
}

.subPage-arrow p {
    color: #212121;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
        -1px 1px 0 #FFF, 1px -1px 0 #FFF,
        0px 1px 0 #FFF, 0-1px 0 #FFF,
        -1px 0 0 #FFF, 1px 0 0 #FFF;
}

@media screen and (max-width: 750px) {
    .subPage-arrow {
        background-size: contain;
        min-height: 16vw;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 2vw;
        margin-bottom: 2vw;
    }

    .subPage-arrow p {
        font-size: 4.6vw;
        line-height: 1.25;
    }
}

/* ------------------------------------------
  subPage-priceList
--------------------------------------------- */
.subPage-priceList-wrap {
    border-radius: 10px;
    overflow: auto;
}

.subPage-priceList {}

.subPage-priceList tr:nth-child(odd) {
    background: #f5f5f5;
}

.subPage-priceList tr:nth-child(1) {
    background: #71c5e8;
    color: #fff;
}

.subPage-priceList th,
.subPage-priceList td {
    padding: 10px 25px;
    white-space: nowrap;
}

.subPage-priceList td:last-child {
    white-space: normal;
}

.subPage-priceList {
    line-height: 1.75;
}

/* ------------------------------------------
  sub FP
--------------------------------------------- */
.fp-sodan {
    padding-bottom: 50px;
}

.fp-sodan-fukidashi {
    padding-bottom: 20px;
}

.fp-fukidashi-kyocho {
    font-size: 40px;
}

.fp-onayami-box + .fp-onayami-box {
    margin-top: 30px;
}

.fp-onayami-arrow {
    margin-bottom: 30px;
}

/*review*/
.fp-member-inner {
    display: flex;
    justify-content: space-between;
}

.fp-member-item {
    width: 430px;
}

.fp-member-img {
    position: relative;
    margin-bottom: 30px;
}

.fp-member-name {
    width: 90%;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 20px 30px 16px;
    background: #f1f9fd;
    overflow: hidden;
}

.fp-member-name span {
    display: block;
    line-height: 1;
}

.fp-member-name-post {
    color: #a8a8a8;
    padding-bottom: 8px;
}

.fp-member-name-kanji {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 4px;
}

.fp-member-name-alphabet {
    font-family: 'Hind', sans-serif;
    font-style: italic;
    font-size: 14px;
    position: absolute;
    bottom: 14px;
    right: 35px;
    color: #9fd7ec;
    opacity: 0.5;
}

.fp-member-name-alphabet:after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #9fd7ec;
    opacity: 0.8;
    position: absolute;
    bottom: 11px;
    right: -60px;
}

.fp-member-text h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 3px;
    color: #71c5e8;
    padding-bottom: 20px;
}

/*review*/
.fp-review .subPage-fukidashi + .subPage-fukidashi {
    margin-top: 20px;
}

.fp-review .subPage-fukidashi-text {
    text-align: left;
    padding: 15px 30px 20px;
}

.fp-review .subPage-fukidashi-text p {
    font-size: 16px;
    color: #212121;
}

.fp-review-title {
    padding-bottom: 10px;
}

.fp-review-title span {
    display: inline-block;
    background: #71c5e8;
    color: #fff;
    text-align: center;
    padding: 0 5px;
    font-size: 16px;
}


.fp-review-title strong {
    font-size: 20px;
    font-weight: 500;
    color: #71c5e8;
    text-align: center;
    padding: 0 5px;
    font-size: 20px;
}

.fp-step .subPage-step {
    padding: 0 50px 50px;
}

.fp-step .subPage-step li {
    width: 25%;
}

/*point*/
.fp-point {
    margin-bottom: 60px;
}

.fp-point .subPage-h-blue {
    margin-bottom: 0;
}

.fp-point-item {
    background: #f1f9fd;
    padding: 30px 50px 0 50px;
    text-align: center;
}

.fp-point-item:last-child {
    padding-bottom: 50px;
}

.fp-point-eyecatch {
    font-size: 14px;
    border: 1px solid;
    line-height: 1;
    padding: 0 5px;
    position: relative;
    top: -2px;
}

.fp-point-item dt {
    color: #71c5e8;
    font-weight: 500;
}

.fp-point-title {
    font-size: 22px;
}

.fp-point-item p {
    line-height: 1.75;
    font-weight: 500;
}

.fp-point-item p strong {
    font-size: 18px;
    font-weight: 700;
}

/*mochimono*/
.fp-mochimono {
    background: #f9f9f9;
    padding: 30px 50px;
    text-align: center;
}

.fp-mochimono h3 {
    color: #71c5e8;
    font-size: 22px;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 15px;
}

.fp-mochimono p {
    line-height: 1.75;
    padding-bottom: 15px;
}

.fp-mochimono ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 500;
}

.fp-mochimono li {
    padding: 0 10px;
}

.zukai-link:after {
    content: "";
    display: block;
    clear: both;
}

.zukai-link-text {
    width: 75vw;
    padding: 50px 95px;
    background: #fff;
    float: right;
    position: relative;
    top: -130px;
    z-index: 2;
}

.zukai-link-text.sec-animation {
    animation: SlideInZukai 2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.zukai-text-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 50vw;
}

@keyframes SlideInZukai {
    0% {
        transform: translateX(75vw);
    }

    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width: 750px) {
    .fp-sodan-fukidashi {
        padding-bottom: 7vw;
    }

    .fp-onayami-box img {
        width: 100%;
        height: auto;
    }

    .fp-fukidashi-kyocho {
        font-size: 5vw;
    }

    .fp-onayami-box + .fp-onayami-box {
        margin-top: 5vw;
    }

    .fp-onayami .subPage-arrow {
        margin-bottom: 0;
    }

    /*member*/
    .fp-member-inner {
        display: block;
    }

    .fp-member-item {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .fp-member-img {
        margin-bottom: 0;
        width: 40%;
    }

    .fp-member-img img {
        width: 100%;
        height: auto;
    }

    .fp-member-text {
        width: 52%;
    }

    .fp-member-text h4 {
        font-size: 4.0vw;
        letter-spacing: 0.5vw;
        padding-bottom: 3vw;
    }

    .fp-member-name {
        width: 100%;
        padding: 4vw 3vw;
        right: inherit;
        left: -8vw;
    }

    .fp-member-name-post {
        padding-bottom: 1.5vw;
    }

    .fp-member-name-kanji {
        font-size: 4.8vw;
        letter-spacing: 0.5vw;
    }

    .fp-member-name span.fp-member-name-alphabet {
        display: none;
    }

    .fp-member-item:nth-child(2) {
        flex-direction: row-reverse;
        padding-top: 8vw;
    }

    .fp-member-item:nth-child(2) .fp-member-name {
        right: -8vw;
        left: inherit;
        bottom: -1px;
    }

    /*review*/
    .fp-review .subPage-fukidashi-text {
        text-align: left;
        padding: 3.5vw;
    }

    .fp-review-title {
        padding-bottom: 2vw;
    }

    .fp-review-title span {
        padding: 0 2vw 0.5vw 2vw;
        font-size: 3.0vw;
    }

    .fp-review-title strong {
        padding: 1vw 0 0;
        font-size: 4.0vw;
        line-height: 1.25;
        display: block;
        text-align: left;
    }

    .fp-review .subPage-fukidashi-text p {
        font-size: 3.2vw;
    }

    /*step*/
    .fp-step .subPage-step {
        padding: 2vw 0 5vw;
    }

    /*point*/
    .fp-point {
        margin-bottom: 8vw;
    }

    .fp-point-item {
        padding: 5vw;
    }

    .fp-point-eyecatch {
        font-size: 3.2vw;
        line-height: 1;
        padding: 0 2vw;
        top: 0;
    }

    .fp-point-title {
        font-size: 4.6vw;
        display: block;
        line-height: 1.5;
    }

    .fp-point-item p strong {
        font-size: 4.0vw;
        line-height: 1.5;
    }

    .fp-point-item dt {
        padding-bottom: 3vw;
    }

    .fp-point-item:last-child {
        padding-bottom: 5vw;
        padding-top: 0;
    }

    /*mochimono*/
    .fp-mochimono {
        padding: 5vw;
    }

    .fp-mochimono h3 {
        font-size: 4.6vw;
        display: block;
        line-height: 1.5;
        margin-bottom: 3vw;
    }

    .fp-mochimono ul {
        display: block;
        text-align: left;
    }

    .fp-mochimono li {
        padding: 0;
        line-height: 1.5;
    }

    .fp-mochimono li + li {
        padding-top: 2vw;
    }

    /*priceList*/
    .subPage-priceList {
        letter-spacing: 0.2vw;
    }

    .subPage-priceList th,
    .subPage-priceList td {
        padding: 2vw;
        white-space: inherit;
    }

    .subPage-priceList tr:nth-child(1) th {
        white-space: nowrap;
    }

    .subPage-priceList tr:nth-child(1) th:nth-child(2) {
        width: 22vw;
    }

    /*zukai*/
    .zukai-link-img {
        width: 92vw;
        height: 28vw;
        display: flex;
        justify-content: center;
    }

    .zukai-link-img img {
        width: auto;
        height: 28vw;
    }

    .zukai-link-text {
        padding: 5vw 8vw;
        top: -45px;
    }

    .zukai-text-inner {
        display: block;
        width: 100%;
    }

    .zukai-text-inner .top-head-lv02 span {
        padding-bottom: 5vw;
    }
}

/* ------------------------------------------
  sub Education
--------------------------------------------- */
.ed-lead {
    text-align: center;
    line-height: 1.75;
}

.ed-lead-small {
    padding-bottom: 20px;
}

.ed-lead-large {
    font-size: 190%;
    letter-spacing: 4px;
}

.ed-osusume-item + .ed-osusume-item {
    padding-top: 40px;
}

.ed-osusume-item ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

.ed-osusume-item li {
    width: 25%;
}

.ed-osusume-item img {}

.ed-osusume-item figcaption {
    padding-top: 15px;
}

/*bunrui*/
.ed-bunrui {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.ed-bunrui > li {
    width: 23%;
    background: #fff;
}

.ed-bunrui dt {
    color: #fff;
    font-weight: 500;
    border-radius: 4px 4px 0 0;
}

.ed-bunrui-item-green dt {
    background: #64b47a;
}

.ed-bunrui-item-green dd {
    color: #64b47a;
}

.ed-bunrui-item-blue dt {
    background: #71c5e8;
}

.ed-bunrui-item-blue dd {
    color: #71c5e8;
}

.ed-bunrui-item-orange dt {
    background: #eeb13d;
}

.ed-bunrui-item-orange dd {
    color: #eeb13d;
}

.ed-bunrui-item-purple dt {
    background: #b081c2;
}

.ed-bunrui-item-purple dd {
    color: #b081c2;
}

.ed-bunrui dd ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    padding: 10px 20px;
}

.ed-bunrui dd li {
    width: 48%;
    line-height: 1.5;
    padding: 3px 0;
    letter-spacing: 0;
}

/*reason*/
.ed-reason-lead {
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.75;
}

.ed-reason-lead span {
    font-weight: 700;
}

/*subPage-step*/
.ed-step .subPage-step {
    padding: 0 50px 50px;
}

.ed-step li + li:before {
    left: -75px;
}

.ed-step .subPage-step-text {
    text-align: center;
}

.ed-step .subPage-step-img-fukidashi {
    right: -60px;
}

@media screen and (max-width: 750px) {
    .ed-lead-small {
        padding-bottom: 3vw;
    }

    .ed-lead-large {
        font-size: 135%;
        letter-spacing: 0.5vw;
    }

    .ed-osusume-item ul {
        flex-wrap: wrap;
    }

    .ed-osusume-item li {
        width: 50%;
    }

    .ed-osusume-item + .ed-osusume-item {
        padding-top: 8vw;
    }

    .ed-bunrui {
        font-size: 3vw;
        flex-wrap: wrap;
    }

    .ed-bunrui > li {
        width: 48%;
        margin-bottom: 4vw;
    }

    .ed-bunrui dd ul {
        padding: 2vw;
    }

    .ed-bunrui dd li {
        width: 48%;
        padding: 0.5vw 0;
    }

    .ed-reason-arrow,
    .ed-reason-lead {
        margin-bottom: 4vw;
    }

    .ed-reason-fukidashi + .ed-reason-fukidashi {
        margin-top: 4vw;
    }

    .ed-step .subPage-step-text {
        text-align: left;
    }

    .ed-step .subPage-step {
        padding: 2vw 0 5vw;
    }

    .ed-step li + li:before {
        left: 50%;
    }

}

/* ------------------------------------------
  sub PR
--------------------------------------------- */
.pr-lead {
    text-align: center;
    line-height: 1.5;
    padding-bottom: 40px;
}

@media screen and (max-width: 750px) {
    .pr-lead {
        padding-bottom: 4vw;
    }
}
