@charset "utf-8";
/*共通設定*/
    /*<a class="line-btn">*/
.line-btn-wrap {
    margin-top: 40px;
}

.line-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #77D13F;
    border-radius: 4px;
    padding: 12px 8px;
    border-radius: 8px;
    border: solid 1px #fff;
    box-shadow: 0 2px 5px rgba(102, 78, 163, 0.25);
    box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
}

    /*<div class="swiper">*/
.swiper-wrapper {
    transition-timing-function: linear !important;
}

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

.h2-en {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
    overflow: visible;
}

.h2-dot {
    max-width: 64px;
    width: 100%;
}

.h2-wrap h2 {
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

    /* ぼかしアニメーション*/
.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);
}

    /*カーテンを開くようなアニメーション*/
.visible {
    position: relative;
    overflow: hidden;
}

.visible::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* 必要なら微調整する */
    height: 100%;
    background: linear-gradient(90deg,
                #B465DA 0%,
                #CF6CC9 33%,
                #EE609C 66%,
                #EE609C 100%);
    transform-origin: right top;
    /* アニメーションの軸となる座標 */
    transition: 1s;
    /* 1秒かけてアニメーションする */
    z-index: 200;
}

.visible.effect::before {
    transform: scale(0, 1);
}

    /*下からふわっとアニメーション*/
.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秒遅らせる */
}

/*終わり*/  


/*<section class="bg">*/
.bg {
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg.png);
    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: 40px;
}

.bg-h1-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bg-h1-en {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1; 
}

.bg-h1-en span {
    font-size: 56px;
}

.bg-h1 {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    -webkit-text-stroke: 1px #404040;
}

.bg-h1 span {
    position: relative;
}

.bg-h1 span::before {
    right: 105%;
}

.bg-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
}

.bg-ul li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bg-ul li a {
    position: relative;
    padding-left: 24px;
}

.bg-ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../img/nav_li_circle.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.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-logo-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.bg-logo {
    max-width: 140px;
    width: 100%;
}

.bg-line-btn {
    max-width: 320px;
}
/*終わり*/


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


/*<div class="fix-area">*/
.fix-area {
    background: linear-gradient(135deg,
                #AEFCFE 0%,
                #FBC2D6 100%
                );
    max-width: 600px;
    width: 100%;
    height: 60px;
    padding: 8px 24px;
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 999;
}

.fix-area-in {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-btn-img {
    display: inline-block;
    max-width: 200px;
}

.fix-line-btn {
    max-width: 240px;
    padding: 8px;
    font-size: 16px;
}
/*終わり*/


/*<section class="fv">*/
.fv {
    margin-top: 60px;
}

.fv-in {
    width: 100%;
    height: 100%;
    position: relative;
}

.fv-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv-video-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
}

.fv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.fv-txt-png-01 {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
}

.fv-txt-wrap {
    padding: 0 40px;
    width: 100%;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.fv-txt-png-02-warp {
    position: relative;
}

.fv-txt-png-02 {
    width: 100%;
}

.fv-h2 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    background-color: #fff;
    font-size: 24px;
    font-weight: 600;
}

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

.fv-txt-03 {
    font-weight: 600;
    color: #fff;
    width: 32%;
    text-align: center;
    border: solid 2px #fff;
}
/*終わり*/


/*<div class="bg-wrap">*/
.bg-wrap {
    position: relative;
    background-image: url(../img/about_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-wrap::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 520px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    z-index: 3;
}

.bg-wrap .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
/*終わり*/


/*<section class="about">*/
.about {
    position: relative;
    z-index: 4;
    padding: 64px 80px 0 80px;
}

.about-h2-en {
    max-width: 240px;
    width: 100%;
}

.about-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: 600;
}

.about-txt-wrap .pink-txt {
    color: #EE609C;
}

.about-txt-01 {
    text-align: center;
    font-size: 20px;
}

.about-txt-01 span {
    font-size: 24px;
}

.about-txt-02-wrap {
    position: relative;
    margin: 0 -40px;
}

.about-txt-png {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 440px;
    width: 100%;
    display: inline-block;
}

.about-star-01 {
    position: absolute;
    top: 0;
    left: -40px;
    max-width: 72px;
    width: 100%;
}

.about-star-02 {
    position: absolute;
    top: 64px;
    right: -24px;
    max-width: 72px;
    width: 100%;
}
/*終わり*/


/*<section class="company">*/
.company {
    position: relative;
    z-index: 4;
    padding: 64px 80px;
}

.company-h2-en {
    max-width: 320px;
    width: 100%;
}

.company-swiper {
    margin: 0 -80px;
}

.company-swiper .swiper-slide-up {
    padding-top: 24px;
}

.company-swiper-img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-swiper-img-01 {
    border: solid 3px #DE4ED0;
    box-shadow: 0 0 14px #F3B6D8;
}

.company-swiper-img-02 {
    border: solid 3px #019A95;
    box-shadow: 0 0 14px #B6F3EA;
}

.company-swiper-img-03 {
    border: solid 3px #F0A52E;
    box-shadow: 0 0 14px #FAD9A8;
}

.company-swiper-img-04 {
    border: solid 3px #FE6FA7;
    box-shadow: 0 0 14px #FFEFF9;
}

.company-txt-area {
    position: relative;
}

.company-fire-img-wrap {
    margin: 0 -80px;
}

.company-txt-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    width: 100%;
}

.company-logo-flex {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.company-logo {
    max-width: 120px;
    width: 100%;
}

.company-txt {
    color: #fff;
    font-weight: 600;
}

.company-video-wrap {
    margin: 0 -40px;
}

.company-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*終わり*/


/*<section class="benefit">*/
.benefit-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 24px;
}

.benefit-con {
    position: relative;
    width: 48%;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-con-01 {
    border: solid 1px #F0A52E;
    background-color: #FFFBDE;
    box-shadow: 0 0 14px #FAD9A8;
}

.benefit-con-02 {
    border: solid 1px #FE6FA7;
    background-color: #FFEFF9;
    box-shadow: 0 0 14px #FEADD2;
}

.benefit-con-03 {
    border: solid 1px #DE4ED0;
    background-color: #EED6E7;
    box-shadow: 0 0 14px #F3B6D8;
}

.benefit-con-04 {
    border: solid 1px #019A95;
    background-color: #D1FEF9;
    box-shadow: 0 0 14px #B6F3EA;
}

.benefit-con-05 {
    border: solid 1px #414697;
    background-color: #CCE3FF;
    box-shadow: 0 0 14px #A8B1CD;
}

.benefit-con-06 {
    border: solid 1px #FF8330;
    background-color: #FFEEDE;
    box-shadow: 0 0 14px #FDE4D5;
}

.benefit-num {
    position: absolute;
    top: 0;
    left: 8px;
    color: #fff;
    font-size: 96px;
    line-height: 1;
    z-index: 1;
}

.benefit-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100px;
    width: 100%;
    margin: 0 auto;
    flex-grow: 1;
    z-index: 2;
}

.benefit-txt {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}

.benefit-txt-01 {
    color: #F0A52E;
}

.benefit-txt-02 {
    color: #FE6FA7;
}

.benefit-txt-03 {
    color: #DE4ED0;
}

.benefit-txt-04 {
    color: #019A95;
}

.benefit-txt-05 {
    color: #414697;
}

.benefit-txt-06 {
    color: #FF8330;
}
/*終わり*/


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

.req-in {
    position: relative;
    border-radius: 24px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    padding: 24px;
    z-index: 1;
}

.req-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    row-gap: 40px;
}

.req-con {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.req-icon {
    max-height: 80px;
    flex-grow: 1;
}

.req-txt {
    font-size: 14px;
    line-height: 1.5;
}

.req-txt span {
    font-size: 18px;
    font-weight: 600;
}

.req-circle-01 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.req-circle-02 {
    position: absolute;
    top: 4%;
    left: 0;
    z-index: -1;
}

.req-circle-03 {
    position: absolute;
    bottom: 20%;
    right: 0;
    z-index: -1;
}

.req-circle-04 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
/*終わり*/


/*<section class="flow">*/
.flow {
    padding-bottom: 120px;
    position: relative;
    background-image: url(../img/flow_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.flow::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 480px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    z-index: 1;
}

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

.flow-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.flow-con {
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 64px 24px 24px 24px;
    clip-path: polygon(
        40px 0,
        100% 0,
        100% calc(100% - 40px),
        calc(100% - 40px) 100%,
        0 100%,
        0 40px
    );
}

.flow-con-01 {
    background-image: url(../img/flow_01.jpg);
}

.flow-con-02 {
    background-image: url(../img/flow_02.jpg);
}

.flow-con-03 {
    background-image: url(../img/flow_03.jpg);
}

.flow-num {
    position: absolute;
    top: 8px;
    left: 24px;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    text-shadow: 0 0 8px rgba(0,0,0,0.3);
    z-index: 3;
}

.flow-title {
    background: linear-gradient(90deg,
            #B465DA 0%,
            #CF6CC9 33%,
            #EE609C 66%,
            #EE609C 100%);
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    padding: 0 8px;
}

.flow-txt {
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.flow .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.flow .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.flow-line {
    width: 32px;
    height: 1px;
    background-color: #404040;
    transform: rotate(90deg);
}

.flow-swiper {
    margin: 40px -40px 200px -40px;
}

.flow-cta-area {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 600px;
    z-index: 3;
}

.flow-fire-img {
    width: 100%;
}

.flow-cta-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 520px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.flow-cta-txt {
    width: 100%;
    color: #fff;
    font-weight: 800;
    font-size: 32px;
}

.flow-txt-png {
    width: 90%;
}
/*終わり*/


/*<section class="notice">*/
.notice-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

.notice-ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
/*終わり*/


/*<section class="privacy">*/
.privacy .h2-en {
    font-size: 48px;
}
/*終わり*/


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


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    /*<a class="line-btn">*/
    .line-btn {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

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

    .h2-dot {
        max-width: clamp(48px, 64vw / 5.99, 64px);
    }

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


/*<div class="fix-area">*/
    .fix-area {
        padding: 8px 3vw;
    }

    .logo-btn-img {
        max-width: clamp(120px, 200vw / 5.99, 200px);
    }

    .fix-line-btn {
        padding: clamp(8px, 12vw / 5.99, 12px) 8px;
        font-size: clamp(14px, 16vw / 5.99, 16px);
        max-width: clamp(200px, 240vw / 5.99, 240px);
    }
/*終わり*/


/*<section class="fv">*/
    .fv-txt-wrap {
        padding: 0 3vw;
    }

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


/*<section class="about">*/
    .about {
        padding: 64px 3vw 0 3vw;
    }

    .about-h2-en {
        max-width: clamp(160px, 200vw / 5.99, 200px);
    }

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

    .about-txt-01 span {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

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

    .about-txt-png {
        padding: 0 3vw;
    }
/*終わり*/


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

    .company-h2-en {
        max-width: clamp(240px, 300vw / 5.99, 300px);
    }

    .company-swiper {
        margin: 0 -3vw;
    }

    .company-fire-img-wrap {
        margin: 0 -3vw;
    }

    .company-txt-wrap {
        gap: clamp(8px, 24vw / 5.99, 24px);
    }

    .company-logo {
        max-width: clamp(80px, 120vw / 5.99, 120px);
    }

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

    .company-video-wrap {
        margin: 0;
    }
/*終わり*/


/*<section class="benefit">*/
    .benefit-con {
        padding: 16px clamp(8px, 16vw / 5.99, 16px);
    }

    .benefit-num {
        font-size: clamp(72px, 96vw / 5.99, 96px);
    }

    .benefit-icon-wrap {
        max-width: clamp(80px, 100vw / 5.99, 100px);
    }

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


/*<section class="req">*/
    .req-in {
        padding: 24px clamp(8px, 16vw / 5.99, 16px);
    }

    .req-con {
        width: 49%;
    }

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

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


/*<section class="flow">*/
    .flow-con {
        padding: clamp(56px, 64vw / 5.99, 64px) clamp(16px, 24vw / 5.99, 24px) 24px clamp(16px, 24vw / 5.99, 24px);
    }

    .flow-num {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }

    .flow-title {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .flow-swiper {
        margin: 40px -3vw clamp(120px, 200vw / 5.99, 200px) -3vw;
    }

    .flow-cta-wrap {
        max-width: calc(600px - 6vw);
    }

    .flow-cta-txt {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    .flow-txt-png {
        width: 80%;
    }
/*終わり*/


/*<section class="notice">*/
/*終わり*/


/*<section class="privacy">*/
    .privacy .h2-en {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }
/*終わり*/

}
