@charset "utf-8";

body {
    min-width: 320px;
}

/* グローバル
====================================================*/
.campaign-fjcloud *,
.campaign-fjcloud *::before,
.campaign-fjcloud *::after {
    box-sizing: border-box;

}

.campaign-fjcloud img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}


/* 強制改行
====================================================*/
.campaign-fjcloud br.d-pc {
    display: block;
}

.campaign-fjcloud br.d-none-pc {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .campaign-fjcloud br.d-pc {
        display: none;
    }
}

@media only screen and (max-width: 930px) {
    .campaign-fjcloud br.d-btb {
        display: block;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 768px) {
    .campaign-fjcloud br.d-tb {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .campaign-fjcloud br.d-sp {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .campaign-fjcloud br.d-none-sp {
        display: none;
    }
}

@media screen and (min-width: 821px) {
    .pc {
        display: inline;
    }

    .sp {
        display: none;
    }
}

@media screen and (max-width: 820px) {
    .pc {
        display: none;
    }

    .tab {
        display: inline;
    }
}

@media screen and (max-width: 550px) {
    .pc {
        display: none;
    }

    .sp {
        display: inline;
    }
}

/* ボタン
====================================================*/
.campaign-fjcloud .lyt-btn {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .campaign-fjcloud .lyt-btn {
        padding: 0;
    }
}


@media only screen and (max-width: 480px) {
    .campaign-fjcloud .lyt-btn>* {
        width: 100%;
    }
}

.campaign-fjcloud a.btn {
    position: relative;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    padding: 24px 38px;
    color: #000;
    background: rgba(255, 255, 255, 1);
}

.campaign-fjcloud a.btn>.desc {
    font-weight: 800;
    flex-grow: 1;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud a.btn>.desc {
        font-weight: 800;
        flex-grow: 1;
        font-size: 1.35rem;
    }
}


.campaign-fjcloud a.btn.fdfbtn {
    background: rgba(216, 0, 132, 1);
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
}

.campaign-fjcloud a.btn.fdfbtn:hover {
   opacity: .65;
}

.campaign-fjcloud a.btn.fdfbtn .desc {
    color: #fff !important;
    font-size: 1.5rem;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud a.btn.fdfbtn .desc {
        font-size: 1.25rem;
    }
}

.campaign-fjcloud a.btn>.icon {
    position: relative;
    margin-left: 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

.campaign-fjcloud a.btn .icon::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #5f5f5f;
    opacity: 0;
    z-index: 0;
}

.campaign-fjcloud a.btn .icon svg {
    fill: #5f5f5f;
    position: absolute;
    top: 0;
    left: 0;
}

.campaign-fjcloud a.btn .icon svg .arrow {
    fill: #bcbcbc;
}

.campaign-fjcloud a.btn.cvbtn .icon svg .arrow {
    fill: #3c3c3c;
}

.campaign-fjcloud a.btn .icon svg .circle {
    width: 100%;
    height: 100%;
    transform-origin: center;
    fill: #fff;
    stroke: #bcbcbc;
    stroke-width: 1px;
}

.campaign-fjcloud a.btn .icon svg .arrow {
    transform: translateX(0);
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.campaign-fjcloud a:hover .btn .icon::before {
    opacity: .1;
}

.campaign-fjcloud a.btn:hover .icon::before {
    opacity: .1;
    animation: arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1);
}

.campaign-fjcloud a.btn:hover .icon svg .arrow {
    animation: arrow 1.5s forwards ease-in-out;
}

.campaign-fjcloud a.btn:hover .icon svg .circle {
    fill: #fff;
    stroke: #bcbcbc;
    stroke-width: 1;
    animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
}


.campaign-fjcloud a.btn.btn-trans .icon svg .circle {
    stroke: #fff;
}

.campaign-fjcloud a.btn.btn-trans:hover .icon svg .circle {
    stroke: #fff;
}

@keyframes arrow_bg {
    0% {
        opacity: .1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes arrow {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10% {
        opacity: 0;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    25% {
        opacity: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    40% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes circle {
    0% {
        stroke-dasharray: 0 300;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    10% {
        stroke-dasharray: 50 100;
    }

    20% {
        stroke-dasharray: 100 200;
    }

    30% {
        stroke-dasharray: 150 300;
    }

    40% {
        stroke-dasharray: 200 300;
    }

    60% {
        stroke-dasharray: 300 300;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.campaign-fjcloud .faq a:hover {
    opacity: .1;
}

/* タイポグラフィ
====================================================*/
.campaign-fjcloud h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.5;
}


@media only screen and (max-width: 480px) {
    .campaign-fjcloud h2 {
        font-size: 2rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 320px) {
    .campaign-fjcloud h2 {
        font-size: 1.125rem;
    }
}

.campaign-fjcloud h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud h3 {
        font-size: 1.25rem;
    }
}

.campaign-fjcloud p+h3 {
    margin-top: 32px;
}

.campaign-fjcloud p {
    font-size: 1rem;
}

.campaign-fjcloud h2.slash {
    line-height: 1.25;
    position: relative;
    display: inline-block;
}

.campaign-fjcloud h2.slash::before,
.campaign-fjcloud h2.slash::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 40px;
    margin-top: -20px;
    border-left: 4px solid #fff;
}

@media only screen and (max-width: 480px) {

    .campaign-fjcloud h2.slash::before,
    .campaign-fjcloud h2.slash::after {
        height: 26px;
        margin-top: -14px;
    }
}


.campaign-fjcloud h2.slash::before {
    left: -24px;
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

.campaign-fjcloud h2.slash::after {
    right: -20px;
    -webkit-transform: rotate(28deg);
    -ms-transform: rotate(28deg);
    -o-transform: rotate(28deg);
    transform: rotate(28deg);
}

.campaign-fjcloud .trial ul.caption li:before {
    content: '';
    background:
        rgb(0, 231, 239);
}


.campaign-fjcloud .caption {
    font-size: .8125rem;
}


.campaign-fjcloud ul.caption li {
    font-size: .8125rem;
}


/* セクション
====================================================*/
.campaign-fjcloud .section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 10px 64px;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .section-inner {
        padding: 30px 20px 20px !important;
    }
}


/* カラム設定
====================================================*/

/*4カラム*/
.campaign-fjcloud .lay-4col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
    .campaign-fjcloud .lay-4col {
        margin-right: 0px;
    }
}

.campaign-fjcloud .lay-4col li {
    width: 22.125%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

@media only screen and (max-width: 820px) {
    .campaign-fjcloud .lay-4col li {
        width: 46.25%;
    }
}


@media only screen and (max-width: 480px) {
    .campaign-fjcloud .lay-4col li {
        width: 100%;
        flex-direction: column;
        margin-top: 30px;
        margin-right: 0;
        padding: 20px;
    }

    .campaign-fjcloud .lay-4col>*:not(:first-child) {
        margin-top: 40px;
    }
}

/*3カラム*/
.campaign-fjcloud .lay-3col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



.campaign-fjcloud .lay-3col li {
    width: 29.5%;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    margin: 20px 0;
}

@media only screen and (max-width: 820px) {
    .campaign-fjcloud .lay-3col li {
        width: 100%;
        flex-direction: column;
        padding: 20px;
        margin: auto;
    }

}


/*2カラム*/
.campaign-fjcloud .lay-2col {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .campaign-fjcloud .lay-2col {
        flex-flow: column;
    }
}

.campaign-fjcloud .lay-2col .Lside {
    width: 50%;
    padding: 20px;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .lay-2col .Lside {
        padding: 20px 0;
    }
}


.campaign-fjcloud .lay-2col .Lside img {
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.25));
}

@media only screen and (max-width: 768px) {
    .campaign-fjcloud .lay-2col .Lside {
        width: 100%;
        justify-content: center;
    }
}

.campaign-fjcloud .lay-2col .Rside {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .campaign-fjcloud .lay-2col .Rside {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}


/* コンポーネント
====================================================*/
/*
KVエリア
----------------------------------------*/
.hero-area {

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(36, 0, 176, 1) 60%, rgba(0, 231, 239, 1));
}


.hero-area .content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}



.hero-area .content .content-inner {
    display: flex;
}

@media screen and (max-width: 820px) {
    .hero-area .content .content-inner {
        flex-direction: column;
    }
}



/*key-visual*/
.hero-area .content .content-inner .visual {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-area .visual>img,
.hero-area .visual>a>img {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media screen and (max-width: 1019px) {

    .hero-area .visual>img,
    .hero-area .visual>a>img {
        opacity: .5;
    }
}


.hero-area .visual img {
    min-width: inherit;
    max-width: 600px;
    height: auto;
    margin: 0 auto 0 0;
}


/*copy*/
.hero-area .content .content-inner .main-txt {
    flex-basis: 50%;
    padding-right: 20px;
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 30, 0.5));
}

@media screen and (max-width: 1440px) {
    .hero-area .content .content-inner .main-txt {
        padding: 0 10px;
    }
}

.hero-area .content .content-inner .main-txt .title {
    display: block;
    margin: 10px 0;
    width: 636px;
    height: 213px;
    background: url(/image/campaign-fjcloud-2506_02)no-repeat;
    background-size: 636px 213px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .hero-area .content .content-inner .main-txt .title {
        width: 547px;
        /*元の86%*/
        height: 183px;
        /*元の86%*/
        background-size: 547px 183px;
    }
}

@media screen and (max-width: 550px) {
    .hero-area .content .content-inner .main-txt .title {
        background-size: contain;
        width: auto;
        height: auto;
        padding-top: 33.49%;
        background-repeat: no-repeat;
        background-position: center center;
    }
}


.hero-area .content .content-inner .main-txt .kv_cvn {
    margin: 0 0 20px;
}

@media only screen and (max-width: 550px) {
    .hero-area .content .content-inner .main-txt .kv_cvn {
        display: flex;
        justify-content: center;
    }
}



.link-btn a {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.link-btn a:hover {
    opacity: .65;
}

@media only screen and (max-width: 820px) {

    .hero-area .content .content-inner .main-txt .kv_cvn img {
        width: 90%;
    }
}


.hero-area .attention {
    background: rgba(0, 0, 0, .75);
    z-index: 3;
}

.hero-area .attention>p {
    max-width: 1280px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    margin: auto;
    padding: 20px 10px;
    color: #fff
}

/* section01 こんなことで困っていませんか？
====================================================*/
.campaign-fjcloud .problems {
    background-color: #f3f3f3;
    padding-bottom: 20px;
}

.campaign-fjcloud .problems .section-inner {
    padding: 56px 10px 32px;
}


.campaign-fjcloud .problems .lay-3col {
    margin: 2rem 0 -20px;
}

.campaign-fjcloud .problems .lay-3col li {
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    padding: 50px 30px;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .campaign-fjcloud .problems .lay-3col li {
        margin: 10px 0;
    }
}

.campaign-fjcloud .problems ul.onayami-list li {
    position: relative;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 1.5rem 1rem;
    background: #FFE700;
    margin-bottom: 1rem;
    border-radius: 4px;
}




/* section02 解決します！
====================================================*/

.campaign-fjcloud .solution {
    position: relative;
    background: linear-gradient(180deg, rgb(216, 0, 132) 5%, rgb(255, 128, 0));
    margin: 0px auto -3px;
    padding: 0px;
    width: 100%;
    max-width: 100%;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .solution .section-inner {
        padding: 40px 20px 40px !important;
    }
}

.campaign-fjcloud .solution::before {
    position: absolute;
    content: "";
    right: 0;
    top: -1px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #f3f3f3 transparent transparent transparent;
    border-width: 64px 62px 0 62px;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .solution::before {
        border-width: 42px 40px 0 40px;
    }
}


.campaign-fjcloud .solution h2 {
    margin-top: 30px;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .solution h2 {
        font-size: 2rem;
        margin: 0;
    }
}

.campaign-fjcloud .solution h2 span.sholder {
    font-size: 1.5rem;
    border-radius: 100vh;
    display: inline-block;
    margin-bottom: 10px;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .solution h2 span.sholder {
        font-size: 1.25rem;
    }
}

@media only screen and (max-width: 320px) {
    .campaign-fjcloud .solution h2 span.sholder {
        font-size: 1rem;
    }
}


.campaign-fjcloud .solution h3 {
    position: relative;
    padding: 2rem 0 .25rem 7rem;
    border-bottom: 3px solid #FF8000;
    margin-bottom: 2rem;
    font-weight: 800;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .solution h3 {
        font-size: 1.5rem;
        padding: 1.5rem 0 0rem 5.45rem;
    }
}

.campaign-fjcloud .solution h3 span {
    font-size: 5rem;
    line-height: 1;
    position: absolute;
    bottom: -.25rem;
    left: 0;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .solution h3 span {
        font-size: 4rem;
    }
}

.campaign-fjcloud .solution .lay-2col {
    margin-top: 2rem;
    display: flex;
    background: rgba(255, 255, 255, 1);
    padding: 2rem;
    border-radius: 4px;
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 30, 0.5));

}

@media only screen and (max-width: 550px) {
    .campaign-fjcloud .solution .lay-2col {
        padding: 1rem;
    }
}

.campaign-fjcloud .solution .lay-2col:nth-child(even) {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
    .campaign-fjcloud .solution .lay-2col:nth-child(even) {
        flex-direction: column;
    }
}


.campaign-fjcloud .solution .lay-2col .Rside img {
    max-width: 80%;
}

/* section04　無料トライアル実施中！
====================================================*/

.campaign-fjcloud .trial-point {
    background: #3c3c3c;
}

.campaign-fjcloud .trial-point h2 {
    margin-top: 8px;
    /*font-size: 4rem;*/
    line-height: 1.125;
    margin-bottom: 1rem;
    color: #fff
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .trial-point h2 {
        font-size: 2rem;
        margin: 0 0 1rem;
    }
}

.campaign-fjcloud .trial-point p.sholder {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}


.campaign-fjcloud .trial-point a.btn.more {
    border-radius: 0;
    padding: 16px 24px;
    border: 1px solid #dcdcdc;
    filter: drop-shadow(1px 1px 5px rgba(109, 110, 112, 0.25));
}

.campaign-fjcloud .trial-point a.btn.nextstory {
    border: 3px solid rgb(255, 231, 0);
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.25));
}

.campaign-fjcloud .trial-point .lay-3col li {
    width: 30.125%;
    background: #fff;
    padding: 20px 20px 40px;
    border-radius: 4px;
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 30, 0.5));
}

@media only screen and (max-width: 1122px) {
    .campaign-fjcloud .trial-point .lay-3col li {
        width: 46.25%;
    }
}



@media only screen and (max-width: 820px) {
    .campaign-fjcloud .trial-point .lay-3col li {
        width: 100%;
        flex-direction: column;
        margin: 30px 0;
        padding: 2rem 20px;
    }
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .trial-point .lay-3col li {
        margin: 20px 0;
    }
}

.campaign-fjcloud .trial-point dt {
    position: relative;
    font-size: 1.25rem;
    font-weight: 800;
    vertical-align: bottom;
    display: inline-block;
    margin-left: -42px;
    padding: 1rem 3rem;
    color: #fff;
    border-radius: 0 100vh 100vh 0;
    background: #2500b0;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}

@media only screen and (max-width: 800px) {
    .campaign-fjcloud .trial-point dt {
        margin-left: -31px;
    }
}


.campaign-fjcloud .trial-point dt:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    border-top: 10px solid #10014c;
    border-left: 10px solid transparent;
}


.campaign-fjcloud .trial-point dd.title {
    font-size: 1.5rem !important;
    font-weight: 800;
    padding: 20px 0;
}


.campaign-fjcloud .trial-point dd>p {
    padding-bottom: 10px;
}



/* section05　無料トライアルご利用までの流れ
====================================================*/

.campaign-fjcloud .trial-flow {
    background: #f3f3f3;
}

.campaign-fjcloud .trial-flow h2 {
    margin-bottom: 0;
}


.campaign-fjcloud .trial-flow h3 {
    font-size: 1.125rem;
    font-weight: 800;
    border-bottom: 3px solid #008224;
    padding: 0.3em 0;
    margin-bottom: 10px;
    position: relative;
}

.campaign-fjcloud .trial-flow h3::before {
    content: '';
    background-color: #f3f3f3;
    width: 13px;
    height: 3px;
    position: absolute;
    left: 30px;
    bottom: -3px;
}

.campaign-fjcloud .trial-flow h3::after {
    content: '';
    background-color: #008224;
    width: 20px;
    height: 3px;
    transform: rotate(50deg);
    position: absolute;
    left: 25px;
    bottom: -10px;
}

.campaign-fjcloud .trial-flow .lay-3col li.flow-panel {
    width: 26.125%;
    padding: 10px;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 1);
    padding: 2rem;
    border-radius: 4px;
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 30, 0.5));


}

@media only screen and (max-width: 980px) {
    .campaign-fjcloud .trial-flow .lay-3col li.flow-panel {
        width: 100%;
    }

    .campaign-fjcloud .trial-flow .lay-3col li.flow-panel .Lside {
        justify-content: center;
    }
}

.campaign-fjcloud .trial-flow .lay-3col>*:nth-child(even) {
    flex-basis: 8%;
    justify-content: center;
    align-items: center;
    background: none;
}

@media only screen and (max-width: 980px) {
    .campaign-fjcloud .trial-flow .lay-3col>*:nth-child(even) {
        flex-basis: inherit;
        width: 100%;
    }
}

.campaign-fjcloud .trial-flow .lay-3col li>.lay-2col {
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

@media only screen and (max-width: 980px) {
    .campaign-fjcloud .trial-flow .lay-3col li>.lay-2col {
        flex-direction: row;
    }
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .trial-flow .lay-3col li>.lay-2col {
        flex-direction: column;
    }
}


.campaign-fjcloud .trial-flow .lay-3col li>.lay-2col li {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
}


.title_ballon {
    font-size: 1.5rem !important;
    font-weight: 800;
    border-bottom: 3px solid #008225;
    padding: 0;
    margin-bottom: 10px;
    position: relative;
}

.title_ballon::before {
    content: '';
    background-color: #fff;
    width: 20px;
    height: 3px;
    position: absolute;
    left: 30px;
    bottom: -3px;
}

.title_ballon::after {
    content: '';
    background-color: #008225;
    width: 20px;
    height: 3px;
    transform: rotate(50deg);
    position: absolute;
    left: 25px;
    bottom: -10px;
}


.campaign-fjcloud .trial-flow .lay-3col dl {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 980px) {
    .campaign-fjcloud .trial-flow .lay-3col dl {
        align-items: flex-start;
    }
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .trial-flow .lay-3col dl {
        align-items: center;
    }
}

.campaign-fjcloud .trial-flow .lay-3col li>.lay-2col .Rside.imgbox {
    justify-content: center;
}

.campaign-fjcloud .trial-flow .lay-3col li>.lay-2col .Rside.imgbox img {
    width: 55%;
}


.campaign-fjcloud .trial-flow dt.title {
    font-size: 1.5rem !important;
    font-weight: 800;
    padding-bottom: 20px;
}


.campaign-fjcloud .trial-flow dd {
    display: flex;
    justify-content: center;
}

.campaign-fjcloud .trial-flow a.btn_black {
    display: inline-block;
    background: #008224;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    filter: drop-shadow(1px 1px 5px rgba(109, 110, 112, 0.25));
}


.campaign-fjcloud .trial-flow a.btn_black:hover {
    opacity: .65;
}

.arrow-round {
    position: relative;
    display: block;
    width: 46px;
}

.arrow-round::before {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    display: block;
    width: 30px;
    height: 6px;
    border-radius: 10px;
    background-color: #008224;
    transform: rotate(-45deg);
}

.arrow-round::after {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 0;
    display: block;
    width: 30px;
    height: 6px;
    border-radius: 10px;
    background-color: #008224;
    transform: rotate(45deg);
}

@media only screen and (max-width: 980px) {
    .arrow-round::before {
        transform: rotate(-135deg);
        top: 50%;
        left: 0%;
    }
}

@media only screen and (max-width: 980px) {
    .arrow-round::after {
        transform: rotate(135deg);
        top: 50%;
        left: 40%;
    }
}




/* section06　無料トライアル適用期間例
====================================================*/

.campaign-fjcloud .trial-case h2 {
    margin-bottom: 2rem;
}

.campaign-fjcloud .imgbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 820px) {
    .campaign-fjcloud .trial-case .imgbox>img {
        width: 55%;
    }
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .trial-case .imgbox>img {
        width: 85%;
    }
}


/* cv-default
====================================================*/
.campaign-fjcloud .cv-default {
    margin: 0px auto -3px;
    padding: 0px;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(36, 0, 176, 1) 60%, rgba(0, 231, 239, 1));
}


.campaign-fjcloud .cv-default .section-inner {
    padding: 20px 0 !important;
}

.campaign-fjcloud .cv-default .lay-2col li {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}


.campaign-fjcloud .cv-default .lay-2col li.Rside .caption {
    padding-left: 20px;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .campaign-fjcloud .cv-default .lay-2col li.Rside .caption {
        padding-left: 0;
    }
}

.campaign-fjcloud .cv-default .lay-2col li.Rside .caption>a {
    color: #fff;
}



@media only screen and (max-width: 480px) {
    .campaign-fjcloud .cv-default .lay-2col li.Rside {
        width: fit-content;
        padding: 0;
    }
}


.campaign-fjcloud .cv-default .lay-2col li.Lside p {
    font-size: 1.5rem;
}


.campaign-fjcloud #cv-second.cv-default .lay-2col {
    padding: 20px 0 30px;
}


.campaign-fjcloud .cv-default .lay-2col li.Lside span.caption {
    padding-left: 30px;
}

.campaign-fjcloud .cv-default .lay-2col li.Lside span.caption>a {
    color: #fff;
}


/* cv-a:orange
====================================================*/
.campaign-fjcloud .cv-a {
    position: relative;
    display: flex;
}

.campaign-fjcloud .cv-a {
    background: url("/image/FJ_SB_H5_T4_RGB")no-repeat;
    background-size: cover;
}

.campaign-fjcloud .cv-a .section-inner {
    padding: 2rem 10px;
}


.campaign-fjcloud .cv-a .section-inner .lay-2col {
    margin-top: 0;
}

.campaign-fjcloud .cv-a .section-inner .lay-2col h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 1rem;
}


.campaign-fjcloud .cv-a .section-inner .lay-2col p {
    padding-bottom: 20px;
}


.campaign-fjcloud .cv-a .section-inner .lay-2col .Lside p+.imgbox {
    padding-bottom: 20px;
}

.campaign-fjcloud .cv-a .list-a {
    background: rgba(0, 0, 0, .25);
    max-width: 392px;
    padding: 20px;
    border-radius: 4px;
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.25));
}

@media only screen and (max-width: 768px) {

    .campaign-fjcloud .cv-a .list-a {
        margin: auto;
    }
}

@media only screen and (max-width: 480px) {

    .campaign-fjcloud .cv-a .list-a {
        max-width: 310px;
    }
}


.campaign-fjcloud .cv-a .list-a li {
    margin-top: 5px;
    padding-left: 15px;
    position: relative;
}

.campaign-fjcloud .cv-a .list-a li:before {
    content: ' ';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
    position: absolute;
    left: 0px;
    top: 6px;
}

.campaign-fjcloud .cv-a .list-a li:first-child {
    left: -20px;
}

.campaign-fjcloud .cv-a .list-a li p {
    font-weight: 800;
}

.campaign-fjcloud .cv-a .list-a li:first-child:before {
    content: '';
    width: 0;
    height: 0;
    border-radius: 50%;
    background: none;
    position: absolute;
    left: -15px;
    top: 6px;
}


.campaign-fjcloud .cv-a a.btn {
    border-radius: 0;
    background: rgba(255, 255, 255, 1);
    filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.25));

}

.campaign-fjcloud .cv-a .lay-2col .Lside {
    width: 70%;
    padding: 20px 40px 20px 0;
}

@media only screen and (max-width: 820px) {
    .campaign-fjcloud .cv-a .lay-2col .Lside {
        width: 100%;
        padding: 20px 0;
    }
}



.campaign-fjcloud .cv-a .lay-2col .Rside {
    width: 30%;
}

@media only screen and (max-width: 820px) {
    .campaign-fjcloud .cv-a .lay-2col .Rside {
        display: none;
    }
}


.campaign-fjcloud .cv-a .lyt-btn {
    justify-content: flex-start;
}



/*パーツアニメーション設定
====================================================*/

.fade-in {
    opacity: 0;
    transition: opacity .75s
}

.fade-in.is-animation {
    opacity: 1
}

.slide-up-in>* {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: opacity 1.1s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 1.1s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: opacity 1.1s, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 1.1s, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 1.1s, transform 1s cubic-bezier(0.19, 1, 0.22, 1),
        -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform
}

.slide-up-in.is-animation>* {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.slide-up-in.is-animation>*:nth-child(1) {
    -webkit-transition-delay: .35s;
    -o-transition-delay: .35s;
    transition-delay: .35s
}

.slide-up-in.is-animation>*:nth-child(2) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s
}

.slide-up-in.is-animation>*:nth-child(3) {
    -webkit-transition-delay: .65s;
    -o-transition-delay: .65s;
    transition-delay: .65s
}

.slide-up-in.is-animation>*:nth-child(4) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s
}

.slide-up-in.is-animation>*:nth-child(5) {
    -webkit-transition-delay: .95s;
    -o-transition-delay: .95s;
    transition-delay: .95s
}

.slide-up-in.is-animation>*:nth-child(6) {
    -webkit-transition-delay: 1.1s;
    -o-transition-delay: 1.1s;
    transition-delay: 1.1s
}

.slide-up-in.is-animation>*:nth-child(7) {
    -webkit-transition-delay: 1.25s;
    -o-transition-delay: 1.25s;
    transition-delay: 1.25s
}

.slide-up-in.is-animation>*:nth-child(8) {
    -webkit-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s
}

.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*左から右*/
.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 128, 0, .25);
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0;
}