@charset "UTF-8";

/* 共通 */
@font-face {
    font-family: 'Noto Sans JP';
    font-display: swap;
    font-style: normal;
    font-weight: normal;
    src: url('/camp/biz_owners_pp/font/NotoSansJP-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Noto Sans JP';
    font-display: swap;
    font-style: normal;
    font-weight: bold;
    src: url('/camp/biz_owners_pp/font/NotoSansJP-Bold.woff') format('woff');
}
:root {
    --Design-black: #000000;
    --design-black-35: rgba(0, 0, 0, 0.35);
    --Design-white: #FFFFFF;
    --design-white-25: rgba(255, 255, 255, 0.35);
    --Design-gray-01: #999999;
    --Design-gray-02: #666666;
    --Design-gray-03: #444444;
    --Design-gray-04: #333333;
    --Design-gradation: linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%);
    --Design-gradation-01: linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 50%, #BBDDF1 75%, #C6B5D7 100%);
    --Design-gradation-02: linear-gradient(90deg, #202020 0%, #868483 100%);
    --Design-gold-01: linear-gradient(90deg, #FCD277 0%, #FEDE99 72%, #FFE5A4 83%, #FFE6A7 85%, #FFDD95 100%);
    --Design-gold-02: linear-gradient(90deg, #E6AA32 3.37%, #FFD787 14%, #F1B53E 25%, #E6AA32 48.08%, #E1A224 100%);
}
* {
    box-sizing: border-box;
}
.main-bg {
    background-image: url('/camp/biz_owners_pp/img/bg_01_sp.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.note,
.list {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}
.note li {
    position: relative;
    padding-left: 1em;
    text-indent: -1em;
}
.note > li[data-note] {
    padding-left: calc(1.5em + 4px);
    text-indent: calc(-1.5em - 4px);
}
.note li::before {
    content: '※';
}
.note li[data-note]::before {
    content: "※" attr(data-note);
    margin-right: 4px;
}
.list li {
    position: relative;
    padding-left: 1.2em;
    text-indent: -1em;
}
.list li::before {
    content: '・';
}
.textlink {
    font-family: "Noto Sans JP";
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    position: relative;
}
.textlink::after {
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp/img/icon_popup.svg);
    filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(922%) hue-rotate(152deg) brightness(90%) contrast(91%);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
    right: calc(100vw * (-16 / 375));
    display: inline-block;
    margin-top: calc(100vw * (2 / 375));
}
.h2-wrap {
    width: 100%;
}
.h2-wrap_ttl {
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (46 / 375));
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
    letter-spacing: calc(100vw * (-0.92 / 375));
    text-align: left;
}
.h2-wrap_ttl span {
    background: var(--Design-gradation-01, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.h2-wrap_subttl {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (32 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 44.8px */
    letter-spacing: calc(100vw * (-0.64 / 375));
    margin-top: calc(100vw * (40 / 375));
}
.pc_only {
    display: none !important;
}
.sp_only {
    display: block !important;
}
sup {
    vertical-align: middle;
    font-size: 60%;
}
a {
    text-decoration: underline;
}
a:hover {
    opacity: 0.8;
}
.-rainbow sup {
    background: var(--Design-gradation-01, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 769px) {
    .main-bg {
        background-image: url('/camp/biz_owners_pp/img/bg_01_pc.png');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }
    .note,
    .list {
        gap: 4px;
    }
    .textlink::after {
        width: 12px;
        height: 12px;
        right: -16px;
        margin-top: 2px;
    }
    .h2-wrap {
    max-width: 928px;
    width: 100%;
    margin: 0 auto;
    }
    .h2-wrap_ttl {
        font-size: 72px;
        line-height: 120%; /* 86.4px */
        letter-spacing: -1.44px;
    }
    .h2-wrap_subttl {
        font-size: 36px;
        letter-spacing: -0.72px;
        margin-top: 40px;
    }
    .pc_only {
        display: block !important;
    }
    .sp_only {
        display: none !important;
    }
    }

/* ヘッダー */
.header{
    padding: calc(100vw * (16 / 375));
}
.header img{
    width: calc(100vw * (136 / 375));
    display: block;
}
  @media screen and (min-width: 769px) {
    .header{
      padding: 16px 24px;
    }
    .header img{
      width: 160px;
    }
  }

/* kv */
h1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kv img {
    max-width: calc(100vw * (375 / 375));
    width: 100%;
}

.kv_head {
    background: var(--Design-black, #000);
    color: var(--MAIN-WHITE, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: calc(100vw * (-0.84 / 375));
    padding: calc(100vw * (8 / 375)) 0;
    text-align: center;
}

.kv_offer {
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
}

.kv_offer-inner {
    padding: calc(100vw * (16 / 375));
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (12 / 375));
}

.kv_offer-item {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.kv_offer-subttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.kv_offer-label {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans CJK JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    display: flex;
    align-items: center;
}

.kv_offer-label::before {
    content: "";
    background-image: url(/camp/biz_owners_pp/img/icon_information.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(0%) hue-rotate(94deg) brightness(110%) contrast(100%);
    width: calc(100vw * (20 / 375));
    height: calc(100vw * (20 / 375));
    margin-right: calc(100vw * (8 / 375));
}

.kv_offer-txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.kv_offer .list {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

@media screen and (min-width: 769px) {
    .kv img {
        max-width: 929px;
    }

    .kv_head {
        font-size: 18px;
        letter-spacing: -1.08px;
        padding: 8px 0;
    }

    .kv_offer-inner {
        padding: 24px 16px;
        gap: 12px;
        max-width: 928px;
        width: 100%;
        margin: 0 auto;
    }

    .kv_offer-item {
        gap: 4px;
    }

    .kv_offer-subttl {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .kv_offer-label {
        font-size: 16px;
    }

    .kv_offer-label::before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .kv_offer-txt {
        font-size: 13px;
    }

    .kv_offer .list {
        font-size: 13px;
    }
}

/* cv */
.cv {
    display: flex;
    padding: calc(100vw * (16 / 375)) calc(100vw * (16 / 375)) calc(100vw * (24 / 375)) calc(100vw * (16 / 375));
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * (10 / 375));
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-image: url('/camp/biz_owners_pp/img/bg_02_sp.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.cv-txt {
    color: var(--Design-gray-04, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding-bottom: calc(100vw * (4 / 375));
}
.cv-inner_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * (10 / 375));
}
.cv-btn {
    width: 100%;
    position: relative;
    display: flex;
    padding: calc(100vw * (16.5 / 375)) calc(100vw * (32 / 375));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.cv-btn_p {
    background: linear-gradient(90deg, #151515 0%, #666 10%, #444 15.07%, #282828 20%, #151515 100%);
}

.cv-btn_p.js-indicate-shiny {
    background-image: 
        linear-gradient(90deg, 
            #151515 0%, #666 2.5%, #444 3.76%, #282828 5%, #151515 6.25%, 
            transparent 6.25%, transparent 100%
        ),
        linear-gradient(#151515, #151515);

    background-size: 300% 100%, 100% 100%;
    background-repeat: no-repeat;
    animation: shine-flow 5.5s ease-in-out infinite;
}

@keyframes shine-flow {
    0% {
        background-position: 150% 0, 0 0;
    }
    90.9% {
        background-position: -150% 0, 0 0;
    }
    100% {
        background-position: -150% 0, 0 0;
    }
}
.cv-btn_g {
    background: #FFDD95;
}
.cv-btn_p span {
    color: var(--Design-white, #FFF);
}
.cv-btn_g span {
    color: var(--Design-black, #000);
}
.cv-btn_deco01 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.cv-btn_deco02 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.cv-btn_deco03 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.cv-btn::before {
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (50 / 375));
    height: calc(100vw * (32 / 375));
    left: calc(100vw * (20 / 375));
    top: 50%;
    transform: translateY(-50%);
}
.cv-btn_p::before {
    background-image: url(/camp/biz_owners_pp/img/img_platina.png);
    box-shadow: 0 0 6px 3px rgba(255, 255, 255, 0.55);
}
.cv-btn_g::before {
    background-image: url(/camp/biz_owners_pp/img/img_gold.png);
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.30);
}
.cv-btn::after {
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (14 / 375));
    height: calc(100vw * (14 / 375));
    right: calc(100vw * (20 / 375));
    top: 50%;
    transform: translateY(-50%);
}
.cv-btn_p::after {
    background-image: url(/camp/biz_owners_pp/img/icon_link.svg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(2%) hue-rotate(132deg) brightness(105%) contrast(101%);
}
.cv-btn_g::after {
    background-image: url(/camp/biz_owners_pp/img/icon_link.svg);
}
.cv-note {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
    padding-top: calc(100vw * (10 / 375));
    color: var(--Design-gray-04, #333);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.cv-note li {
    position: relative;
    padding-left: calc(100vw * (28 / 375));
}
.cv-note li::before {
    position: absolute;
    width: calc(100vw * (20 / 375));
    height: calc(100vw * (20 / 375));
    top: 50%;
    transform: translateY(-50%);
    content: url(/camp/biz_owners_pp/img/icon_information.svg);
    left: 0;
}
.note {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (8 / 375));
}
.note-kv {
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    mix-blend-mode: luminosity;
}
.note .note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: calc(100vw * (8 / 375)) calc(100vw * (16 / 375)) calc(100vw * (16 / 375)) calc(100vw * (16 / 375));
}
@media screen and (min-width: 769px) {
    .cv {
        background-image: url('/camp/biz_owners_pp/img/bg_02_pc.png');
        padding: 16px 16px 24px 16px;
        gap: 10px;
    }
    .cv-txt {
        font-size: 16px;
        padding-bottom: 4px;
    }
    .cv-inner {
        width: 100%;
    }
    .cv-inner_item {
        gap: 24px;
        flex-direction: row-reverse;
        width: 100%;
        justify-content: center;
    }
    .cv-btn {
        padding: 20px 32px;
        max-width: 544px;
    }
    .cv-btn_deco01 {
        font-size: 16px;
    }
    .cv-btn::before {
        width: 68px;
        height: 43px;
        left: 24%;
    }
    .cv-btn::after {
        width: 14px;
        height: 14px;
        right: 20px;
    }
    .cv-note {
        padding-top: 10px;
        font-size: 12px;
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    .cv-note li {
        padding-left: 28px;
        font-size: 13px;
    }
    .cv-note li::before {
        width: 20px;
        height: 20px;
    }
    .note {
        gap: 8px;
    }
    .note .note {
        font-size: 11px;
        padding: 8px 16px 16px 16px;
        max-width: 928px;
        width: 100%;
        margin: 0 auto;
    }
    }

/* flow */
.flow {
    display: flex;
    padding: calc(100vw * (100 / 375)) calc(100vw * (16 / 375)) calc(100vw * (60 / 375)) calc(100vw * (16 / 375));
    flex-direction: column;
}
.flow .note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: calc(100vw * (8 / 375));
}
.flow-head {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding: calc(100vw * (32 / 375)) 0 calc(100vw * (24 / 375));
}
.flow-head01 {
    padding-left: calc(100vw * (8 / 375));
}
.flow-head02 {
    font-size: calc(100vw * (24 / 375));
}
.flow-head03 {
    background: var(--Design-gradation, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (24 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: calc(100vw * (-0.48 / 375));
}
.flow-step {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.flow-step span {
    font-family: Roboto;
}
.flow-ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: calc(100vw * (-0.32 / 375));
}
.flow-txt {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.flow-img {
    width: calc(100vw * (64 / 375));
}
.swiper {
    padding: calc(100vw * (24 / 375)) 0;
}
.flow-carousel_item {
    display: flex;
    padding: calc(100vw * (16 / 375));
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
    flex-shrink: 0;
    border-radius: calc(100vw * (4 / 375));
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    box-shadow: 0 0 15px 0 rgba(60, 143, 129, 0.15); 
    margin-right: calc(100vw * (16 / 375));
}
.flow-carousel_item.slick-slide img {
    margin: 0;
}
.flow-carousel_item:nth-child(1) {
    background-image: url(/camp/biz_owners_pp/img/img_flow_01.png);
    background-size: calc(100vw * (86 / 375)) calc(100vw * (86 / 375));
    background-position: calc(100vw * (120 / 375)) calc(100vw * (13 / 375));
    background-repeat: no-repeat;
}
.flow-step_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: calc(100vw * (4 / 375));
}

@media screen and (min-width: 769px) {
    .flow {
        padding: 100px 16px 60px 16px;
    }
    .flow-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-width: 544px;
        width: 100%;
        margin: 0 auto;
    }
    .flow-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        max-width: 544px;
        width: 100%;
    }
    .flow .note {
        font-size: 11px;
        margin-top: 8px;
    }
    .flow-head {
        font-size: 16px;
        padding: 32px 0 12px;
        width: 100%;
    }
    .flow-head01 {
        padding-left: 8px;
    }
    .flow-head02 {
        font-size: 24px;
    }
    .flow-head03 {
        font-size: 32px;
        letter-spacing: -0.64px;
    }
    .flow-step {
        font-size: 12px;
        text-align: center;
    }
    .flow-ttl {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
    .flow-txt {
        font-size: 13px;
    }
    .flow-img {
        width: 64px;
    }
    .swiper {
        padding: 24px 0;
    }
    .flow-carousel_item {
        padding: 8px 16px;
        gap: 0;
        border-radius: 4px;
        width: 100%;
        margin-right: 0;
    }
    .flow-carousel_item:nth-child(1) {
        background-size: 86px 86px;
        background-position: 97% bottom;
    }
    .flow .slide img {
        width: 52px;
    }
    .flow-step_wrap {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    .flow-step_item {
        gap: 4px;
    }
    }

/* campaign */
.campaign {
    display: flex;
    padding: calc(100vw * (100 / 375)) calc(100vw * (16 / 375)) 0 calc(100vw * (16 / 375));
    flex-direction: column;
    gap: calc(100vw * (40 / 375));
}
.bnr-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: calc(100vw * (40 / 375));
}
.slick-slide img {
    margin: 0 auto;
}
.slick-dots {
    border: none;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    margin: calc(100vw * (16 / 375)) 0 0;
    height: calc(100vw * (10 / 375));
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
    margin: 0 calc(100vw * (6 / 375));
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li.slick-active button:before {
    opacity: 0.6;
    background-color: var(--Design-gray-01, #999);
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: calc(100vw * (10 / 375));
    line-height: calc(100vw * (10 / 375));
    position: absolute;
    top: calc(100vw * (-10 / 375));
    left: 0;
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
    content: '';
    opacity: 0.6;
    border: 1px solid var(--Design-gray-01, #999);
    text-align: center;
    border-radius: calc(100vw * (100 / 375));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev,.slick-arrow,.slick-next{
    display: none!important;
}

@media screen and (min-width: 769px) { 
    .campaign {
        padding: 100px 16px 0 16px;
        gap: 32px;
    }
    .bnr-carousel {
        padding-bottom: 40px;
    }
    .slick-slide img{
        margin: 0 auto;
    }
    .slick-dots {
        margin: 16px 0 0;
        height: 10px;
    }
    .slick-dots li {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .slick-dots li button:before {
        font-size: 10px;
        line-height: 10px;
        top: -10px;
        width: 10px;
        height: 10px;
        border-radius: 100px;
    }
    .slick-prev,.slick-arrow,.slick-next{
        display: none!important;
    }
    .bnr-carousel_wrap, 
    .bnr-carousel img {
        width: 728px;
        margin: 0 auto;
    }
    .slide img {
        width: 100%;
    }
    }

/* faq */
.faq {
    display: flex;
    padding: calc(100vw * (120 / 375)) calc(100vw * (16 / 375)) calc(100vw * (60 / 375)) calc(100vw * (16 / 375));
    flex-direction: column;
    gap: calc(100vw * (40 / 375));
    align-self: stretch;
}
.faq-aco-wrap {
    display: flex;
    flex-direction: column;
}
.aco-wrap {
    display: flex;
    flex-direction: column;
}
.faq-ttl {
    position: relative;
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding: calc(100vw * (12 / 375)) calc(100vw * (37 / 375));
}
.faq-ttl::before {
    position: absolute;
    display: block;
    content: "Q";
    font-family: Roboto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    font-size: calc(100vw * (32 / 375));
}
.faq-txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 0 calc(100vw * (4 / 375)) 0 calc(100vw * (37 / 375));
}
.faq-deco {
    border-top: 1px solid var(--Design-gray-01, #999);
    border-bottom: 1px solid var(--Design-gray-01, #999);
}
.aco-label {
    position: relative;
}
.aco-label::after {
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp/img/icon_accordion-close-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (24 / 375));
    height: calc(100vw * (24 / 375));
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.aco-label.open::after {
    background-image: url(/camp/biz_owners_pp/img/icon_accordion-open-white.svg);
}
.aco-label:hover {
    cursor: pointer;
}
.aco-content {
    display: none;
    width: 100%;
    padding-bottom: calc(100vw * (12 / 375));
}
.faq .note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: calc(100vw * (4 / 375)) calc(100vw * (4 / 375)) 0 calc(100vw * (37 / 375));
}

@media screen and (min-width: 769px) {
    .faq {
        padding: 120px 16px 60px 16px;
        gap: 40px;
        max-width: 928px;
        width: 100%;
        margin: 0 auto;
    }
    .faq-aco-wrap {
        max-width: 736px;
        width: 100%;
        margin: 0 auto;
    }
    .faq-ttl {
        font-size: 16px;
        padding: 21px 37px;
    }
    .faq-ttl::before {
        font-size: 32px;
        left: 8px;
    }
    .faq-txt {
        font-size: 16px;
        padding: 0 8px 0 41px;
    }
    .aco-label::after {
        width: 24px;
        height: 24px;
    }
    .aco-content {
        padding-bottom: 12px;
    }
    .faq .note {
        font-size: 11px;
        padding: 4px 8px 0 41px;
    }
    }

/* risk */
.risk {
    display: flex;
    padding: calc(100vw * (24 / 375)) calc(100vw * (16 / 375));
    flex-direction: column;
    align-items: flex-start;
    gap: calc(100vw * (16 / 375));
}
.risk-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(100vw * (8 / 375));
    align-self: stretch;
}
.risk-item_ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 170%; /* 20.4px */
}
.risk-item_txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.risk .textlink::after {
    background-image: url(/camp/biz_owners_pp/img/icon_popup-white.svg);
}

@media screen and (min-width: 769px) {
    .risk {
        padding: 24px 16px;
        gap: 16px;
        max-width: 736px;
        width: 100%;
        margin: 0 auto;
    }
    .risk-item {
        gap: 8px;
    }
    .risk-item_ttl {
        font-size: 14px;
    }
    .risk-item_txt {
        font-size: 12px;
    }
    }

/* float-cv */
.float-cv {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
.float-cv.show {
    opacity: 1;
    pointer-events: initial;
}
.float-cv_inner {
    display: flex;
    padding: calc(100vw * (8 / 375)) calc(100vw * (16 / 375));
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
}
.float-cv_btn {
    width: 100%;
    padding: calc(100vw * (6 / 375)) 0 calc(100vw * (6 / 375));
    color: var(--Design-black, #000);
    border: 2px solid var(--Design-gradation-01, #EDC4B8);
    position: relative;
    text-decoration: none;
}
.float-cv_btn_g {
    background: #FFDD95;
}
.float-cv_btn_g img {
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.30);
}
.float-cv_btn_p {
    background-image: url('/camp/biz_owners_pp/img/bg_02_sp.png');
}
.float-cv_btn_p img {
    box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.55);
}
.float-cv_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(100vw * (7 / 375));
    justify-content: center;
}
.float-cv_item img {
    width: calc(100vw * (38 / 375));
}
.float-cv_ttl {
    padding-bottom: calc(100vw * (4 / 375));
}
.float-cv_txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.float-cv_txt_deco01 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.float-cv_txt_deco02 {
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.float-cv_txt_deco03 {
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (9 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.float-cv_txt_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;   
}

.float-cv_btn::after {
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (14 / 375));
    height: calc(100vw * (14 / 375));
    right: calc(100vw * (20 / 375));
    top: 50%;
    transform: translateY(-50%);
}
.float-cv_btn::after {
    background-image: url(/camp/biz_owners_pp/img/icon_link.svg);
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(19%) hue-rotate(357deg) brightness(100%) contrast(108%);
}

@media screen and (min-width: 769px) {
    .float-cv_inner {
        padding: 10px 16px;
    }
    .float-cv_btn {
        padding: 6px 0 6px 0;
        max-width: 928px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .float-cv_btn::after {
        position: relative;
        transform: translateY(0px);
        top: 0;
        right: 0;
        width: 13px;
        height: 13px;
        margin-left: 17px;
    }
    .float-cv_item {
        gap: 12px;
        justify-content: center;
    }
    .float-cv_item img {
        width: 64px;
    }
    .float-cv_txt_deco01 {
        font-size: 16px;
    }
    .float-cv_txt_deco02 {
        font-size: 20px;
    }
    .float-cv_txt_deco03 {
        font-size: 12px;
    }
    .float-cv_ttl {
        padding-bottom: 0;
    }
    .float-cv_btn_p {
        background-image: url('/camp/biz_owners_pp/img/bg_02_pc.png');
    }
    .float-cv_txt_wrap {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex-direction: row;
        gap: 2px;
    }
    }

/* contact */
.contact {
    display: flex;
    padding: calc(100vw * (32 / 375)) calc(100vw * (16 / 375));
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * (24 / 375));
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    mix-blend-mode: luminosity; 
}
.contact .note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.contact-area{
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: calc(100vw * (258 / 375));
    margin: 0 auto;
}
.contact-area a {
    text-decoration: none;
}
.contact-area_btn{
    border-radius: calc(100vw * (28 / 375));
    border: 1px solid #1A1A1A;
    background: #FFF;
    display: flex;
    padding: calc(100vw * (14 / 375)) calc(100vw * (24 / 375));
    justify-content: center;
    align-items: center;
    gap: calc(100vw * (10 / 375));
}
.contact-area_btn:hover{
    cursor: pointer;
}
.contact-area_btn span{
    color: #1A1A1A;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.active {
    overflow: hidden;
}
.modal-ttl {
    color: var(--Design-black, #000);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: calc(100vw * (-0.4 / 375));
    padding-bottom: calc(100vw * (24 / 375));
}
.modal-txt {
    color: var(--Design-black, #000);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
@media (min-width: 769px) {
    .contact {
        padding: 32px 16px;
        gap: 32px;
    }
    .contact .note {
        font-size: 11px;
    }
    .contact-area_btn {
        margin: 0 auto;
        padding: 24px;
        border-radius: 100px;
    }
    .contact-area {
        max-width: 352px;
    }
    .contact-area_btn_note {
        max-width: 498px;
    }
    .contact-area_btn span {
        font-size: 16px;
    }
    .modal-ttl {
        letter-spacing: -0.48px;
        font-size: 24px;
        padding-bottom: 24px;
    }
    .modal-txt {
        font-size: 16px;
    }
}


/* モーダル_全画面用 */
.modal_content.modal_content--large {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-image: url(/camp/biz_owners_pp/img/bg_01_sp.png);
    background-size: cover;
    background-position: center;
    border-radius: 0;
    padding: 0;
}

.modal_content.modal_content--large  .modal_close {
    filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(2%) hue-rotate(132deg) brightness(105%) contrast(101%);
}

.modal_content.modal_content--large .modal_wrap {
    overflow: auto;
    padding: calc(100vw * (80 / 375)) calc(100vw * (16 / 375));
}

.modal-info_ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (32 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 44.8px */
    letter-spacing: calc(100vw * (-0.64 / 375));
}

.modal-info_txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.modal-info_subttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (24 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    letter-spacing: calc(100vw * (-0.48 / 375));
}

.modal-info_list {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (8 / 375));
}

.modal-info_list-item {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    padding-left: 1.2em;
    text-indent: -1.1em;
}

.modal-info_list-item::before {
    content: "・";
}

.modal-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (24 / 375));
}

.modal-info_cont {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (16 / 375));
}

@media (min-width: 769px) {
    .modal_content.modal_content--large {
        background-image: url(/camp/biz_owners_pp/img/bg_01_pc.png);
        max-width: 100%;
    }

    .modal_content.modal_content--large .modal_wrap {
        overflow: auto;
        padding: 0;
    }

    .modal-info {
        max-width: 928px;
        width: 100%;
        margin: 0 auto;
        padding: 100px 16px 160px;
        gap: 24px;
    }

    .modal-info_ttl {
        font-size: 42px;
        letter-spacing: -0.84px;
    }

    .modal-info_txt {
        font-size: 16px;
    }

    .modal-info_subttl {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .modal-info_list {
        gap: 12px;
    }

    .modal-info_list-item {
        font-size: 16px;
    }

    .modal-info_cont {
        gap: 16px;
    }

    .modal_content.modal_content--large .modal_close {
        right: 41.5px;
        top: 41.5px;
    }
}

/*お問い合わせ*/
.info_area {
    padding: calc(100vw * (40 / 375)) calc(100vw * (16 / 375)) calc(100vw * (24 / 375)) calc(100vw * (16 / 375));
}
.info_area_inner{
    padding-bottom: calc(100vw * (8 / 375));
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: calc(100vw * (258 / 375));
    margin: 0 auto;
}
.info_area_inner a {
    text-decoration: none;
}
.info_area_btn{
    border-radius: calc(100vw * (28 / 375));
    border: 1px solid #1A1A1A;
    background: #FFF;
    display: flex;
    padding: calc(100vw * (14 / 375)) calc(100vw * (24 / 375));
    justify-content: center;
    align-items: center;
    gap: calc(100vw * (10 / 375));
}
.info_area_btn:hover{
    cursor: pointer;
}
.info_area_btn span{
    color: #1A1A1A;
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.info_area_note {
    margin: calc(100vw * (16 / 375)) 0 !important;
}
.modal-area_btn{
    display: flex;
    height: calc(100vw * (54 / 375));
    padding: calc(100vw * (6 / 375)) calc(100vw * (32 / 375));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border: 2px solid var(--Design-black, #000);
    background: var(--Design-white, #FFF);
    gap: calc(100vw * (10 / 375));
    margin: calc(100vw * (12 / 375)) 0;
    position: relative;
    font-family: "Noto Sans JP";
}
  .modal-area_btn span{
    color: #1A1A1A;
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
  .modal-area_btn::before {
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp/img/icon_phone.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (16 / 375));
    height: calc(100vw * (16 / 375));
    left: calc(100vw * (16 / 375));
    top: 50%;
    transform: translateY(-50%);
}
.modal-area_btn::after{
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp/img/icon_link.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (14 / 375));
    height: calc(100vw * (14 / 375));
    right: calc(100vw * (16 / 375));
    top: 50%;
    transform: translateY(-50%);
}
.modal-date {
    color: var(--Design-black, #000);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.modal-area_inner{
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: calc(100vw * (240 / 375));
    margin: 0 auto;
}
.modal_bg {
    background: rgba(0, 0, 0, 0.50);
    position: fixed;
    z-index: 12;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
}
.modal_content{
    position: fixed;
    z-index: 13;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (24 / 375));
    width: 91.5%;
    padding: calc(100vw * (48 / 375)) calc(100vw * (16 / 375)) calc(100vw * (24 / 375));
    border-radius: calc(100vw * (10 / 375));
    background-color: #FFF;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.10);
    opacity: 0;
    pointer-events: none;
    transition: .4s;
    max-height: 95%;
}
.modal_content#contact_modal {
    padding: calc(100vw * (40 / 375)) 0;
}
.modal_bg.active,.modal_content.active {
    opacity: 1;
    pointer-events: initial;
}
.modal_wrap {
    text-align: center;
}
.modal_content .modal_close {
    position: absolute;
    top: calc(100vw * (13 / 375));
    right: calc(100vw * (13 / 375));
    width: calc(100vw * (24 / 375));
    height: calc(100vw * (24 / 375));
}
.modal_content .modal_close img {
    width: 100%;
}
@media (min-width: 769px) {
    .info_area {
        padding: 40px 16px 24px 16px;
    }
    .info_area_inner {
        padding-bottom: 8px;
        max-width: 258px;
    }
    .info_area_btn {
        border-radius: 28px;
        padding: 14px 24px;
        gap: 10px;
    }
    .info_area_btn span {
        font-size: 14px;
    }
    .info_area_note {
        margin: 16px 0 !important;
    }
    .modal-area_btn {
        height: 54px;
        padding: 6px 32px;
        gap: 10px;
        margin: 12px 0;
    }
    .modal-area_btn span {
        font-size: 20px;
    }
    .modal-area_btn::before {
        width: 16px;
        height: 16px;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    .modal-area_btn::after {
        width: 14px;
        height: 14px;
        right: 16px;
        top: 50%;
    }
    .modal-date {
        font-size: 13px;
    }
    .modal-area_inner {
        max-width: 352px;
    }
    .modal_content {
        gap: 24px;
        padding: 48px 16px 24px;
        border-radius: 10px;
    }
    .modal_content#contact_modal {
        padding: 40px 0;
    }
    .modal_content .modal_close {
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
    }
    .info_area_btn {
        padding: 24px;
        border-radius: 100px;
    }
    .info_area_inner {
        max-width: 352px;
    }
    .info_area_btn_note {
        max-width: 498px;
    }
    .info_area_btn span {
        font-size: 16px;
    }
    .info_area_note {
        margin: 24px auto 16px auto !important;
        display: flex;
        flex-direction: column;
        align-items: center !important;
        gap: 3px !important;
    }
    .modal_content {
        max-width: 544px;
        padding: 40px 40px 24px;
    }
    .modal_content .modal_close {
        top: 12.5px;
        right: 12px;
    }
}

/* タブ */
.tab-contents {
    display: none;
    /* height: calc(100vw * (900 / 375)); */
}
.tab-contents.show {
    display: block;
}
.tab-wrap {
    width: 100%;
}
.tab-item_wrap {
    display: flex;
}
.tab-item_wrap {
    display: flex;
    position: relative;
    border: 2px solid transparent;
    justify-content: space-between;
    align-items: center;
    border-radius: calc(100vw * (999 / 375));
    backdrop-filter: blur(2.5px);
    background-image: linear-gradient(#757575, #757575), 
    linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.tab-item {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: calc(100vw * (10 / 375)) calc(100vw * (8 / 375)) calc(100vw * (10 / 375)) calc(100vw * (12 / 375));
    list-style: none;
    cursor: pointer;
    border-radius: calc(100vw * (999 / 375));
    align-items: center;
    color: var(--Design-white, #FFF);
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (8 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.tab-item span {
    font-size: calc(100vw * (14 / 375));
    line-height: 130%;
}
.tab-item.tab-item_g {
    margin: calc(100vw * (6 / 375)) 0 calc(100vw * (6 / 375)) calc(100vw * (6 / 375));
}
.tab-item.tab-item_g.show {
    background: var(--Design-gold-02, linear-gradient(90deg, #E6AA32 3.37%, #FFD787 14%, #F1B53E 25%, #E6AA32 48.08%, #E1A224 100%));
}
.tab-item.tab-item_p {
    margin: calc(100vw * (6 / 375)) calc(100vw * (6 / 375)) calc(100vw * (6 / 375)) 0;
}
.tab-item.tab-item_p.show {
    background: linear-gradient(90deg, #151515 0%, #666 10%, #444 15.07%, #282828 20%, #151515 100%);
}
.tab-label_outer.float {
    position: fixed;
    top: calc(100vw * (20 / 375));
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}
.tab-label_inner a span{
    flex: 1 0 0;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.tab-label_inner a span span{
font-size: calc(100vw * (11 / 375));
}
.tab_content{
width: 100%;
padding: calc(100vw * (40 / 375)) 0;
}
.tab-label_outer.float{
height: calc(100vw * (63.3 / 375));
}
.tab-label.float{
position: fixed;
top: calc(100vw * (20 / 375));
left: 50%;
transform: translateX(-50%);
z-index: 10;
width: 100%;
}
.tab-label.float{
position: fixed;
top: calc(100vw * (20 / 375));
left: 50%;
transform: translateX(-50%);
z-index: 10;
width: 100%;
}
.tab-label_inner{
display: flex;
justify-content: space-between;
align-items: center;
flex: 1 0 0;
border-radius: 100px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
background: rgba(255, 255, 255, 0.80);
backdrop-filter: blur(2.5px);
}
.tab-label_inner a{
display: flex;
justify-content: center;
align-items: center;
gap: calc(100vw * (16 / 375));
flex: 1 0 0;
}
@media screen and (min-width: 769px) {
    .tab-item_wrap {
        max-width: 640px;
        margin: 0 auto;
    }
    .tab-label_outer.float {
        height: 97.61px;
    }
    .tab-label {
        max-width: 736px;
        margin: 0 auto;
        width: 100%;
    }
        .tab_content {
        padding: 0;
    }
        .tab-label_inner a span {
        font-size: 14px;
    }
        .tab-label_inner a span span {
        font-size: 18px;
    }
    /* .tab-contents {
        height: 900px;
    } */
    .tab-item_wrap {
        border-radius: 999px;
    }
    .tab-item {
        padding: 10px 8px 10px 12px;
        border-radius: 999px;
        font-size: 8px;
    }
    .tab-item span {
        font-size: 14px;
    }
    .tab-item.tab-item_g {
        margin: 6px 0 6px 6px;
    }
    .tab-item.tab-item_p {
        margin: 6px 6px 6px 0;
    }
    .tab-label_outer.float {
        top: 20px;
    }
    .tab-label_inner a span{
        font-size: 10px;
    }
    .tab-label_inner a span span{
        font-size: 11px;
    }
    .tab_content{
        padding: 40px 0;
    }
    .tab-label_outer.float{
        height: 63.3px;
    }
    .tab-label.float{
        top: 20px;
    }
    .tab-label.float{
        top: 20px;
    }
    .tab-label_inner{
        border-radius: 100px;
    }
    .tab-label_inner a{
        gap: 16px;
    }
}

/* offer */
.offer {
    display: flex;
    padding: calc(100vw * (60 / 375)) calc(100vw * (16 / 375)) 0 calc(100vw * (16 / 375));
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * (40 / 375));
}

@media screen and (min-width: 769px) {
    .offer {
        padding: 60px 16px 0px 16px;
        gap: 40px;
    }
}

/* specialoffer */

.specialoffer {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (24 / 375));
}

.specialoffer img {
    width: 100%;
}

.specialoffer_cont {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (12 / 375));
    padding: calc(100vw * (32 / 375)) calc(100vw * (16 / 375));
    border-radius: calc(100vw * (4 / 375));
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
}

.specialoffer_item {}

.specialoffer_item-head {
    margin-bottom: calc(100vw * (8 / 375));
}

.specialoffer_item-ttl {
    color: var(--Design-gray-01, #999);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.specialoffer_body {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (12 / 375));
}

.specialoffer_main {
}

.specialoffer_amount-label {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: calc(100vw * (-0.32 / 375));
    margin-bottom: calc(100vw * (8 / 375));
}

.specialoffer_amount {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: calc(100vw * (2 / 375));
}

.specialoffer_amount-value {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: Roboto;
    font-size: calc(100vw * (54 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 0.8;
    letter-spacing: calc(100vw * (-2.16 / 375));
}

.specialoffer_amount-unite {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(100vw * (-0.24 / 375));
}

.specialoffer_desc {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.specialoffer_link {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: right;
    display: flex;
    justify-content: end;
    gap: calc(100vw * (4 / 375));
    cursor: pointer;
}

.specialoffer_sub {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.specialoffer_separator {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specialoffer_separator-icon {
    display: block;
    width: calc(100vw * (23 / 375));
    height: calc(100vw * (23 / 375));
}

.specialoffer_separator::before,
.specialoffer_separator::after{
    content: "";
    background: var(--Design-gray-02, #666);
    width: 41.6%;
    height: calc(100vw * (1 / 375));
}

.specialoffer_link::after {
    content: "";
    background-image: url(/camp/biz_owners_pp/img/icon_link.svg);
    background-size: 100% 100%;
    background-position: center;
    width: calc(100vw * (11 / 375));
}

@media screen and (min-width: 769px) {
    .specialoffer {
        max-width: 736px;
        width: 100%;
        margin: 0 auto;
        gap: 24px;
    }

    .specialoffer_total {
        max-width: 542px;
        margin: 0 auto;
    }

    .specialoffer_cont {
        padding: 32px 48px;
        gap: 8px;
        border-radius: 4px;
    }

    .specialoffer_item-head {
        margin-bottom: 8px;
    }

    .specialoffer_item-ttl {
        font-size: 20px;
    }

    .specialoffer_body {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .specialoffer_main {
        width: calc(100% - 8px / 2);
    }

    .specialoffer_amount-label {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .specialoffer_amount-value {
        font-size: 68px;
        letter-spacing: -1.36px;
    }

    .specialoffer_amount-unite {
        font-size: 14px;
    }

    .specialoffer_sub {
        width: calc(100% - 8px / 2);
        gap: 4px;
    }

    .specialoffer_desc {
        font-size: 13px;
    }

    .specialoffer_link::after {
        width: 13px;
    }

    .specialoffer_separator {
        padding: 10px 0;
    }

    .specialoffer_separator-icon {
        width: 32px;
        height: 32px;
    }

    .specialoffer_separator::before, .specialoffer_separator::after {
        height: 2px;
        width: 46%;
    }

    .specialoffer_link {
        font-size: 12px;
        gap: 4px;
        cursor: pointer;
    }
}

/* comparison */
.comparison {
    padding: calc(100vw * (120 / 375)) calc(100vw * (16 / 375)) 0;
}

.comparison img {
    width: 100%;
}

.comparison_table {
    margin-top: calc(100vw * (40 / 375));
}

.comparison_head {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: calc(100vw * (24 / 375));
}

.comparison_plan {
    width: calc(100% - 24px /2);
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (8 / 375));
}

.comparison_plan.comparison_plan--right .comparison_img {
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    box-shadow: 0 0 6px 3px rgba(255, 255, 255, 0.50);
    border-radius: calc(100vw * (6 / 375));
}

.comparison_name {}

.comparison_name-sub {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 15px */
    letter-spacing: calc(100vw * (-0.2 / 375));
}

.comparison_name-main {
    color: var(--Design-white, #FFF);
    text-align: center;

/* title-sp/h6-medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.comparison_name-main span {
    background: var(--Design-gradation-01, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.comparison_plan.comparison_plan--left .comparison_img {
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: calc(100vw * (6 / 375));
}

.comparison_row {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (12 / 375));
}

.comparison_label {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    letter-spacing: calc(100vw * (-0.4 / 375));
    padding-bottom: calc(100vw * (8 / 375));
    text-align: center;
    border-bottom: calc(100vw * (2 / 375)) solid var(--Design-gray-02, #666);
}

.comparison_values {
    display: flex;
    gap: 24px;
}

.comparison_value {
    width: calc(100% - 24px / 2);
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (12 / 375));
}

.comparison_price-txt {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: Roboto;
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.comparison_price-muted {
    color: var(--Design-gray-01, #999);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
}

.comparison_price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.comparison_price-meta {
    color: var(--Design-white, #FFF);
    font-family: Roboto;
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.comparison_price {
    color: var(--Design-white, #FFF);
    font-family: Roboto;
    font-size: calc(100vw * (28 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: calc(100vw * (-0.56 / 375));
}

.comparison_value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comparison_value-item .-rainbow {
    background: var(--Design-gradation-01, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison_row + .comparison_row {
    margin-top: calc(100vw * (40 / 375));
}

.comparison_head + .comparison_row {
    margin-top: calc(100vw * (24 / 375));
}

.comparison_detail {
    border: 1px solid var(--Design-white, #FFF);
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    padding: calc(100vw * (12 / 375)) calc(100vw * (8 / 375));
    margin-top: calc(100vw * (40 / 375));
}

.comparison_detail-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison_detail-head-txt {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.comparison_detail-head.aco-label::after {
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
}

.comparison_detail .note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 16.5px */
}

.comparison_link {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    position: relative;
}

.comparison_link.comparison_link--out::after {
    content: "";
    background-image: url(/camp/biz_owners_pp/img/icon_popup.svg);
    filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(922%) hue-rotate(152deg) brightness(90%) contrast(91%);
    background-size: 100% 100%;
    width: calc(100vw * (11 / 375));
    height: calc(100vw * (11 / 375));
    position: absolute;
    right: calc(100vw * (-15 / 375));
    top: 0;
    bottom: 0;
    margin: auto;
}

.comparison_detail-body {
    padding-top: calc(100vw * (12 / 375));
}

@media screen and (min-width: 769px) {
    .comparison {
        padding: 100px 0 0;
        max-width: 736px;
        width: 100%;
        margin: 0 auto

    }
    .comparison_table {
        margin: 40px auto 0;
    }

    .comparison_img {
        max-width: 133px;
        width: 100%;
    }

    .comparison_plan.comparison_plan--right .comparison_img {
        border-radius: 4px;
    }

    .comparison_plan {
        align-items: center;
    }

    .comparison_plan.comparison_plan--left .comparison_img {
        border-radius: 4px;
    }

    .comparison_name-sub {
        font-size: 13px;
        letter-spacing: -0.26px;
    }

    .comparison_name-main {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .comparison_label {
        font-size: 20px;
        letter-spacing: -0.4px;
        border-bottom: 2px solid var(--Design-gray-01, #999);
        padding-bottom: 8px;
    }
    .comparison_price-txt {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .comparison_price-muted {
        font-size: 13px;
    }

    .comparison_price {
        font-size: 36px;
        letter-spacing: -0.72px;
    }

    .comparison_price-meta {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .comparison_row + .comparison_row {
        margin-top: 24px;
    }

    .comparison_head + .comparison_row {
        margin-top: 24px;
    }

    .comparison_value {
        gap: 12px;
    }

    .comparison_row {
        gap: 12px;
    }

    .comparison_price-wrap-pc {
        display: flex;
        align-items: baseline;
        justify-content: center;
    }

    .comparison_detail {
        padding: 12px;
        max-width: 546px;
        margin: 40px auto 0;
    }

    .comparison_detail-head-txt {
        font-size: 16px;
    }

    .comparison_detail-head.aco-label::after {
        width: 16px;
        height: 16px;
    }

    .comparison_detail .note {
        font-size: 12px;
    }

    .comparison_link {
        font-size: 13px;
        cursor: pointer;
    }

    .comparison_link.comparison_link--out::after {
        width: 13px;
        height: 13px;
        position: relative;
        display: inline-block;
        left: 5px;
        right: 0;
    }

    .comparison_detail-body {
        padding-top: 12px;
    }
}

/* offer_bnr */
.offer_bnr {}

.offer_bnr img {
    width: 100%;
}

.offer_bnr-text {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    letter-spacing: calc(100vw * (-0.4 / 375));
    margin-bottom: calc(100vw * (24 / 375));
}

@media screen and (min-width: 769px) {
    .offer_bnr-text {
        font-size: 24px;
        letter-spacing: -0.48px;
        margin-bottom: 24px;
    }
}


/* features */
.features {
    display: flex;
    padding: calc(100vw * (60 / 375)) calc(100vw * (16 / 375)) 0 calc(100vw * (16 / 375));
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * (24 / 375));
}

.features img {
    width: 100%;
}

.features_intro {
    display: flex;
    flex-direction: column;
}

.features_intro-label {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.features_intro-ttl {
    display: flex;
    flex-direction: column;
    padding: 0 calc(100vw * (16 / 375));
}

.features_intro-ttl-flex {
    display: flex;
    flex-direction: column;
}

.features_intro-ttl-line {
    background: linear-gradient(90deg, rgba(43, 43, 43, 0.00) 0%, #FFF 10%, #FFF 90%, rgba(43, 43, 43, 0.00) 100%);
    height: calc(100vw * (1 / 375));
    width: 100%;
    margin-bottom: calc(100vw * (8 / 375));
}

.features_intro-ttl-line:last-child {
    margin-top: calc(100vw * (8 / 375));
    margin-bottom: 0;
}

.features_intro-ttl-main {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (24 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    letter-spacing: calc(100vw * (-0.48 / 375));
    background: var(--Design-gradation-01, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features_intro-ttl-icon {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (32 / 375));
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 48px */
    letter-spacing: calc(100vw * (-0.64 / 375));
}

.features_inner {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (40 / 375));
    width: 100%;
}

.features_block {
    display: flex;
    padding: calc(100vw * (24 / 375)) calc(100vw * (16 / 375)) calc(100vw * (40 / 375));
    flex-direction: column;
    border-radius: calc(100vw * (4 / 375));
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    gap: calc(100vw * (24 / 375));
}

.features_block-item {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (24 / 375));
}

.features_block-item + .features_block-item {
    margin-top: calc(100vw * (24 / 375));
}

.features_block-ttl {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (40 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 56px */
    letter-spacing: calc(100vw * (-0.8 / 375));
}


.features_head {
    display: flex;
    flex-direction: column;
}

.features_head-index {
    color: var(--Design-gray-01, #999);
    font-family: Roboto;
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    display: flex;
    align-items: center;
    gap: calc(100vw * (4 / 375));
    margin-bottom: calc(100vw * (8 / 375));
}

.features_head-index::after {
    content: "";
    width: 50%;
    height: calc(100vw * (1 / 375));
    background: var(--Design-gray-02, #666);
    flex: 1;
}

.features_head-ttl-main {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (24 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;
}

.features_head-ttl-sub {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 25px */
    letter-spacing: calc(100vw * (-0.4 / 375));
}

.features_row {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (32 / 375));
}

.features_txt {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.features_txt .-white {
    color: var(--Design-white, #FFF);
}

.features_highlight {}

.features_highlight-label {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    letter-spacing: -0.4px;
    margin-bottom: calc(100vw * (24 / 375));
}

.features_highlight-wrap {
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: calc(100vw * (8 / 375));
}

.features_highlight-wrap.-rainbow {
    background: var(--Design-gradation, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features_highlight-wrap.-gold {
    background: var(--Design-gold-01, linear-gradient(90deg, #FCD277 0%, #FEDE99 72%, #FFE5A4 83%, #FFE6A7 85%, #FFDD95 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features_highlight-value {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: Roboto;
    font-size: calc(100vw * (64 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 0.8; /* 96px */
    letter-spacing: calc(100vw * (-2.56 / 375));
}

.features_highlight-unit.features_highlight-unit--large {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (40 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: calc(100vw * (-1.6 / 375));
}

.features_highlight-unit.features_highlight-unit--medium {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (36 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: calc(100vw * (0.72 / 375));
}

.features_highlight-unit.features_highlight-unit--small {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (24 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: calc(100vw * (-0.96 / 375));
}

.features .note {
    color: var(--Design-gray-01, #999);

/* offer-sp/medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 16.5px */
}

.features .note a {
    text-decoration: underline;
}

.features_highlight-text {
    color: var(--Design-gray-01, #999);
    text-align: center;

/* text-sp/small */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.features_subttl-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features_subttl-sub {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.28px;
}

.features_subttl-main {
    color: var(--Design-white, #FFF);
    text-align: center;

/* title-sp/h6-medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.features_subttl-lead {
    color: var(--Design-gray-01, #999);
    text-align: center;

/* text-sp/small */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.features_logo-item {
    padding: 0 calc(100vw * (4 / 375));
}

.features_logo-img {
    width: 100%;
    margin-bottom: calc(100vw * (7 / 375));
}

.features_logo-value {
    width: calc(100vw * (70 / 375));
    margin: 0 auto;
}

.features_row.features_row--large {
    margin: 0 calc(100vw * (-16 / 375));
}

.features_highlight-label.features_highlight-label--muted {
    color: var(--Design-gray-01, #999);
    text-align: center;

/* title-sp/h6-medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
    margin-bottom: calc(100vw * (16 / 375));
}

.features_highlight-icon {
    width: calc(100vw * (78 / 375));
    margin-right: calc(100vw * (5 / 375));
}

.features_cards {
    display: flex;
    flex-wrap: wrap;
    gap: calc(100vw * (32 / 375)) calc(100vw * (12 / 375));
}

.features_card {
    display: flex;
    flex-direction: column;
    width: calc((100% - calc(100vw * (12 / 375))) /2);
    gap: calc(100vw * (12 / 375));
}

.features_card-img {}

.features_card-body {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (8 / 375));
}

.features_card-ttl {
    color: var(--Design-white, #FFF);

/* title-sp/h6-medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.features_card-txt {
    color: var(--Design-gray-01, #999);

/* text-sp/small */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.features_link {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    text-decoration-line: underline;
}

.features_link::after {
    content: "";
    background-image: url(/camp/biz_owners_pp/img/icon_popup.svg);
    filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(922%) hue-rotate(152deg) brightness(90%) contrast(91%);
    background-size: 100% 100%;
    width: calc(100vw * (11 / 375));
    height: calc(100vw * (11 / 375));
    display: inline-block;
}

.features_highlight-img {
    margin-bottom: calc(100vw * (16 / 375));
    padding: 0 calc(100vw * (34 / 375));
}

.features_row-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (40 / 375));
}

.js-features--logos-cal .slick-track {
    transition-timing-function: linear !important;
}

.features_row-item.features_row-item--large .js-features--logos-cal,
.features_row-item.features_row-item--large-sp .js-features--logos-cal {
    margin: 0 calc(100vw * (-16 / 375));
}

.features_logos {
}

.features_row-item {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (16 / 375));
}

.features_head-ttl {
    display: flex;
    flex-direction: column;
}

.features_img-icon-plus {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: calc(100vw * (-0.4 / 375));
}

.features_detail {
    border: calc(100vw * (1 / 375)) solid var(--Design-white, #FFF);
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    padding: calc(100vw * (12 / 375)) calc(100vw * (8 / 375));
}

.features_detail-head-txt {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.features_detail-head.aco-label::after {
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
}

.features_detail-text {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    letter-spacing: calc(100vw * (-0.24 / 375));
}

.features_detail-body {
    padding-top: calc(100vw * (12 / 375));
}

.features_detail-item + .features_detail-item {
    margin-top: calc(100vw * (12 / 375));
}

.features_detail-item > .list {
    color: var(--wire-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.features_row-line {
    background: var(--Design-gray-02, #666);
    width: 100%;
    height: calc(100vw * (1 / 375));
}

.features_row-wrap + .features_row-line {
    margin: calc(100vw * (16 / 375)) 0;
}


@media screen and (min-width: 769px) {
    .features {
        width: 100%;
        margin: 0 auto;
        padding: 100px 16px 0;
        gap: 0;
    }

    .features_inner {
        gap: 40px;
        max-width: 736px;
        width: 100%;
        margin: 0 auto;
        margin-top: -70px;
    }

    .features_intro-label {
        font-size: 20px;
    }

    .features_intro-ttl {
        padding: 0;
    }

    .features_intro-ttl-flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    .features_intro-ttl-icon {
        font-size: 32px;
        letter-spacing: -0.64px;
    }

    .features_intro-ttl-line {
        background: linear-gradient(90deg, rgba(43, 43, 43, 0.00) 0%, #FFF 10%, #FFF 90%, rgba(43, 43, 43, 0.00) 100%);
        height: 2px;
        width: 90%;
        margin: 0 auto 12px;
    }

    .features_intro-ttl-line:last-child {
        margin: 12px auto 0;
        margin-bottom: 0;
    }

    .features_intro-img {
        padding: 0;
        max-width: 432px;
        margin: 0 auto;
    }

    .features_intro-img img {
        border-radius: 10px;
    }

    .features_intro-ttl-sub {
        font-size: 16px;
    }

    .features_intro-ttl-main {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .features_block {
        padding: 28px 48px;
        border-radius: 4px;
        gap: 24px;
    }

    .features_block-item {
        gap: 0;
    }

    .features_block-item + .features_block-item {
        margin-top: 40px;
    }

    .features_block-ttl {
        font-size: 42px;
        letter-spacing: -0.84px;
    }

    .features_head {
        margin-bottom: 12px;
    }

    .features_head-index {
        font-size: 28px;
        line-height: 150%; /* 42px */
        gap: 4px;
        margin-bottom: 0;
    }

    .features_head-index::after {
        height: 2px;
    }

    .features_head-ttl-main {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .features_txt {
        font-size: 16px;
    }

    .features_row-wrap {
        gap: 16px;
    }

    .features_row {
        gap: 32px;
    }

    .features_highlight-label {
        font-size: 24px;
        letter-spacing: -0.48px;
        margin-bottom: 12px;
    }

    .features_highlight-value {
        font-size: 80px;
        letter-spacing: -3.2px;
    }

    .features_highlight-unit.features_highlight-unit--large {
        font-size: 48px;
        letter-spacing: -1.92px;
    }

    .features_highlight-unit.features_highlight-unit--medium {
        font-size: 48px;
        letter-spacing: -1.92px;
        letter-spacing: 0.8px;
    }

    .features_highlight-unit.features_highlight-unit--small {
        font-size: 32px;
    }

    .features .note {
        font-size: 12px;
    }

    .features_highlight {
        width: auto;
        margin: 16px auto 0;
    }

    .features_highlight-wrap {
        margin-bottom: 8px;
    }

    .features_link {
    font-size: 13px;
    }

    .features_link::after {
        width: 13px;
        height: 13px;
    }

    .features_highlight-text {
        font-size: 13px;
    }

    .features_subttl-main {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .features_subttl-wrap.features_subttl-wrap--pcflex {
        display: flex;
        flex-direction: row;
    }

    .features_subttl-lead {
        font-size: 13px;
    }

    .features_row-item {
        gap: 16px;
    }

    .features_logo-item {
        padding: 0 6px;
    }

    .features_logo-img {
        margin-bottom: 8px;
    }

    .features_logo-value {
        max-width: 88px;
        width: 100%;
    }

    .features_highlight-label.features_highlight-label--muted {
        font-size: 20px;
        letter-spacing: -0.4px;
        margin-bottom: 16px;
    }

    .features_highlight-icon {
        max-width: 104px;
        width: 100%;
        margin-right: 10px;
    }

    .features_highlight-img {
        max-width: 243px;
        width: 100%;
        padding: 0;
        margin: 0 auto 16px;
    }

    .features_cards {
        gap: 40px 16px;
        margin-top: 40px;
    }

    .features_card {
        width: calc((100% - (16px* 3 )) / 4);
        gap: 12px;
    }

    .features_card-ttl {
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .features_card-txt {
        font-size: 13px;
    }

    .features_card-body {
        gap: 8px;
    }

    .features_logos.is-pc-static {
        display: flex;
        justify-content: center;
    }

    .features_logos.is-pc-static .features_logo-item {
        max-width: 112px;
        width: 100%;
    }

    .features_row-item.features_row-item--large .js-features--logos-cal {
        margin: 0 -48px;
    }

    .features_row-item.features_row-item--large-sp .js-features--logos-cal {
        margin: 0;
    }

    .features_img{
        max-width: 311px;
        width: 100%;
        margin: 0 auto;
    }
    .features_img-icon-plus {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .features_img.features_img--pcflex {
        display: flex;
        max-width: 536px;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .features_detail {
        padding: 12px;
        border: 2px solid var(--Design-white, #FFF);
    }

    .features_detail-head-txt {
        font-size: 16px;
    }

    .features_detail-head.aco-label::after {
        width: 16px;
        height: 16px;
    }

    .features_detail-body {
        padding-top: 12px;
    }

    .features_detail-text {
        font-size: 13px;
        letter-spacing: 0;
    }

    .features_detail-item > .list {
        font-size: 13px;
    }

    .features_detail-item + .features_detail-item {
        margin-top: 8px;
    }

    .features_cards + .note {
        margin-top: 40px;
    }

    .features_row-line {
        height: 1px;
        margin: 24px 0;
    }

    .features_row-wrap + .features_row-line {
        margin: 16px 0;
    }

}


/* info */
.info {
    padding: calc(100vw * (120 / 375)) calc(100vw * (16 / 375)) 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info img {
    width: 100%;
}


.info_inner {
    margin-top: calc(100vw * (40 / 375));
}

.info_intro {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (24 / 375));
    margin-bottom: calc(100vw * (32 / 375));
}

.info_intro-meadia {
    padding: 0 calc(100vw * (16 / 375));
}

.info_intro-list > li {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    position: relative;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.info_intro-list > li::before {
    content: '・';
}

.info_intro-list-item + .info_intro-list-item {
    margin-top: calc(100vw * (8 / 375));
}

.info .note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 16.5px */
}

.info_rows {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (16 / 375));
    padding-top: 32px;
    border-top: calc(100vw * (2 / 375)) solid var(--Design-gray-01, #999);
}

.info_row {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.info_label {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
}

.info_detail {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.info_detail-txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.info_link.info_link--out {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.info_link.info_link--out::after {
    content: "";
    background-image: url(/camp/biz_owners_pp/img/icon_popup.svg);
    background-size: 100% 100%;
    width: calc(100vw * (11 / 375));
    height: calc(100vw * (11 / 375));
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7486%) hue-rotate(274deg) brightness(104%) contrast(104%);
}

.info_detail-ordered {
    list-style: none;
    counter-reset: my-counter;
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.info_detail-ordered-itme {
    counter-increment: my-counter;
    padding-left: 1.5em;
    text-indent: -1.2em;
    color: var(--wire-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.info_detail-ordered-itme::before {
    content: counter(my-counter) ". ";
}

.info .note .info_link.info_link--out {
    color: var(--Design-gray-01, #999);
}

.info .note .info_link.info_link--out::after {
    filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(922%) hue-rotate(152deg) brightness(90%) contrast(91%);
}

.info_detail-list {}

.info_detail-list-itme {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.info_detail-list-itme::before {
    content: "・";
}

@media screen and (min-width: 769px) {
    .info {
        padding: 100px 16px 0;
        width: 100%;
        margin: 0 auto;
        gap: 24px;
    }

    .info_inner {
        margin: 0 auto;
        max-width: 736px;
    }

    .info_intro {
        display: flex;
        flex-direction: row;
        gap: 24px;
        margin-bottom: 32px;
    }

    .info_intro-meadia {
        max-width: 311px;
        width: 100%;
        padding: 0;
    }

    .info_intro-body {
        flex: 1;
    }

    .info_intro-list > li {
    font-size: 13px;
    }

    .info_intro-list-item + .info_intro-list-item {
        margin-top: 12px;
    }

    .info .note {
        font-size: 12px;
    }

    .info_row {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .info_rows {
        gap: 24px;
        padding-top: 32px;
        border-top: 2px solid var(--Design-gray-01, #999);
    }

    .info_label-wrap {
        max-width: 110px;
        width: 100%;
    }

    .info_detail {
        flex: 1;
        gap: 4px;
    }

    .info_label {
        font-size: 16px;
    }

    .info_detail-txt {
        font-size: 16px;
    }

    .info_link.info_link--out {
        font-size: 13px;
    }

    .info_link.info_link--out::after {
        width: 13px;
        height: 13px;
    }

    .info_detail-list-itme {
        font-size: 16px;
    }

    .info_detail-ordered-itme {
        font-size: 16px;
    }
}

/* シミュレーションエリア */
.simulation {}

.simulation_ttl {
    color: var(--Design-white, #FFF);
    text-align: center;

/* title-sp/h3-medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (32 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 44.8px */
    letter-spacing: calc(100vw * (-0.64 / 375));
    margin-bottom: calc(100vw * (24 / 375));
}

.simulation_item {}

.simulation_sliderarea {
    margin-top: 8px;
}

.simulation_sliderarea-item {}

.sliderarea_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sliderarea_label {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    display: flex;
    flex: 1;
    align-items: center;
}

.sliderarea_value {
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 1;
}

.sliderarea_unit {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    margin-left: calc(100vw * (2 / 375));
}

.sliderarea_value > input {
    color: var(--Design-white, #FFF);
    text-align: right;
    font-family: Roboto;
    font-size: calc(100vw * (22 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 33px */
    letter-spacing: calc(100vw * (-0.44 / 375));
}

.sliderarea_label-muted {
    color: var(--Design-gray-01, #999);

/* text-sp/small */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.simulation_sliderarea-item + .simulation_sliderarea-item {
    margin-top: calc(100vw * (8 / 375));
}

.simulation_item + .simulation_item {
    margin-top: calc(100vw * (16 / 375));
}

.noUi-touch-area {
}

.simulation .noUi-horizontal .noUi-handle {
    width: calc(100vw * (20 / 375));
    height: calc(100vw * (20 / 375));
    aspect-ratio: 1/1;
    fill: var(--Design-white, #FFF);
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    top: -1px;
    right: calc(100vw * (-10 / 375));
}

.simulation .noUi-horizontal .noUi-handle::before,
.simulation .noUi-horizontal .noUi-handle::after
{
    content: none;
}

.simulation .noUi-connect {
    background: var(--Design-gradation-01, linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%));
    background-repeat: no-repeat;
    background-size: var(--parent-width, 100vw);
}

.simulation .noUi-target {
    border-radius: calc(100vw * (40 / 375));
    border: none;
    box-shadow: none;
}

.simulation .noUi-connects {
    border-radius: calc(100vw * (40 / 375));
    background: var(--Design-gray-01, #999);
}

.noUi-connects {}

.simulation_result {}

.simulation_result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.simulation_result-label {
    color: var(--Design-white, #FFF);

/* title-sp/h6-medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.simulation_result-amount {
    display: flex;
    align-items: center;
}

.simulation_result-value {
    color: var(--Design-white, #FFF);
    text-align: right;
    font-family: Roboto;
    font-size: calc(100vw * (32 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 44.8px */
}

.simulation_result-unit {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    margin-left: calc(100vw * (4 / 375));
}

.simulation_conditions {
    border-bottom: 1px solid var(--Design-gray-02, #666);
    margin-top: calc(100vw * (4 / 375));
}

.conditions_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(100vw * (6 / 375));
}

.conditions_ttl::before,
.conditions_ttl::after {
    content: "";
    background: var(--Design-gray-02, #666);
    height: calc(100vw * (1 / 375));
    width: 100%;
    flex: 1;
}

.conditions_ttl-txt {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.conditions_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conditions_muted {
    color: var(--Design-white, #FFF);
    

/* title-sp/h6-medium */
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.conditions_amount {
    display: flex;
    align-items: center;
    gap: calc(100vw * (4 / 375));
}

.conditions_unit {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
}

.conditions_value {
    color: var(--Design-white, #FFF);
    text-align: right;
    font-family: Roboto;
    font-size: calc(100vw * (32 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 44.8px */
}

.simulation_conditions + .note {
    margin-top: calc(100vw * (12 / 375));
}

.simulation_icon {
    width: calc(100vw * (27 / 375));
    display: block;
    margin: calc(100vw * (8 / 375)) auto;
}


@media screen and (min-width: 769px) {
    .simulation_ttl {
        font-size: 36px;
        letter-spacing: -0.72px;
        margin-bottom: 24px;
    }

    .sliderarea_label {
        font-size: 14px;
        line-height: 150%; /* 21px */
    }

    .sliderarea_value > input {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .sliderarea_unit {
        font-size: 14px;
        margin-left: 4px;
    }

    .sliderarea_label-muted {
        font-size: 13px;
        margin-left: 2px;
    }

    .simulation .noUi-horizontal .noUi-handle {
        width: 16px;
        height: 16px;
        top: -3px;
        right: -5px;
    }

    .simulation .noUi-connects {
        border-radius: 40px;
    }

    .simulation .noUi-target {
        border-radius: 40px;
        height: 10px;
    }

    .simulation_sliderarea-item + .simulation_sliderarea-item {
        margin-top: 8px;
    }

    .simulation_item + .simulation_item {
        margin-top: 16px;
    }

    .simulation_icon {
        max-width: 27px;
        width: 100%;
        margin: 8px auto;
    }

    .simulation_result-label {
        font-size: 16px;
    }

    .simulation_result-value {
        font-size: 32px;
    }

    .simulation_result-unit {
        font-size: 14px;
        margin-left: 4px;
    }

    .simulation_result {
        display: flex;
        gap: 54px;
        padding: 0 12px;
    }

    .simulation_result-item {
        flex: 1;
    }

    .conditions_ttl {
        gap: 6px;
        margin-bottom: 6px;
    }

    .conditions_ttl-txt {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .conditions_ttl::before, .conditions_ttl::after {
        height: 1px;
    }

    .conditions_muted {
        font-size: 16px;
    }

    .conditions_amount {
        gap: 0;
    }

    .conditions_unit {
        font-size: 14px;
        margin-left: 4px;
    }

    .conditions_value {
        font-size: 32px;
    }

    .simulation_conditions.simulation_conditions--kakaku .conditions_value {
        font-size: 24px;
    }

    .conditions_body {
        display: flex;
        justify-content: space-between;
        padding: 0 12px;
    }

    .conditions_item {
        flex-direction: column;
        flex: 1;
    }

    .simulation_conditions {
        margin-top: 12px;
    }

    .simulation_conditions + .note {
        margin-top: 12px;
    }
}

/* footer */
footer {
    display: flex;
    padding: calc(100vw * (24 / 375)) calc(100vw * (16 / 375)) calc(100vw * (72 / 375)) calc(100vw * (16 / 375));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(100vw * (24 / 375));
    background: var(--Design-black, #000);
    font-family: "Noto Sans JP";
}
.footer-item_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * (16 / 375));
    color: var(--Design-white, #FFF);
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.footer-copyright {
    text-align: center;
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--Design-white, #FFF);
}
footer .textlink::after {
    background-image: url(/camp/biz_owners_pp/img/icon_popup-white.svg);
}

@media screen and (min-width: 769px) {
    footer {
        padding: 48px 16px 107px 16px;
        gap: 32px;
    }
    .footer-item_wrap {
        gap: 16px;
        font-size: 12px;
    }
    .footer-copyright {
        font-size: 11px;
    }
}


/* indicate */
.js-indicate-ready.js-indicate-fade {
	opacity: 0;
	transform: translateY(25px);
	transition-property: opacity, transform;
}

.js-indicate-start.js-indicate-fade {
	opacity: 1;
	transform: translateY(0);
	transition-duration: 0.65s;
	transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
}

