@charset "utf-8";
/*共通設定*/
    /*<div class="cta-btn-wrap">*/
.cta-btn-wrap {
    text-align: center;
}

.cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 50vh;
    z-index: 1;
}
    
.cta-btn::after {
    animation: 3s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 75%);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 2;
    transform: skewX(-15deg);
}

@keyframes shine {
    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.cta-btn-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-small-txt {
    font-size: 12px;
}


    /*ぼかしアニメーション*/
.inview-blur {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    /* blur が付いたらぼかし解除*/
.blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    transition: 0.8s;
}

    /* ぼかし keyframes*/
@-webkit-keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

    /*方向フェードイン */
.inview-anim {
    opacity: 0;
    filter: blur(15px);
    transition: 0.8s ease;
}

    /* 下から */
.fade-up {
    transform: translateY(30px);
}

.fade-up.blur {
    transform: translateY(0);
}

    /* 上から */
.fade-down {
    transform: translateY(-30px);
}

.fade-down.blur {
    transform: translateY(0);
}

    /* 左から */
.fade-left {
    transform: translateX(-30px);
}

.fade-left.blur {
    transform: translateX(0);
}

    /* 右から */
.fade-right {
    transform: translateX(30px);
}

.fade-right.blur {
    transform: translateX(0);
}

    /*下からふわっとアニメーション*/
.scr-target {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 1s ease, transform 1s ease;
}

.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

    /*スクロールフェードイン*/
.js-fadeLeft {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(-16px); /* 下に100pxの位置から */
    transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeLeft.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: 0.2s; /* フェード開始を0.2秒遅らせる */
}

.js-fadeRight {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(16px); /* 下に100pxの位置から */
    transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeRight.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: 0.2s; /* フェード開始を0.2秒遅らせる */
}


    /*<div class="h2-wrap">*/
.h2-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-bottom: 40px;
}

.h2-en {
    position: relative;
    background: linear-gradient(180deg,
        #FF91A0 0%,
        #FC2663 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-family: "Playfair Display SC", serif;
    font-weight: 700;
    padding-bottom: 4px;
}

.h2-en::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-bottom: dotted 4px #DF5C99;
}

.h2-wrap h2 {
    width: 100%;
    font-weight: 800;
    font-size: 20px;
    font-style: italic;
}
/*終わり*/


/*<div class="bg">*/
.bg {
    position: relative;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-in {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bg-l {
    width: calc(50% - 300px);
    height: 100%;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.bg-logo {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}

.bg-r {
    position: relative;
    width: calc(50% - 300px);
    height: 100%;
    padding-left: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.bg .cta-btn {
    max-width: 400px;
    width: 100%;
}
/*終わり*/


/*<div class="lp-wrap">*/
.lp-wrap {
    position: relative;
    background-color: #FFF;
    overflow: hidden;
    z-index: 2;
}
/*終わり*/


/*<section class="fv">*/
.fv{
    position: relative;
    padding: 16px 24px;
}

.fv-in {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fv-txt-wrap-01 {
    position: relative;
    z-index: 2;
}

.fv-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.fv-logo-01 {
    max-width: 200px;
    width: 100%;
}

.fv-logo-txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    background: linear-gradient(135deg,
        #FF91A0 0%,
        #FC2663 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
}

.fv-h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fv-h1-img {
    max-width: 460px;
    width: 100%;
}

.fv-ribbon-txt-wrap {
    position: relative;
    margin: 0 -64px;
}

.fv-ribbon {
    width: 100%;
}

.fv-ribbon-txt {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 440px;
    width: 100%;
}

.fv-swiper {
    margin: -80px -24px 0 -24px;
}

.fv .swiper-wrapper {
    transition-timing-function: linear !important;
}

.fv-swiper-img {
    border: solid 4px #fff;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(223, 92, 153, 0.5);
}

.fv-txt-wrap-02 {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv-logo-flex {
    border-radius: 16px;
    padding: 16px;
    border: solid 1px #FC2663;
    background-color: rgba(247,202,215,0.6);
    box-shadow: 0 2px 6px rgba(223, 92, 153, 0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 8px;
}

.fv-logo-con {
    padding: 16px 8px;
    width: 32%;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(223, 92, 153, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.fv-logo-title {
    font-size: 14px;
    font-weight: 800;
}

.fv-logo-02 {
    max-height: 100px;
}

.fv-small-txt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.fv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
    z-index: -1;
}
/*終わり*/


/*<section class="about-lead">*/
.about-lead {
    position: relative;
    background-image: url(../img/about_lead_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-lead-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.about-lead-h3 {
    text-align: center;
}

.about-lead-h3-img {
    max-width: 400px;
    width: 100%;
}

.about-lead-chance-wrap {
    text-align: center;
}

.about-lead-chance {
    max-width: 480px;
    width: 100%;
}

.about-lead-txt {
    line-height: 2;
}

.about-lead-txt .underline {
    border-bottom: dotted 2px #DF5C99;
    padding-bottom: 2px;
}

.about-lead-txt .pink-txt {
    color: #FC336B;
}

.about-lead .round-top {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
/*終わり*/


/*<section class="about">*/
.about {
    position: relative;
    background-color: #FFF9FC;
}

.about-in {
    position: relative;
    z-index: 2;
}

.about-wrap-01 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-h3-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.about-h3 {
    background: linear-gradient(180deg,
        #FC2663 0%,
        #FF91A0 50%,
        #FC2663 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.5;
}   

.about-h3 span {
    font-size: 30px;
}

.about-cyber-logo-wrap {
    position: relative;
    text-align: center;
}

.about-cyber-logo {
    max-width: 480px;
    width: 100%;
}

.about-txt {
    text-align: center;
    font-weight: 900;
    font-size: 22px;
}

.about-txt span {
    color: #FC336B;
    font-size: 28px;
}

.about-logo-area {
    position: relative;
    margin: 0 -24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.about-logo-h3 {
    display: inline-block;
    width: max-content;
    margin: 0 auto;
    position: relative;
    height: 48px;
    line-height: 48px;
    text-align: center;
    padding: 0 30px;
    font-size: 24px;
    background: linear-gradient(90deg,
            #EB6DA5 0%,
            #FDB2D3 50%,
            #EB6DA5 100%);
    color: #FFF;
    text-shadow: 0 0 4px #F36695;
    font-style: italic;
}

.about-logo-h3:before,
.about-logo-h3:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}

.about-logo-h3:before {
    top: 0;
    left: 0;
    border-width: 24px 0px 24px 15px;
    border-color: transparent transparent transparent #FFF9FC;
    border-style: solid;
}

.about-logo-h3:after {
    top: 0;
    right: 0;
    border-width: 24px 15px 24px 0px;
    border-color: transparent #FFF9FC transparent transparent;
    border-style: solid;
}

.about-logo-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.about-logo-con {
    padding: 16px 8px;
    width: 32%;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(223, 92, 153, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.about-logo-title {
    font-size: 14px;
    font-weight: 800;
    font-family: "Noto Sans JP", sans-serif;
}

.about-logo {
    max-height: 100px;
}

.about-wrap-02 {
    margin-top: 40px;
}

.about-speed {
    position: relative;
    text-align: center;
}

.about-ribbon-txt-wrap {
    position: relative;
    margin: 0 -40px;
    z-index: 2;
}

.about-swiper {
    margin-top: -64px;
}

.about .swiper-wrapper {
    transition-timing-function: linear !important;
}

.about-swiper-img {
    border: solid 4px #fff;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(223, 92, 153, 0.5);
}

.about-ribbon-bg {
    position: absolute;
    top: 25%;
    right: -80px;
    z-index: 1;
    max-width: 440px;
    width: 100%;
}

.pink-circle-01 {
    position: absolute;
    bottom: 35%;
    right: -80px;
    z-index: 1;
    max-width: 200px;
    width: 100%;
}

.pink-circle-02 {
    position: absolute;
    bottom: 4%;
    left: -80px;
    z-index: 1;
    max-width: 200px;
    width: 100%;
}
/*終わり*/


/*<section class="why">*/
.why {
    position: relative;
    background-image: url(../img/why_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0;
}

.why .h2-en {
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
}

.why-con-wrap {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}

.why-con {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    padding: 80px 16px 16px 16px;
    box-shadow: 0 1px 4px rgba(223, 92, 153, 0.5);
}

.why-h3 {
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 2;
    max-width: 480px;
    width: 100%;
}

.why-img-flex-01 {
    position: relative;
    width: 100%;
    height: 200px;
}

.why-img-01 {
    position: absolute;
    top: 0;
    left: -16px;
    z-index: 1;
    max-width: 270px;
    width: 100%;
    transform: rotate(-8deg);
}

.why-img-02 {
    position: absolute;
    bottom: 0;
    right: -16px;
    z-index: 2;
    max-width: 270px;
    width: 100%;
    transform: rotate(4deg);
}

.why-img-wrap {
    text-align: center;
}

.why-img-03 {
    max-width: 440px;
    width: 100%;
    transform: rotate(5deg);
}

.why-txt-wrap {
    margin-top: 24px;
    font-weight: 700;
}

.why-img-flex-02 {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 24px;
}

.why-img-flex-03 {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: right;
    flex-wrap: wrap;
    gap: 24px;
}

.why-img-04 {
    max-width: 240px;
    width: 100%;
}

.why-img-05 {
    max-width: 140px;
    width: 100%;
}

.why-img-06 {
    max-width: 240px;
    width: 100%;
}

.why-img-07 {
    max-width: 140px;
    width: 100%;
}

.why-chance-wrap {
    margin: 40px -40px 0;
}

.why-chance-img {
    vertical-align: bottom;
}

.why .round-bottom {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
/*終わり*/


/*<section class="benefit">*/
.benefit {
    position: relative;
}

.benefit-in-01 {
    position: relative;
    background-image: url(../img/benefit_bg_01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.benefit-h2 {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.benefit-h2-img {
    max-width: 440px;
    width: 100%;
}

.benefit-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.benefit-con {
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-h3-01-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.benefit-num-img {
    max-width: 64px;
    width: 100%;
}

.benefit-h3-01 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.benefit-h3-01 span {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(180deg,
        #FF91A0 0%,
        #FC2663 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-img-wrap {
    text-align: center;
}

.benefit-img {
    max-width: 320px;
    width: 100%;
}

.benefit-pink-line {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.benefit-txt {
    position: relative;
    text-align: center;
    font-weight: 700;
}

.benefit-txt span {
    color: #FC336B;
}

.benefit-in-02 {
    position: relative;
    background-image: url(../img/benefit_bg_02.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.benefit-h3-02 {
    margin: 0 -40px;
}

.benefit-and-wrap {
    margin-top: -60px;
    border: solid 4px #FF91A0;
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 16px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-bottom: 80px;
}

.cyber-logo {
    max-width: 200px;
    width: 100%;
}

.benefit-and-txt {
    font-size: 20px;
    font-weight: 800;
}

.benefit-and-txt span {
    color: #FC336B;
}

.benefit .swiper {
    transform: rotate(-8deg);
    margin: 0 -80px 8px -80px;
    padding-bottom: 8px;
}

.benefit .swiper-wrapper {
    transition-timing-function: linear !important;
}

.benefit .swiper-slide {
    height: auto;
}

.benefit .swiper-box {
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 4px 4px 0 #EB6DA5;
    transform: skewX(-10deg);
}

.benefit-swiper-img {
    max-height: 80px;
    transform: skewX(10deg);
}

.benefit .triangle-bottom {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.benefit .triangle-top {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}
/*終わり*/


/*<section class="join">*/
.join {
    position: relative;
    background-image: url(../img/join_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.join-lead-txt-wrap {
    margin: 0 -40px 24px;
}

.join .h2-en {
    font-size: 32px;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
}

.join-img-wrap {
    position: relative;
}

.join-img {
    border-radius: 8px;
}

.join-icon-flex {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.join-icon-con {
    position: relative;
    width: 25%;
    text-align: center;
}

.join-icon {
    max-width: 80px;
    width: 100%;
}

.join-icon-txt {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    line-height: 1;
    width: 100%;
    color: #F56294;
    font-weight: 900;
    text-shadow: 0 0 8px #fff;
    font-size: 16px;
}

.join-txt-wrap {
    margin-top: 88px;
}

.join-txt {
    text-align: center;
    line-height: 1.8;
    font-size: 24px;
}

.join-txt span {
    font-weight: 800;
    color: #FC336B;
}

.join .round-top {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
/*終わり*/


/*<section class="step">*/
.step {
    position: relative;
    background-color: #FFF9FC;
}

.step-in {
    position: relative;
    z-index: 2;
}

.step-wrap {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 64px;
}

.step-con {
    position: relative;
    border: solid 2px #FC2663;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    background-color: #fff;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.step-h3 {
    text-align: center;
    background: linear-gradient(180deg,
        #FF91A0 0%,
        #FC2663 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 900;
}

.step-img {
    max-height: 240px;
    height: 100%;
}

.step-txt {
    text-align: center;
}

.step-num-img {
    position: absolute;
    top: -30px;
    left: -30px;
    max-width: 100px;
    width: 100%;
}

.step .cta-btn-wrap {
    margin-top: 40px;
}

.step .pink-circle {
    position: absolute;
    z-index: 1;
    max-width: 200px;
    width: 100%;
}

.step .pink-circle-01 {
    top: 20%;
    right: -80px;
}

.step .pink-circle-02 {
    top: 40%;
    left: -80px;
}

.step .pink-circle-03 {
    top: 60%;
    right: -80px;
}

.step .pink-circle-04 {
    top: 80%;
    left: -80px;
}
/*終わり*/


/*<div class="cta">*/
.cta {
    position: relative;
    background-image: url(../img/cta_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-img-wrap {
    margin: 0 -40px;
}

.cta .round-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
/*終わり*/


/*追従ボタン*/
.fix-cta-btn {
    display: none;
}
/*終わり*/


/*1450px ~ 1025px*/
@media (max-width: 1450px) {
/*<section class="bg">*/
    .bg-l,
    .bg-r {
        display: none;
    }
/*終わり*/
}


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    /*<div class="cta-btn-wrap">*/
    .cta-btn {
        max-width: 360px;
        width: 100%;
    }

    .cta-small-txt {
        font-size: clamp(10px, 12vw / 5.99, 12px);
    }


    /*<div class="h2-wrap">*/
    .h2-en {
        font-size: clamp(32px, 40vw / 5.99, 40px);
    }

    .h2-wrap h2 {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }
/*終わり*/


/*<section class="fv">*/
    .fv {
        padding: 16px 3vw;
    }

    .fv-logo-01 {
        max-width: clamp(140px, 200vw / 5.99, 200px);
    }

    .fv-logo-txt {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .fv-h1-img {
        max-width: clamp(260px, 480vw / 5.99, 440px);
    }

    .fv-ribbon-txt-wrap {
        margin: 0 clamp(-48px, -64vw / 5.99, -64px);
    }

    .fv-ribbon-txt {
        max-width: clamp(240px, 440vw / 5.99, 440px);
    }

    .fv-swiper {
        margin: clamp(-64px, -80vw / 5.99, -80px) -3vw 0 -3vw;
    }

    .fv-logo-flex {
        padding: clamp(8px, 16vw / 5.99, 16px);
    }

    .fv-logo-con {
        width: 32.5%;
        padding: clamp(8px, 16vw / 5.99, 16px) clamp(0px, 8vw / 5.99, 8px);
    }

    .fv-logo-title {
        font-size: clamp(8px, 14vw / 5.99, 14px);
    }

    .fv-logo-02 {
        max-height: clamp(64px, 80vw / 5.99, 80px);
    }

    .fv-small-txt {
        font-size: clamp(10px, 14vw / 5.99, 14px);
    }
/*終わり*/


/*<section class="about-lead">*/
/*終わり*/


/*<section class="about">*/
    .about-h3 {
        font-size: clamp(15px, 24vw / 5.99, 24px);
    }   

    .about-h3 span {
        font-size: clamp(24px, 30vw / 5.99, 30px);
    }

    .about-txt {
        font-size: clamp(15px, 22vw / 5.99, 22px);
    }

    .about-txt span {
        font-size: clamp(20px, 28vw / 5.99, 28px);
    }

    .about-logo-area {
        margin: 0;
    }

    .about-logo-h3 {
        height: clamp(32px, 48vw / 5.99, 48px);
        line-height: clamp(32px, 48vw / 5.99, 48px);
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .about-logo-h3:before {
        border-width: clamp(16px, 24vw / 5.99, 24px) 0px clamp(16px, 24vw / 5.99, 24px) 15px;
    }

    .about-logo-h3:after {
        border-width: clamp(16px, 24vw / 5.99, 24px) 15px clamp(16px, 24vw / 5.99, 24px) 0px;
    }

    .about-logo-con {
        width: 32.5%;
        padding: 16px clamp(0px, 8vw / 5.99, 8px);
    }

    .about-logo-title {
        font-size: clamp(8px, 14vw / 5.99, 14px);
    }

    .about-logo {
        max-height: clamp(64px, 80vw / 5.99, 80px);
    }

    .about-wrap-02 {
        margin-top: clamp(24px, 40vw / 5.99, 40px);
    }

    .about-ribbon-txt-wrap {
        margin: 0 -3vw;
    }

    .about-ribbon-bg {
        right: clamp(-64px, -80vw / 5.99, -80px);
        max-width: clamp(260px, 320vw / 5.99, 320px);
    }
/*終わり*/


/*<section class="why">*/
    .why-con-wrap {
        gap: clamp(64px, 100vw / 5.99, 100px);
    }

    .why-con {
        padding-top: clamp(56px, 80vw / 5.99, 80px);
    }

    .why-h3 {
        top: clamp(-24px, -30vw / 5.99, -30px);
        max-width: clamp(320px, 400vw / 5.99, 400px);
    }

    .why-img-01,
    .why-img-02 {
        max-width: clamp(210px, 270vw / 5.99, 270px);
    }

    .why-img-04,
    .why-img-06 {
        max-width: clamp(180px, 240vw / 5.99, 240px);
    }

    .why-img-05,
    .why-img-07 {
        max-width: clamp(80px, 140vw / 5.99, 140px);
    }

    .why-chance-wrap {
        margin: 40px -3vw 0;
    }
/*終わり*/


/*<section class="benefit">*/
    .benefit-h2-img {
        max-width: clamp(300px, 400vw / 5.99, 400px);
    }

    .benefit-num-img {
        max-width: clamp(56px, 64vw / 5.99, 64px);
    }

    .benefit-h3-01 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

    .benefit-h3-01 span {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    .benefit-img {
        max-width: clamp(240px, 320vw / 5.99, 320px);
    }

    .benefit-h3-02 {
        margin: 0 -3vw;
    }

    .benefit-and-wrap {
        margin-bottom: clamp(48px, 80vw / 5.99, 80px);
    }

    .cyber-logo {
        max-width: clamp(160px, 200vw / 5.99, 200px);
    }

    .benefit-and-txt {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

    .benefit-swiper-img {
        max-height: clamp(56px, 80vw / 5.99, 80px);
    }
/*終わり*/


/*<section class="join">*/
    .join-lead-txt-wrap {
        margin: 0 -3vw clamp(16px, 24vw / 5.99, 24px);
    }

    .join .h2-en {
        text-align: center;
        line-height: 1;
        padding-bottom: 16px;
    }

    .join .join-h2 {
        font-size: clamp(15px, 16vw / 5.99, 16px);
    }

    .join-icon {
        max-width: clamp(64px, 80vw / 5.99, 80px);
    }

    .join-icon-txt {
        bottom: -10px;
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }

    .join-txt {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="step">*/
    .step-wrap {
        gap: clamp(40px, 64vw / 5.99, 64px);
    }

    .step-h3 {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    .step-img {
        max-height: clamp(160px, 240vw / 5.99, 240px);
    }

    .step-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .step-num-img {
        top: clamp(-16px, -30vw / 5.99, -30px);
        left: clamp(-8px, -30vw / 5.99, -30px);
        max-width: clamp(72px, 100vw / 5.99, 100px);
    }
/*終わり*/


/*<div class="cta">*/
    .cta-img-wrap {
        margin: 0 -3vw;
    }
/*終わり*/


/*追従ボタン*/
    .fix-cta-btn {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 1000;
        max-width: 600px;
        width: 100%;
        display: inline-block;
    }

    .fix-cta-btn.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

    .fix-cta-btn-img {
        display: block;
    }
/*終わり*/
}
