/*
 * 寸法・タイポの px はリキッド化: calc(デザインpx / var(--break0x) * 100vw)
 * 768px以上（メイン幅1400px相当以上のPCレイアウト）: var(--break03) … parts.css で 1920 / 1800 / 1600 等
 * 767px以下（SP）: var(--break02) … 750 等
 */
@media (min-width: 768px) {
    .fv-header--mobile {
        display: none !important;
    }

    .header-sp {
        display: none !important;
    }

    .site {
        width: 100%;
        position: relative;
        background-color: #f2f0ee;
        overflow: hidden;
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
        font-size: calc(24 / var(--break03) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .section-fv {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        isolation: isolate;
        gap: calc(48 / var(--break03) * 100vw);
        background-color: #af2f89;
        background-image: url("https://t-8.jp/ai-blog-seo-asset/img/hero-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        flex-shrink: 0;
        text-align: left;
        font-size: calc(20 / var(--break03) * 100vw);
        color: #fff;
    }

    .header {
        width: 100%;
        height: calc(80 / var(--break03) * 100vw);
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, .2);
        box-sizing: border-box;
        z-index: 1000;
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    }

    .header.is-visible {
        transform: translateY(0);
    }

    .header.is-on-hero {
        background-color: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .header-container {
        height: calc(100 / var(--break03) * 100vw);
        width: 100%;
        max-width: calc(1700 / var(--break03) * 100vw);
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(20 / var(--break03) * 100vw) calc(20 / var(--break03) * 100vw) calc(20 / var(--break03) * 100vw) calc(50 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(20 / var(--break03) * 100vw);
        max-width: calc(1700 / var(--break03) * 100vw);
    }

    /* FV上（.is-on-hero）: 白ロゴ / スクロール後: カラーロゴ */
    .header-logo-wrap {
        width: calc(270 / var(--break03) * 100vw);
        max-height: calc(100 / var(--break03) * 100vw);
        flex-shrink: 0;
        display: grid;
        grid-template: 1fr / 1fr;
        place-items: center start;
        align-self: center;
        line-height: 0;
    }

    .header-logo-wrap > img {
        grid-area: 1 / 1;
        width: 100%;
        max-height: calc(100 / var(--break03) * 100vw);
        height: auto;
        object-fit: contain;
        object-position: left center;
        transition: opacity 0.3s ease;
    }

    .header-logo-img--color {
        opacity: 0;
        pointer-events: none;
    }

    .logo-ai-blog-seo-whitelogo-ai-icon {
        filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
        opacity: 1;
        pointer-events: auto;
    }

    .header.is-on-hero .header-logo-img--color {
        opacity: 0;
        pointer-events: none;
    }

    .header.is-on-hero .logo-ai-blog-seo-whitelogo-ai-icon {
        opacity: 1;
        pointer-events: auto;
    }

    .header:not(.is-on-hero) .logo-ai-blog-seo-whitelogo-ai-icon {
        opacity: 0;
        pointer-events: none;
    }

    .header:not(.is-on-hero) .header-logo-img--color {
        opacity: 1;
        pointer-events: auto;
    }

    /* ヘッダーCTA矢印: FV上 arw.svg / スクロール後 arw-white.svg（グラデボタン用） */
    .header .btn-primary .btn-arrow {
        display: inline-grid;
        grid-template: 1fr / 1fr;
        place-items: center;
        line-height: 0;
    }

    .header .btn-primary .btn-arrow > .btn-arrow-img {
        grid-area: 1 / 1;
        width: calc(30 / var(--break03) * 100vw);
        height: auto;
        transition: opacity 0.3s ease;
    }

    .header .header-cta-arrow-img--bar {
        opacity: 0;
        pointer-events: none;
    }

    .header.is-on-hero .header-cta-arrow-img--fv {
        opacity: 1;
        pointer-events: auto;
    }

    .header.is-on-hero .header-cta-arrow-img--bar {
        opacity: 0;
        pointer-events: none;
    }

    .header:not(.is-on-hero) .header-cta-arrow-img--fv {
        opacity: 0;
        pointer-events: none;
    }

    .header:not(.is-on-hero) .header-cta-arrow-img--bar {
        opacity: 1;
        pointer-events: auto;
    }

    .navi {
        display: flex;
        align-items: center;
        gap: calc(48 / var(--break03) * 100vw);
    }

    .navi-intem-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(48 / var(--break03) * 100vw);
    }

    .navi-intem {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navi-intem2 {
        position: relative;
        letter-spacing: 0.02em;
        font-weight: 800;
        color: #d71c7e;
        transition: color 0.3s;
    }

    .header.is-on-hero .navi-intem2 {
        color: #fff;
    }

    .btn-primary {
        box-shadow: 0 calc(2.0740740299224854 / var(--break03) * 100vw) calc(12.44 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(518 / var(--break03) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(12.4 / var(--break03) * 100vw) calc(16.6 / var(--break03) * 100vw) calc(12.4 / var(--break03) * 100vw) calc(33.2 / var(--break03) * 100vw);
        gap: calc(15.6 / var(--break03) * 100vw);
        text-align: center;
    }

    .btn-primary .div {
        position: relative;
        letter-spacing: 0.02em;
        font-weight: 800;
        color: #fff;
    }

    .is-on-hero .btn-primary {
        color: #d71c7e;
        background: #fff;
    }

     .is-on-hero .btn-primary .div {
        position: relative;
        letter-spacing: 0.02em;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(63.16deg, #d71c7e, #af2f89);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .vector-icon {
        width: calc(30 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .fv-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(120 / 1920  * 100vw) 0 0;
        z-index: 1;
        flex-shrink: 0;
        font-size: calc(56 / 1920  * 100vw);
    }

    .fv-content {
        width: 100%;
        max-width: calc(1600 / var(--break04) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
    }

    .fv-copy-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(48 / var(--break03) * 100vw);
    }

    .fv-catch-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(80 / var(--break03) * 100vw);
    }

    .fv-heading-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .fv-catch-top {
        position: relative;
        letter-spacing: 0.05em;
        font-weight: 900;
    }

    .fv-catch-main {
        position: relative;
        letter-spacing: 0;
        font-size: calc(70 / 1920 * 100vw);
    }

    .ai {
        font-weight: 800;
    }

    .span {
        font-size: calc(56 / var(--break03) * 100vw);
        font-weight: 900;
    }

    .fv-text-group {
        width: calc(1075 / var(--break03) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(32 / var(--break03) * 100vw);
        font-size: calc(36 / var(--break03) * 100vw);
    }

    .fv-label-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(12.2 / var(--break03) * 100vw);
    }

    .fv-label-01 {
        width: calc(520 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(4 / var(--break03) * 100vw) calc(18 / var(--break03) * 100vw) calc(6 / var(--break03) * 100vw) calc(12 / var(--break03) * 100vw);
        box-sizing: border-box;
    }

    .b {
        position: relative;
        letter-spacing: 0.04em;
        background: linear-gradient(63.16deg, #d71c7e, #af2f89);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .fv-label-02 {
        width: calc(410 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(4 / var(--break03) * 100vw) calc(18 / var(--break03) * 100vw) calc(6 / var(--break03) * 100vw) calc(12 / var(--break03) * 100vw);
        box-sizing: border-box;
    }

    .fv-description {
        align-self: stretch;
        position: relative;
        font-size: calc(24 / var(--break04) * 100vw);
        letter-spacing: 0.02em;
    }

    .fv-cta-group {
        height: calc(180 / var(--break03) * 100vw);
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(24 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(16 / var(--break03) * 100vw);
        text-align: center;
        font-size: calc(32 / var(--break03) * 100vw);
    }

    .fv-note {
        width: calc(478 / var(--break03) * 100vw);
        position: relative;
        font-size: calc(22 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .btn-primary-main {
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(999 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(24 / var(--break03) * 100vw) calc(60/ var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) ;
        gap: calc(30 / var(--break03) * 100vw);
        flex-shrink: 0;
    }

    .b2 {
        position: relative;
        letter-spacing: 0.02em;
        background: linear-gradient(63.16deg, #d71c7e, #af2f89);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .vector-icon2 {
        width: calc(60 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .fv-official-banner-icon {
        width: calc(410 / var(--break03) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(755 / var(--break03) * 100vw);
        right: 0;
        max-height: 100%;
        object-fit: cover;
        z-index: 2;
        flex-shrink: 0;
    }

    .fv-image-group {
        width: calc(1076 / 1920 * 100vw);
        height: calc(542 / 1920  * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(267.75 / 1920  * 100vw);
        right: 0;
        z-index: 3;
        flex-shrink: 0;
    }

    .fv-image-pc-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: calc(1152.8 / var(--break03) * 100vw);
        height: calc(540 / var(--break03) * 100vw);
        object-fit: contain;
    }

    .fv-image-phone-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .section-top-curve-icon {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        height: calc(177 / var(--break03) * 100vw);
        object-fit: cover;
        z-index: 4;
        flex-shrink: 0;
        position: relative;
        bottom: -2px;
    }

    .section-about {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        background-color: #f2eff0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 0 calc(160 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
    }

    .about-heading-group {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(32 / var(--break03) * 100vw);
    }

    .label-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break03) * 100vw) calc(33 / var(--break03) * 100vw);
        gap: calc(16 / var(--break03) * 100vw);
        color: #d71c7e;
        font-family: 'Josefin Sans';
    }

    .label {
        position: relative;
        letter-spacing: 0.02em;
    }

    .divider {
        width: calc(122 / var(--break03) * 100vw);
        height: calc(2 / var(--break03) * 100vw);
        position: relative;
        border-top: calc(2 / var(--break03) * 100vw) solid #d71c7e;
        box-sizing: border-box;
    }

    .title-sub {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(28 / var(--break03) * 100vw);
    }

    .header-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(72 / var(--break03) * 100vw);
    }

    .header-title2 {
        position: relative;
        letter-spacing: 0.05em;
        font-weight: 800;
        line-height: 1.4;
    }

    .span3 {
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .span-plain {
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: currentColor;
    }

    .description {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(20 / var(--break03) * 100vw);
    }

    .about-strength-group {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: calc(48 / var(--break03) * 100vw) calc(20 / var(--break03) * 100vw);
        font-size: calc(28 / var(--break03) * 100vw);
        color: #d71c7e;
    }

    .about-strength-card-01 {
        width: calc(310 / var(--break03) * 100vw);
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break03) * 100vw);
        background-color: #fff;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: calc(48 / var(--break03) * 100vw) calc(20 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(48 / var(--break03) * 100vw);
    }

    .about-image-01-icon,
    .about-image-02-icon,
    .about-image-03-icon,
    .about-image-04-icon {
        width: calc(158 / var(--break03) * 100vw);
        height: calc(158 / var(--break03) * 100vw);
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .about-strength-card-title {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.04em;
    }

    .section-reasons {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        border-radius: calc(220 / var(--break03) * 100vw) 0 0 0;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
    }

    .reasons-container {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
        font-size: calc(180 / var(--break03) * 100vw);
        color: #d71c7e;
    }

    .reasons-card-list {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(48 / var(--break03) * 100vw);
    }

    .reasons-card-01 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(24 / var(--break03) * 100vw);
        gap: calc(20 / var(--break03) * 100vw);
    }

    .reasons-content {
        width: calc(887 / var(--break03) * 100vw);
        border-radius: calc(12 / var(--break03) * 100vw);
        display: flex;
        align-items: flex-start;
        padding: calc(24 / var(--break03) * 100vw);
        box-sizing: border-box;
    }

    .reasons-content-inner {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(24 / var(--break03) * 100vw);
    }

    .reasons-number {
        display: block;
        width: auto;
        height: calc(80 / var(--break03) * 100vw);
        object-fit: contain;
    }

    .reasons-title {
        position: relative;
        font-size: calc(48 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        color: #d71c7e;
    }

    .reasons-description {
        align-self: stretch;
        position: relative;
        font-size: calc(20 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        line-height: calc(40 / var(--break03) * 100vw);
        font-weight: 600;
        color: #333;
    }

    .reasons-image-01-icon {
        align-self: stretch;
        width: calc(286.8 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .reasons-image-02-icon {
        width: calc(386 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .reasons-image-03-icon {
        align-self: stretch;
        width: calc(449.7 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .section-features {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        gap: calc(120 / var(--break03) * 100vw);
        background-image: url("https://t-8.jp/ai-blog-seo-asset/img/features-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        flex-shrink: 0;
        color: #d71c7e;
    }

    .label-group3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break03) * 100vw) calc(33 / var(--break03) * 100vw);
        gap: calc(16 / var(--break03) * 100vw);
        font-family: 'Josefin Sans';
    }

    .description5 {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(20 / var(--break03) * 100vw);
        color: #333;
    }

    .features-container {
        width: 100%;
        max-width: calc(1500 / var(--break03) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(80 / var(--break03) * 100vw);
        text-align: left;
        font-size: calc(48 / var(--break03) * 100vw);
    }

    .features-block-01 {
        width: 100%;
        max-width: calc(1500 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: calc(80 / var(--break03) * 100vw);
    }

    .features-image-01-icon {
        width: calc(780 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .features-block-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .features-block-content2 {
        align-self: stretch;
        border-radius: calc(12 / var(--break03) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .iconarticle {
        width: calc(100 / var(--break03) * 100vw);
        max-height: 100%;
    }

    .features-block-title {
        width: calc(601 / var(--break03) * 100vw);
        position: relative;
        letter-spacing: 0.02em;
    }

    .features-block-label {
        display: flex;
        align-items: center;
        font-size: calc(22 / var(--break03) * 100vw);
    }

    .features-block-label-icon {
        display: flex;
        align-items: center;
    }

    .feature-icon {
        width: calc(28 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .features-block-description {
        align-self: stretch;
        position: relative;
        font-size: calc(18 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 600;
        color: #333;
    }

    .features-image-02-icon {
        width: calc(814.5 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .features-image-03-icon {
        width: calc(820 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .iconschedule {
        width: calc(100 / var(--break03) * 100vw);
        height: calc(100 / var(--break03) * 100vw);
        object-fit: cover;
    }

    .features-image-04-icon {
        width: calc(780.5 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .section-function {
        align-self: stretch;
        border-radius: 0 0 calc(220 / var(--break03) * 100vw) 0;
        background: linear-gradient(66.67deg, #f80759, #bc4e9c);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
        color: #fff;
        font-family: 'Josefin Sans';
    }

    .label-group4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break03) * 100vw) calc(33 / var(--break03) * 100vw);
        gap: calc(16 / var(--break03) * 100vw);
    }

    .divider4 {
        width: calc(122 / var(--break03) * 100vw);
        height: calc(2 / var(--break03) * 100vw);
        position: relative;
        border-top: calc(2 / var(--break03) * 100vw) solid #fff;
        box-sizing: border-box;
    }

    .header-title7 {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(72 / var(--break03) * 100vw);
        font-family: 'Noto Sans JP';
    }

    .function-container {
        width: 100%;
        max-width: calc(1500 / var(--break03) * 100vw);
        border-radius: calc(80 / var(--break03) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: calc(28 / var(--break03) * 100vw);
        color: #d71c7e;
        font-family: 'Noto Sans JP';
    }

    .function-container2 {
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: center;
        max-width: 100%;
    }

    .function-card-list {
        flex: 1;
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        align-content: flex-start;
        padding: calc(32 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(32 / var(--break03) * 100vw);
        max-width: 100%;
    }

    .function-card {
        width: calc(330 / var(--break03) * 100vw);
        box-shadow: 0 calc(8 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: calc(24 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .function-card-icon-wrap {
        width: calc(110 / var(--break03) * 100vw);
        height: calc(110 / var(--break03) * 100vw);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    .function-card-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: auto;
    }

    .function-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .function-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        font-size: calc(14 / var(--break03) * 100vw);
        color: #333;
    }

    .function-list .features-block-label-icon > .txt_col02,
    .pricing-feature-list .features-block-label-icon > .txt_col02 {
        flex-shrink: 0;
        width: calc(24 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .bullet-text {
        position: relative;
        line-height: calc(28 / var(--break03) * 100vw);
    }

    .iconimage {
        width: calc(100 / var(--break03) * 100vw);
        height: calc(102 / var(--break03) * 100vw);
    }

    .iconanalysis {
        width: calc(100 / var(--break03) * 100vw);
        max-height: 100%;
        object-fit: cover;
    }

    .section-search-strategy {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
    }

    .search-strategy-card-list {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        align-content: flex-start;
        padding: calc(24 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(48 / var(--break03) * 100vw) calc(20 / var(--break03) * 100vw);
        text-align: left;
        font-size: calc(96 / var(--break03) * 100vw);
        color: #d71c7e;
    }

    .strategy-card {
        width: calc(420 / var(--break03) * 100vw);
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: calc(32 / var(--break03) * 100vw) calc(32 / var(--break03) * 100vw) calc(40 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(32 / var(--break03) * 100vw);
    }

    .search-strategy-card-header {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: calc(20 / var(--break03) * 100vw);
        text-align: center;
    }

    .search-strategy-card-keyword {
        position: relative;
        letter-spacing: 0.05em;
        font-weight: 800;
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .iconseo2 {
        height: calc(100 / var(--break03) * 100vw);
        width: calc(100 / var(--break03) * 100vw);
    }

    .search-strategy-card-title {
        align-self: stretch;
        position: relative;
        font-size: calc(28 / var(--break03) * 100vw);
        letter-spacing: 0.04em;
    }

    .section-image-styles {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
    }

    .image-styles-container {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: calc(18 / var(--break03) * 100vw);
        color: #fff;
    }

    .image-styles-container2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .style-selector {
        align-self: stretch;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: calc(16 / var(--break03) * 100vw);
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
    }

    .style-btn-01 {
        height: calc(40 / var(--break03) * 100vw);
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(999 / var(--break03) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(4 / var(--break03) * 100vw) calc(16 / var(--break03) * 100vw);
        box-sizing: border-box;
    }

    .image-styles-preview {
        border-radius: calc(24 / var(--break03) * 100vw);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .image-styles-preview-container {
        background-color: #fff;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(68 / var(--break03) * 100vw) 0;
        position: relative;
        isolation: isolate;
        gap: calc(10 / var(--break03) * 100vw);
    }

    .image-styles-preview-track {
        width: calc(1080 / var(--break03) * 100vw);
        height: calc(500 / var(--break03) * 100vw);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        z-index: 0;
    }

    .image-styles-preview-item {
        display: flex;
        align-items: center;
        gap: calc(24 / var(--break03) * 100vw);
        flex-shrink: 0;
        transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    .image-styles-preview-img {
        height: calc(500 / var(--break03) * 100vw);
        width: calc(900 / var(--break03) * 100vw);
        object-fit: contain;
        background-color: #fff;
   }

    .style-btn-01.is-active {
        background: linear-gradient(90deg, #c0157a, #e8155a);
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(248, 7, 89, 0.38);
        font-weight: 700;
        opacity: 1;
    }

    .image-styles-arrow-left-icon,
    .image-styles-arrow-right-icon {
        width: calc(56 / var(--break03) * 100vw);
        height: calc(56 / var(--break03) * 100vw);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        border: none;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s;
        padding: 0;
    }

    .image-styles-arrow-left-icon img,
    .image-styles-arrow-right-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .image-styles-arrow-left-icon {
        left: calc(16 / var(--break03) * 100vw);
    }

    .image-styles-arrow-right-icon {
        right: calc(16 / var(--break03) * 100vw);
        left: auto;
    }

    .image-styles-arrow-left-icon:hover,
    .image-styles-arrow-right-icon:hover {
        opacity: 0.75;
    }

    .section-flow {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) calc(80 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
        color: #d71c7e;
    }

    .title-sub5 {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(28 / var(--break03) * 100vw);
        color: #333;
    }

    .flow-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: calc(28 / var(--break03) * 100vw);
    }

    .flow-container2 {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .flow-list {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        align-content: center;
        padding: calc(24 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(24 / var(--break03) * 100vw) calc(20 / var(--break03) * 100vw);
    }

    .flow-card-01 {
        width: calc(380 / var(--break03) * 100vw);
        border-radius: calc(16 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: calc(40 / var(--break03) * 100vw) calc(32 / var(--break03) * 100vw);
        box-sizing: border-box;
    }

    .flow-card-inner {
        width: 100%;
        display: block;
        max-width: 100%;
    }

    .flow-card-inner > .iconedit {
        display: block;
        margin: 0 auto calc(32 / var(--break03) * 100vw);
    }

    .flow-card-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .flow-card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flow-card-description {
        align-self: stretch;
        position: relative;
        font-size: calc(20 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        line-height: calc(40 / var(--break03) * 100vw);
        font-weight: 600;
        color: #333;
        text-align: left;
    }

    .section-flow .about-strength-card-title {
        text-align: center;
    }

    .flow-arrow-icon {
        align-self: center;
        flex-shrink: 0;
        height: calc(160 / var(--break03) * 100vw);
        width: calc(54 / var(--break03) * 100vw);
        position: relative;
        object-fit: contain;
    }

    .flow-list picture {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        align-self: center;
    }

    .iconedit {
        width: calc(110 / var(--break03) * 100vw);
        max-height: 100%;
        flex-shrink: 0;
    }

    .section-strength {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        border-radius: 0 0 0 calc(220 / var(--break03) * 100vw);
        background: linear-gradient(58.28deg, #f80759, #bc4e9c);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
        color: #fff;
        font-family: 'Josefin Sans';
    }

    .strength-container {
        width: 100%;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: left;
        font-size: calc(28 / var(--break03) * 100vw);
        color: #d71c7e;
        font-family: 'Noto Sans JP';
        box-sizing: border-box;
    }

    .strength-container2 {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        align-content: flex-start;
        padding: calc(24 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(48 / var(--break03) * 100vw);
    }

    .strength-card-01 {
        width: calc(650 / var(--break03) * 100vw);
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break03) * 100vw);
        background-color: #fff;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: flex-start;
        padding: calc(24 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(32 / var(--break03) * 100vw);
    }

    .iconmedical {
        width: calc(70 / var(--break03) * 100vw);
        max-height: 100%;
    }

    .strength-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .strength-card-description {
        align-self: stretch;
        position: relative;
        font-size: calc(16 / var(--break03) * 100vw);
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 500;
        color: #333;
    }

    .iconupdate {
        width: calc(70 / var(--break03) * 100vw);
        max-height: 100%;
        object-fit: cover;
    }

    .section-pricing {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        position: relative;
        isolation: isolate;
        gap: calc(80 / var(--break03) * 100vw);
        flex-shrink: 0;
        color: #d71c7e;
        font-family: 'Josefin Sans';
    }

    .pricing-heading-group {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(32 / var(--break03) * 100vw);
        z-index: 0;
    }

    .pricing-content {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(32 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(24 / var(--break03) * 100vw);
        z-index: 1;
        text-align: left;
        font-size: calc(28 / var(--break03) * 100vw);
        color: #fff;
        font-family: 'Noto Sans JP';
    }

    .pricing-card-monthly {
        width: calc(1200 / var(--break03) * 100vw);
        display: flex;
        align-items: stretch;
        justify-content: center;
    }

    .pricing-card-header {
        align-self: stretch;
        width: calc(280 / var(--break03) * 100vw);
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break03) * 100vw) 0 0 calc(12 / var(--break03) * 100vw);
        background: linear-gradient(45.63deg, #f80759, #bc4e9c);
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(24 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
    }

    .pricing-card-title {
        position: relative;
        letter-spacing: 0.04em;
        font-weight: 600;
    }

    .pricing-card-body {
        flex: 1;
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: 0 calc(12 / var(--break03) * 100vw) calc(12 / var(--break03) * 100vw) 0;
        background-color: #fff;
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: calc(32 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw);
        text-align: center;
        font-size: calc(56 / var(--break03) * 100vw);
        color: #d71c7e;
        font-family: Roboto;
    }

    .pricing-amount-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(24 / var(--break03) * 100vw);
        max-width: 100%;
    }

    .pricing-price-row {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(8 / var(--break03) * 100vw);
    }

    .price-amount {
        align-self: stretch;
        height: calc(84 / var(--break03) * 100vw);
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(4 / var(--break03) * 100vw);
    }

    .b4 {
        position: relative;
        font-size: calc(22 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        font-family: 'Noto Sans JP';
    }

    .pricing-post-frequency {
        position: relative;
        font-size: calc(22 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        font-family: 'Noto Sans JP';
        color: #333;
        text-align: left;
    }

    .pricing-feature-box {
        align-self: stretch;
        border-radius: calc(16 / var(--break03) * 100vw);
        background-color: #f7f3f0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: calc(16 / var(--break03) * 100vw);
        text-align: left;
        font-size: calc(18 / var(--break03) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .pricing-feature-list {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
        gap: calc(4 / var(--break03) * 100vw) calc(16 / var(--break03) * 100vw);
        max-width: 100%;
    }

    .bullet-text25 {
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 600;
    }

    .pricing-note {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(4 / var(--break03) * 100vw);
        text-align: center;
        color: #d71c7e;
    }

    .function-list9 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
    }

    .pricing-note2 {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: calc(8 / var(--break03) * 100vw);
    }

    .pricing-note-description {
        position: relative;
        font-size: calc(18 / var(--break03) * 100vw);
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 600;
        color: #333;
        text-align: left;
    }

    .pricing-note-caption {
        position: relative;
        font-size: calc(14 / var(--break03) * 100vw);
        line-height: calc(28 / var(--break03) * 100vw);
        color: #333;
    }

    .pricing-card-header2 {
        align-self: stretch;
        width: calc(280 / var(--break03) * 100vw);
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break03) * 100vw) 0 0 calc(12 / var(--break03) * 100vw);
        background: linear-gradient(86.64deg, #f80759, #bc4e9c);
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: calc(24 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
    }

    .pricing-pricing-card-body {
        flex: 1;
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: 0 calc(12 / var(--break03) * 100vw) calc(12 / var(--break03) * 100vw) 0;
        background-color: #fff;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: calc(24 / var(--break03) * 100vw) 0;
        font-size: calc(40 / var(--break03) * 100vw);
        color: #333;
        font-family: Roboto;
    }

    .pricing-price-row2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing-price-value {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(6.6 / var(--break03) * 100vw);
    }

    .b5 {
        position: relative;
        letter-spacing: 0.05em;
    }

    .section-pricing > picture {
        display: contents;
    }

    .pricing-badge-icon {
        width: calc(315.5 / var(--break03) * 100vw);
        height: calc(290.3 / var(--break03) * 100vw);
        margin: 0 !important;
        position: absolute;
        top: calc(210.29 / var(--break03) * 100vw);
        left: calc(1313 / var(--break03) * 100vw);
        object-fit: contain;
        z-index: 2;
    }

    .section-cta {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
        color: #d71c7e;
    }

    .title-sub8 {
        position: relative;
        letter-spacing: 0.04em;
        white-space: pre-wrap;
    }

    .cta-container {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        gap: calc(48 / var(--break03) * 100vw);
        font-size: calc(20 / var(--break03) * 100vw);
        color: #333;
    }

    .cta-media {
        flex: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .cta-question {
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        gap: calc(48 / var(--break03) * 100vw);
        flex-shrink: 0;
    }

    .cta-question-list {
        align-self: stretch;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(4 / var(--break03) * 100vw);
    }

    .cta-question-01 {
        display: flex;
        align-items: center;
        gap: calc(10 / var(--break03) * 100vw);
    }

    .cta-question-01-child {
        align-self: stretch;
        width: calc(35 / var(--break03) * 100vw);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .cta-problem {
        width: calc(443 / var(--break03) * 100vw);
        display: flex;
        align-items: flex-start;
        padding: calc(16 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        position: relative;
        isolation: isolate;
    }

    .speech-content {
        flex: 1;
        border-radius: calc(999 / var(--break03) * 100vw);
        background-color: #f2f0ee;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(24 / var(--break03) * 100vw) calc(64 / var(--break03) * 100vw);
        z-index: 0;
        flex-shrink: 0;
    }

    .speech-text {
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(40 / var(--break03) * 100vw);
        font-weight: 600;
    }

    .speech-quote {
        height: calc(56 / var(--break03) * 100vw);
        width: calc(31 / var(--break03) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(4 / var(--break03) * 100vw);
        left: calc(27 / var(--break03) * 100vw);
        font-size: calc(64 / var(--break03) * 100vw);
        line-height: calc(56 / var(--break03) * 100vw);
        font-weight: 800;
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: left;
        display: flex;
        align-items: center;
        z-index: 1;
        flex-shrink: 0;
    }

    .cta-illust-icon {
        width: calc(163.5 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .cta-content {
        align-self: stretch;
        flex: 0.954;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: calc(24 / var(--break03) * 100vw);
        text-align: left;
    }

    .cta-label {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(40 / var(--break03) * 100vw);
        font-weight: 600;
    }

    .hero-spacer {
        align-self: stretch;
        height: calc(24 / var(--break03) * 100vw);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .hero-cta {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(16 / var(--break03) * 100vw);
        text-align: center;
        font-size: calc(22 / var(--break03) * 100vw);
        color: #d71c7e;
    }

    .cta-caption {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        flex-shrink: 0;
    }

    .btn-primary-sub {
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(999 / var(--break03) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(24 / var(--break03) * 100vw) calc(40/ var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) calc(50/ var(--break03) * 100vw) ;
        gap: calc(30 / var(--break03) * 100vw);
        flex-shrink: 0;
        font-size: calc(32 / var(--break03) * 100vw);
        color: #fff;
    }

    .section-faq {
        width: calc(1923 / var(--break03) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(120 / var(--break03) * 100vw);
        flex-shrink: 0;
        color: #d71c7e;
        font-family: 'Josefin Sans';
    }

    .section-faq .faq-heading-group {
        width: calc(1000 / var(--break03) * 100vw);
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .section-faq .title-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .section-faq .label-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break03) * 100vw) calc(33 / var(--break03) * 100vw);
        gap: calc(16 / var(--break03) * 100vw);
        color: #d71c7e;
        font-family: 'Josefin Sans';
    }

    .section-faq .header-title {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(72 / var(--break03) * 100vw);
        font-family: 'Noto Sans JP';
    }

    .section-faq .header-title .header-title2 {
        margin: 0;
    }

    .faq-question-list {
        width: calc(1000 / var(--break03) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(10 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(32 / var(--break03) * 100vw);
        text-align: left;
        font-size: calc(22 / var(--break03) * 100vw);
        font-family: 'Noto Sans JP';
    }

    .faq {
        width: calc(980 / var(--break03) * 100vw);
        min-height: 0;
        min-width: 0;
        height: auto;
        border-radius: calc(16 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: calc(26 / var(--break03) * 100vw) calc(32 / var(--break03) * 100vw);
        box-sizing: border-box;
        gap: calc(16 / var(--break03) * 100vw);
        overflow: hidden;
    }

    .title {
        position: relative;
        letter-spacing: 0.02em;
        display: inline-block;
        max-width: calc(650 / var(--break03) * 100vw);
    }

    .section-faq .heading-parent {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .section-faq .faq-accordion-trigger {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: calc(16 / var(--break03) * 100vw);
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        border: none;
        background: transparent;
        font: inherit;
        color: inherit;
        text-align: left;
        box-sizing: border-box;
        cursor: default;
        pointer-events: none;
    }

    .section-faq .faq-accordion-trigger .line-roundedchevron-down {
        display: none;
    }

    .section-faq .heading {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: flex-start;
        gap: calc(16 / var(--break03) * 100vw);
    }

    .section-faq .faq .heading .title {
        width: auto;
        max-width: none;
        flex-shrink: 0;
        font-weight: 800;
        color: #d71c7e;
        font-family: 'Noto Sans JP';
        font-size: calc(22 / var(--break03) * 100vw);
        line-height: calc(36 / var(--break03) * 100vw);
    }

    .title2 {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
    }

    .section-faq .faq .title2 {
        flex: 1;
        min-width: 0;
        margin: 0;
        font-size: calc(22 / var(--break03) * 100vw);
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 500;
        color: #d71c7e;
        font-family: 'Noto Sans JP';
    }

    .faq-answer-panel {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .faq-answer-body {
        width: 100%;
        max-width: 100%;
        position: relative;
        font-size: calc(16 / var(--break03) * 100vw);
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 500;
        color: #444;
        display: block;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .footer {
        width: 100%;
        background-color: #fff;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(120 / var(--break03) * 100vw) 0 calc(32 / var(--break03) * 100vw);
        gap: calc(64 / var(--break03) * 100vw);
        flex-shrink: 0;
        text-align: left;
        font-size: calc(28 / var(--break03) * 100vw);
    }

    .footer-cta {
        width: 100%;
        max-width: calc(1920 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 0 calc(80 / var(--break03) * 100vw);
        box-sizing: border-box;
        position: relative;
        isolation: isolate;
        gap: calc(120 / var(--break03) * 100vw);
        text-align: center;
        color: #fff;
    }

    .footer-cta-container {
        width: 100%;
        max-width: calc(1440 / var(--break03) * 100vw);
        border-radius: calc(19.11 / var(--break03) * 100vw);
        background: linear-gradient(85.99deg, #f80759, #bc4e9c);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(64 / var(--break03) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(48 / var(--break03) * 100vw);
        z-index: 0;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .btn-primary-main3,
    .footer-cta-container .sp-btn-primary {
        box-shadow: 0 calc(4 / var(--break03) * 100vw) calc(24 / var(--break03) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(999 / var(--break03) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(24 / var(--break03) * 100vw) calc(60/ var(--break03) * 100vw) calc(24 / var(--break03) * 100vw);
        gap: calc(30 / var(--break03) * 100vw);
        font-size: calc(32 / var(--break03) * 100vw);
    }

    .footer-cta-container .footer-cta-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc(16 / var(--break03) * 100vw);
        width: 100%;
    }

    .footer-cta-container .footer-cta-title {
        margin: 0;
        font-weight: 800;
        letter-spacing: 0.01em;
        color: #fff;
        font-size: inherit;
    }

    .footer-cta-container .footer-cta-description {
        margin: 0;
        max-width: calc(900 / var(--break03) * 100vw);
        font-size: calc(32 / var(--break03) * 100vw);
        line-height: 1.5;
        font-weight: 500;
        color: #fff;
        text-align: center;
    }

    .footer-cta-container .sp-btn-primary .vector-icon {
        width: calc(60 / var(--break03) * 100vw);
        height: auto;
        flex-shrink: 0;
        position: relative;
    }

    .footer-cta-illustration-right-icon {
        width: calc(122.2 / var(--break03) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(-63.24 / var(--break03) * 100vw);
        right: 0;
        max-height: 100%;
        object-fit: cover;
        z-index: 1;
        flex-shrink: 0;
    }

    .footer-cta-illustration-left-icon {
        width: calc(231 / var(--break03) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(272.76 / var(--break03) * 100vw);
        left: 0;
        max-height: 100%;
        object-fit: cover;
        z-index: 2;
        flex-shrink: 0;
    }

    .footer-container {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "ft-company ft-contact"
            "ft-legal ft-legal"
            "ft-copy ft-copy";
        align-items: start;
        column-gap: calc(265 / var(--break03) * 100vw);
        row-gap: calc(32 / var(--break03) * 100vw);
        width: 100%;
        max-width: calc(1700 / var(--break03) * 100vw);
        margin-inline: auto;
        padding-inline: calc(20 / var(--break03) * 100vw);
        box-sizing: border-box;
        font-size: calc(20 / var(--break03) * 100vw);
    }

    .footer-company {
        grid-area: ft-company;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: calc(50 / var(--break03) * 100vw);
        row-gap: calc(20 / var(--break03) * 100vw);
        align-items: start;
    }

    .footer-company-brand {
        display: contents;
    }

    .footer-company .company-logo-icon {
        grid-column: 1;
        grid-row: 1 / -1;
        width: calc(139 / var(--break03) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
        align-self: start;
    }

    .footer-company .company-heading {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        max-width: calc(462 / var(--break03) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(8 / var(--break03) * 100vw);
    }

    .footer-company .company-address {
        grid-column: 2;
        grid-row: 2;
    }

    .company-tagline {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        line-height: 1.5;
        font-weight: 500;
        margin-bottom: 1em;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .company-name {
        align-self: stretch;
        position: relative;
        font-size: calc(32 / var(--break03) * 100vw);
        letter-spacing: 0.05em;
    }

    .company-address {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: calc(18 / var(--break03) * 100vw);
        font-style: normal;
    }

    .address-post {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 600;
    }

    .address-address {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 600;
    }

    .address-tel {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 600;
        white-space: pre-wrap;
    }

    .footer-contact {
        grid-area: ft-contact;
        justify-self: end;
        align-self: stretch;
        width: calc(636 / var(--break03) * 100vw);
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
        gap: calc(10 / var(--break03) * 100vw);
    }

    .footer-link-list {
        align-self: stretch;
        height: calc(66 / var(--break03) * 100vw);
        display: flex;
        align-items: center;
        gap: calc(16 / var(--break03) * 100vw);
        color: #d71c7e;
    }

    .footer-link-official-site {
        flex: 1;
        background-color: #fff;
        border: calc(1.5 / var(--break03) * 100vw) solid #d71c7e;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(8 / var(--break03) * 100vw) calc(30 / var(--break03) * 100vw);
    }

    .footer-link-official-site .div {
        position: relative;
        font-weight: 500;
        color: #d71c7e;
        text-align: center;
    }

    .footer-container .footer-legal-nav {
        grid-area: ft-legal;
        justify-self: stretch;
    }

    .footer-copyright {
        grid-area: ft-copy;
        justify-self: stretch;
        position: relative;
        font-size: calc(16 / var(--break03) * 100vw);
        line-height: calc(36 / var(--break03) * 100vw);
        font-weight: 500;
    }

    .footer-legal-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: calc(12 / var(--break03) * 100vw) calc(28 / var(--break03) * 100vw);
        font-size: calc(14 / var(--break03) * 100vw);
        line-height: 1.5;
        font-weight: 500;
    }

    .footer-legal-nav a {
        color: #333;
        text-decoration: underline;
    }

    .footer-legal-nav a:hover {
        color: #d71c7e;
    }

}

@media(min-width: 768px) and (max-width:1299px) {
    .fv-content {
        max-width: calc(1680 / var(--break04) * 100vw);
    }
}

@media (max-width: 767px) {
    .header--desktop {
        display: none !important;
    }

    /* スマホ: ハンバーガーボタンのみ固定（ロゴはFV内でスクロール） */
    .header-sp {
        position: static;
        pointer-events: none;
    }

    .header-sp__menu-btn {
        pointer-events: auto;
        position: fixed;
        top: calc(12 / var(--break02) * 100vw + env(safe-area-inset-top, 0px));
        right: calc(16 / var(--break02) * 100vw);
        z-index: 1110;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(48 / var(--break02) * 100vw);
        height: calc(48 / var(--break02) * 100vw);
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        cursor: pointer;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
    }

    .header-sp__menu-btn:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 3px;
    }

    .header-sp__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: calc(6 / var(--break02) * 100vw);
        width: calc(22 / var(--break02) * 100vw);
    }

    .header-sp__burger span {
        display: block;
        height: calc(2 / var(--break02) * 100vw);
        min-height: 2px;
        background-color: #fff;
        border-radius: 1px;
        transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
        transform-origin: center;
    }

    .header-sp--open .header-sp__burger span {
        background-color: #000;
    }

    .header-sp--open .header-sp__burger span:nth-child(1) {
        transform: translateY(calc(7.5 / var(--break02) * 100vw + 2px)) rotate(45deg);
    }

    .header-sp--open .header-sp__burger span:nth-child(2) {
        opacity: 0;
    }

    .header-sp--open .header-sp__burger span:nth-child(3) {
        transform: translateY(calc(-4 / var(--break02) * 100vw - 2px)) rotate(-45deg);
    }

    .header-sp__overlay.sp-drawer-panel {
        pointer-events: none;
        position: fixed;
        inset: 0;
        z-index: 1090;
        width: 100%;
        min-height: 100%;
        min-height: 100dvh;
        background-color: rgba(215, 28, 126, 0.3);
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: flex-end;
        text-align: left;
        font-size: calc(18 / var(--break02) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP', sans-serif;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    .header-sp--open .header-sp__overlay.sp-drawer-panel {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }

    .sp-drawer {
        height: 100%;
        min-height: 100dvh;
        width: calc(330 / var(--break02) * 100vw);
        max-width: 100%;
        border-radius: calc(24 / var(--break02) * 100vw) 0 0 calc(24 / var(--break02) * 100vw);
        background-color: #f2f0ee;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(10 / var(--break02) * 100vw);
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-sizing: border-box;
        box-shadow: calc(-4 / var(--break02) * 100vw) 0 calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: auto;
    }

    .header-sp--open .sp-drawer {
        transform: translateX(0);
    }

    .sp-drawer-body {
        align-self: stretch;
        flex: 1;
        min-height: 0;
        overflow: hidden auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
        padding: calc(124 / var(--break02) * 100vw + env(safe-area-inset-top, 0px)) 0 calc(80 / var(--break02) * 100vw);
        gap: calc(20 / var(--break02) * 100vw);
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
    }

    .sp-drawer-nav {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 calc(24 / var(--break02) * 100vw);
        gap: calc(16 / var(--break02) * 100vw);
        box-sizing: border-box;
    }

    .sp-drawer-link {
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 600;
        color: #333;
        text-decoration: none;
    }

    .sp-drawer-link:active {
        opacity: 0.75;
    }

    .sp-drawer-footer {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: calc(32 / var(--break02) * 100vw);
        text-align: center;
        font-size: calc(14 / var(--break02) * 100vw);
        color: #d71c7e;
        box-sizing: border-box;
    }

    .sp-drawer-cta {
        align-self: stretch;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 calc(24 / var(--break02) * 100vw);
        gap: calc(10.8 / var(--break02) * 100vw);
        box-sizing: border-box;
    }

    .sp-drawer-cta-label {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        font-weight: 600;
    }

    .sp-drawer-button {
        align-self: stretch;
        box-shadow: 0 calc(1.4513510465621948 / var(--break02) * 100vw) calc(8.71 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(362.47 / var(--break02) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw);
        font-size: calc(16 / var(--break02) * 100vw);
        color: #fff;
        box-sizing: border-box;
    }

    .sp-drawer-official-banner {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
        background: transparent;
        box-sizing: border-box;
    }

    .sp-drawer-official-banner-img {
        display: block;
        width: calc(206.3 / var(--break02) * 100vw);
        max-width: 100%;
        height: auto;
        flex-shrink: 0;
        object-fit: contain;
    }

    .fv-official-banner-icon,
    .section-top-curve-icon {
        display: none !important;
    }

    .site {
        width: 100%;
        position: relative;
        background-color: #f2f0ee;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: calc(16 / var(--break02) * 100vw);
    }

    .header-title2 {
        margin-bottom: 5vw;
        line-height: 1.55;
    }

    .section-function .header-title2 {
        font-size: 24px;
    }

    .section-strength .header-title2 {
        font-size: 24px;
        text-align: center;
    }

    .section-strength .about-strength-card-title {
        font-size: 22px;
        color: #d71c7e;
        text-align: left;
    }

    .u-stack,
    .u-stack--tight,
    .u-stack--loose {
        display: inline !important;
        margin-top: 0 !important;
    }

    .section-fv {
        width: 100%;
        max-width: none;
        min-height: calc(880 / var(--break02) * 100vw);
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        isolation: isolate;
        background-color: #af2f89;
        background-image: url("https://t-8.jp/ai-blog-seo-asset/img/hero-bg-sp.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        text-align: left;
        font-size: calc(27.18 / var(--break02) * 100vw);
        color: #fff;
        font-family: 'Noto Sans JP';
    }

    .fv-header {
        align-self: stretch;
        overflow: hidden;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        align-content: start;
        gap: calc(10 / var(--break02) * 100vw);
        padding-left: calc(24 / var(--break02) * 100vw);
        padding-right: calc(24 / var(--break02) * 100vw);
        padding-top: calc(24 / var(--break02) * 100vw);
        padding-bottom: calc(24 / var(--break02) * 100vw);
        z-index: 0;
        flex-shrink: 0;
    }

    .fv-menu-icon {
        width: calc(30 / var(--break02) * 100vw);
        height: calc(20 / var(--break02) * 100vw);
        position: relative;
        grid-column: 12;
        grid-row: 1;
    }

    .fv-logo-icon {
        width: calc(142 / var(--break02) * 100vw);
        height: calc(23.4 / var(--break02) * 100vw);
        position: relative;
        grid-column: 1 / span 5;
        grid-row: 1;
    }

    .fv-container {
        width: 100%;
        max-width: none;
        height: calc(778.6 / var(--break02) * 100vw);
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(24 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(48 / var(--break02) * 100vw);
        z-index: 1;
    }

    .fv-catch-group {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
    }

    .fv-catch-top {
        margin-bottom: 1vw;
        position: relative;
        letter-spacing: 0.05em;
        font-weight: 900;
    }

    .fv-catch-main {
        width: calc(350 / var(--break02) * 100vw);
        margin-bottom: 10vw;
        position: relative;
        letter-spacing: 0.05em;
        line-height: 1.2;
        display: inline-block;
        font-size: calc(56 / var(--break02) * 100vw);
    }

    .ai {
        font-weight: 800;
    }

    .span {
        font-size: calc(38.1 / var(--break02) * 100vw);
        font-weight: 900;
    }

    .fv-text-group {
        width: calc(360 / var(--break02) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(24 / var(--break02) * 100vw);
        flex-shrink: 0;
        font-size: calc(24 / var(--break02) * 100vw);
    }

    .fv-label-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(8 / var(--break02) * 100vw);
    }

    .fv-label-01,
    .fv-label-02 {
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(2.6 / var(--break02) * 100vw) calc(11.7 / var(--break02) * 100vw) calc(3.9 / var(--break02) * 100vw) calc(7.8 / var(--break02) * 100vw);
    }

    .b {
        position: relative;
        letter-spacing: 0.02em;
        background: linear-gradient(63.16deg, #d71c7e, #af2f89);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .sp-drawer-button .b {
        flex-shrink: 0;
        margin: 0;
        font-weight: 700;
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: #fff;
        color: #fff;
    }

    .fv-description {
        align-self: stretch;
        position: relative;
        font-size: calc(16 / var(--break02) * 100vw);
        letter-spacing: 0.02em;
    }

    .fv-description .u-stack{
        margin-top: 0;
    }

    .fv-image-group {
        width: calc(400.6 / var(--break02) * 100vw);
        height: calc(201.6 / var(--break02) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(580 / var(--break02) * 100vw);
        left: 0;
        z-index: 2;
        flex-shrink: 0;
    }

    .fv-image-pc-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: calc(400.6 / var(--break02) * 100vw);
        height: calc(187.6 / var(--break02) * 100vw);
        object-fit: contain;
    }

    .fv-image-shadow {
        position: absolute;
        top: calc(164.98 / var(--break02) * 100vw);
        left: calc(59.07 / var(--break02) * 100vw);
        filter: blur(calc(16.9 / var(--break02) * 100vw));
        border-radius: 50%;
        background-color: #fff;
        width: calc(48.3 / var(--break02) * 100vw);
        height: calc(4.7 / var(--break02) * 100vw);
    }

    .fv-image-phone-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .fv-cta-group {
        width: calc(370 / var(--break02) * 100vw);
        margin: 0 !important;
        position: absolute;
        top: calc(753 / var(--break02) * 100vw);
        left: calc(10 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(12.8 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(8.5 / var(--break02) * 100vw);
        z-index: 3;
        flex-shrink: 0;
        text-align: center;
        font-size: calc(14 / var(--break02) * 100vw);
    }

    .fv-note {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
    }

    .fv-cta-group .btn-primary-main {
        width: calc(340 / var(--break02) * 100vw);
        max-width: 100%;
        box-shadow: 0 calc(2.013 / var(--break02) * 100vw) calc(12.08 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(502.79 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(15.1 / var(--break02) * 100vw);
        font-size: calc(16 / var(--break02) * 100vw);
    }

    .fv-cta-group .btn-primary-main .btn-arrow-img {
        width: calc(30 / var(--break02) * 100vw);
        height: auto;
    }

    .fv-cta-group .btn-primary-main .b2 {
        background: linear-gradient(63.16deg, #d71c7e, #af2f89);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 0.02em;
    }

    .sp-btn-primary {
        width: calc(340 / var(--break02) * 100vw);
        box-shadow: 0 calc(2.013181686401367 / var(--break02) * 100vw) calc(12.08 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(502.79 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(15.1 / var(--break02) * 100vw);
        font-size: calc(16 / var(--break02) * 100vw);
    }

    .vector-icon {
        width: calc(30.2 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .section-about {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .about-heading-group {
        width: calc(350 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .title-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(4 / var(--break02) * 100vw);
    }

    .label-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3.5vw;
        padding: calc(3 / var(--break02) * 100vw) calc(33 / var(--break02) * 100vw);
        gap: calc(16 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: 'Josefin Sans';
    }

    .label {
        position: relative;
        letter-spacing: 0.02em;
    }

    .divider {
        width: calc(92 / var(--break02) * 100vw);
        height: calc(2 / var(--break02) * 100vw);
        position: relative;
        border-top: calc(2 / var(--break02) * 100vw) solid #d71c7e;
        box-sizing: border-box;
    }

    .title-sub {
        width: calc(324 / var(--break02) * 100vw);
        margin-bottom: 3.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title-sub2 {
        position: relative;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 600;
    }

    .header-title {
        width: calc(349 / var(--break02) * 100vw);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(22.5 / var(--break02) * 100vw);
    }

    .header-title .span{
        font-size: 100%;
    }
    .span3 {
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .span-plain {
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: currentColor;
    }

    .description {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
    }

    .description2 {
        flex: 1;
        position: relative;
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
    }

    .about-strength-group {
        width: calc(340 / var(--break02) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        gap: calc(16 / var(--break02) * 100vw);
        font-size: calc(20.5 / var(--break02) * 100vw);
        color: #d71c7e;
    }

    .about-strength-card-01 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(18 / var(--break02) * 100vw);;
        background: #fff;
        box-shadow: 0 calc(4 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break02) * 100vw);
        gap: calc(14 / var(--break02) * 100vw);
    }

    .about-strength-card-01:nth-child(even) {
        flex-direction: row-reverse;
    }

    .about-strength-card-04 {
        width: calc(340 / var(--break02) * 100vw);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-strength-card-content {
        flex: 1;
        box-shadow: 0 calc(4 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break02) * 100vw);
        background-color: #fff;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(22 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(16 / var(--break02) * 100vw);
        max-width: 100%;
    }

    .about-strength-card-title {
        position: relative;
        letter-spacing: 0.02em;
        display: block;
        flex-shrink: 0;
        text-align: center;
    }

    .section-function .about-strength-card-title {
        width: 100%;
    }

    .about-image-01-icon,
    .about-image-02-icon,
    .about-image-03-icon,
    .about-image-04-icon {
        width: calc(90 / var(--break02) * 100vw);
        height: calc(90 / var(--break02) * 100vw);
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .section-reasons {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        border-radius: calc(64 / var(--break02) * 100vw) 0 0 0;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
    }

    .section-reasons .about-heading-group {
        width: calc(340 / var(--break02) * 100vw);
        margin-bottom: 7.5vw;
    }

    .reasons-container {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(32 / var(--break02) * 100vw);
    }

    .reasons-heading-group {
        width: calc(340 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(24 / var(--break02) * 100vw);
    }

    .label-group2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break02) * 100vw) calc(33 / var(--break02) * 100vw);
        gap: calc(16 / var(--break02) * 100vw);
    }

    .label-group3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break02) * 100vw) calc(33 / var(--break02) * 100vw);
        gap: calc(14 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: 'Josefin Sans';
        margin-bottom: 1.5vw;
    }

    .label-group4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break02) * 100vw) calc(33 / var(--break02) * 100vw);
        gap: calc(14 / var(--break02) * 100vw);
        color: #fff;
        font-family: 'Josefin Sans';
        margin-bottom: 1.5vw;
    }

    .header-title3 {
        width: calc(218 / var(--break02) * 100vw);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(24 / var(--break02) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .description3 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .reasons-card-list {
        width: calc(340 / var(--break02) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(32 / var(--break02) * 100vw);
        text-align: left;
        font-size: calc(64 / var(--break02) * 100vw);
        font-family: 'Noto Sans JP';
    }

    .reasons-card-01 {
        width: calc(340 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .reasons-card-inner {
        align-self: stretch;
        border-radius: calc(12 / var(--break02) * 100vw);
        display: flex;
        align-items: stretch;
        padding: calc(24 / var(--break02) * 100vw) 0 0;
    }

    .reasons-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(24 / var(--break02) * 100vw);
    }

    .reasons-number {
        display: block;
        width: auto;
        height: calc(48 / var(--break02) * 100vw);
        object-fit: contain;
        margin-bottom: 2vw;
    }

    .reasons-title {
        margin-bottom: 5vw;
        position: relative;
        font-size: calc(22 / var(--break02) * 100vw);
        letter-spacing: 0.02em;
        color: #d71c7e;
    }

    .reasons-description {
        align-self: stretch;
        position: relative;
        font-size: calc(16 / var(--break02) * 100vw);
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
        color: #333;
    }

    .reasons-image-01-icon,
    .reasons-image-02-icon,
    .reasons-image-03-icon {
        order: 9;
        align-self: flex-end;
        margin-left: auto;
        object-fit: contain;
        display: block;
    }

    .reasons-image-01-icon {
        width: calc(130 / var(--break02) * 100vw);
        height: calc(130 / var(--break02) * 100vw);
    }

    .reasons-image-02-icon {
        width: calc(130 / var(--break02) * 100vw);
        height: calc(130 / var(--break02) * 100vw);
    }

    .reasons-image-03-icon {
        width: calc(140 / var(--break02) * 100vw);
        height: calc(140 / var(--break02) * 100vw);
    }

    .section-features {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        background-image: url("https://t-8.jp/ai-blog-seo-asset/img/features-bg-sp.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
    }

    .section-features .about-heading-group {
        width: calc(349 / var(--break02) * 100vw);
    }

    .features-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(32 / var(--break02) * 100vw);
        max-width: 100%;
    }
    .features-block-01:first-child {
        margin-top: 15vw;
    }
    .features-block-01:nth-of-type(3) {
        margin-top: 5vw;
    }
    .title-group3 {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(4 / var(--break02) * 100vw);
    }

    .header-title5 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(24 / var(--break02) * 100vw);
        font-family: 'Noto Sans JP';
    }

    .header-title6 {
        position: relative;
        letter-spacing: 0.01em;
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .features-container2 {
        width: calc(340 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(64 / var(--break02) * 100vw);
        text-align: left;
        font-size: calc(22 / var(--break02) * 100vw);
        font-family: 'Noto Sans JP';
    }

    .features-block-01 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-image-01-icon,
    .features-image-02-icon,
    .features-image-03-icon,
    .features-image-04-icon {
        order: 1;
        width: calc(340 / var(--break02) * 100vw);
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .features-block-content {
        order: 0;
        align-self: stretch;
        display: flex;
        flex-direction: column;
    }

    .features-block-content2 {
        align-self: stretch;
        border-radius: calc(12 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(12 / var(--break02) * 100vw);
        padding: calc(20 / var(--break02) * 100vw);
        padding-top: 0;
        box-sizing: border-box;
    }

    .iconarticle {
        width: calc(55 / var(--break02) * 100vw);
        height: auto;
        flex-shrink: 0;
    }

    .features-block-title {
        align-self: stretch;
        position: relative;
        font-size: 22px;
        letter-spacing: 0.02em;
        color: #d71c7e;
        text-align: left;
    }

    .features-block-label {
        align-self: stretch;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        font-size: calc(18 / var(--break02) * 100vw);
    }

    .features-block-label-icon {
        width: 100%;
        position: relative;
        max-height: 100%;
        display: flex;
        font-size: 12px;
        color: #333;
    }

    .features-block-label-icon .label {
        color: #d71c7e;
    }

    .section-features .features-label {
        font-size: 18px;
    }

    .features-block-label-text {
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 600;
    }

    .features-block-body {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
        font-size: calc(16 / var(--break02) * 100vw);
        color: #333;
    }

    .features-block-description {
        align-self: stretch;
        position: relative;
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
    }

    .iconimage {
        width: calc(100 / var(--break02) * 100vw);
        height: calc(102 / var(--break02) * 100vw);
        flex-shrink: 0;
    }

    .iconschedule {
        width: calc(55 / var(--break02) * 100vw);
        height: calc(55 / var(--break02) * 100vw);
        object-fit: contain;
        flex-shrink: 0;
    }

    .section-function {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
        color: #fff;
    }

    .title-group4 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(4 / var(--break02) * 100vw);
        max-width: 100%;
    }

    .divider4 {
        width: calc(92 / var(--break02) * 100vw);
        height: calc(2 / var(--break02) * 100vw);
        position: relative;
        border-top: calc(2 / var(--break02) * 100vw) solid #fff;
        box-sizing: border-box;
    }

    .function-card-list {
        width: calc(360 / var(--break02) * 100vw);
        overflow: hidden;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        gap: calc(10 / var(--break02) * 100vw);
        font-size: calc(16 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: 'Noto Sans JP';
    }

    .function-card-01 {
        width: calc(175 / var(--break02) * 100vw);
        box-shadow: 0 calc(8 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: calc(16 / var(--break02) * 100vw) calc(8 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(4 / var(--break02) * 100vw);
        min-width: calc(175 / var(--break02) * 100vw);
    }

    .function-card {
        box-shadow: 0 calc(8 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: calc(16 / var(--break02) * 100vw) calc(6 / var(--break02) * 100vw);
        box-sizing: border-box;
    }

    .function-card-icon-wrap {
        width: calc(60 / var(--break02) * 100vw);
        height: calc(44 / var(--break02) * 100vw);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2.5vw;
        align-self: center;
    }

    .function-card-icon {
        width: auto;
        height: calc(44 / var(--break02) * 100vw);
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    .function-card .function-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(8 / var(--break02) * 100vw);
        flex: 1;
    }

    .sp-iconarticle {
        width: calc(75 / var(--break02) * 100vw);
        max-height: 100%;
    }

    .features-block-label-icon {
        letter-spacing: 0;
        font-size: calc(11.5 / var(--break02) * 100vw);
        color: #333;
    }

    .function-list .features-block-label-icon > .txt_col02 {
        flex-shrink: 0;
        width: calc(18 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .bullet-text {
        position: relative;
        line-height: calc(18 / var(--break02) * 100vw);
    }

    .sp-iconimage {
        width: calc(75 / var(--break02) * 100vw);
        height: calc(76.5 / var(--break02) * 100vw);
    }

    .sp-icontopic {
        width: calc(75 / var(--break02) * 100vw);
        max-height: 100%;
        flex-shrink: 0;
    }

    .function-card-title3 {
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 600;
        flex-shrink: 0;
    }

    .function-card-list4 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
        text-align: left;
        font-size: calc(12 / var(--break02) * 100vw);
        color: #333;
    }

    .sp-iconschedule {
        width: calc(75 / var(--break02) * 100vw);
        height: calc(75 / var(--break02) * 100vw);
        object-fit: cover;
    }

    .sp-iconanalysis {
        width: calc(75 / var(--break02) * 100vw);
        max-height: 100%;
        object-fit: cover;
    }

    .section-search-strategy {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        font-family: 'Noto Sans JP';
    }

    .section-search-strategy .title-sub {
        margin-bottom: 2.5vw;
    }

    .section-search-strategy .about-heading-group {
        width: calc(350 / var(--break02) * 100vw);
    }

    .iconseo2 {
        width: calc(55 / var(--break02) * 100vw);
        height: calc(55 / var(--break02) * 100vw);
        position: relative;
        top: -8px;
    }

    .label-group5 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break02) * 100vw) calc(33 / var(--break02) * 100vw);
        gap: calc(16 / var(--break02) * 100vw);
        font-family: 'Josefin Sans';
    }

    .title-sub3 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
    }

    .title-sub4 {
        position: relative;
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
    }

    .header-title9 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(24 / var(--break02) * 100vw);
    }

    .description7 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        color: #333;
    }

    .search-strategy-card-list {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(20 / var(--break02) * 100vw);
        gap: calc(39 / var(--break02) * 100vw);
        text-align: left;
        font-size: calc(78 / var(--break02) * 100vw);
        max-width: calc(390 / var(--break02) * 100vw);
        margin-left: auto;
        margin-right: auto;
    }

    .strategy-card-seo {
        width: calc(341.3 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(16 / var(--break02) * 100vw);
        flex-shrink: 0;
    }

    .search-strategy-card-header {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: calc(20 / var(--break02) * 100vw);
        text-align: center;
    }

    .search-strategy-card-keyword {
        margin-bottom: 4vw;
        position: relative;
        letter-spacing: 0.05em;
        line-height: 1;
        font-weight: 800;
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .search-strategy-card-title {
        align-self: stretch;
        position: relative;
        font-size: calc(22 / var(--break02) * 100vw);
        letter-spacing: 0.02em;
        background: linear-gradient(63.16deg, #d71c7e, #af2f89);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 4vw;
    }

    .section-image-styles {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
    }

    .section-image-styles .about-heading-group {
        width: calc(340 / var(--break02) * 100vw);
    }

    .image-styles-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        box-sizing: border-box;
    }

    .image-styles-container2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: calc(16 / var(--break02) * 100vw);
        box-sizing: border-box;
    }

    .header-title11 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(24 / var(--break02) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .style-selector {
        align-self: stretch;
        width: 100%;
        max-width: calc(360 / var(--break02) * 100vw);
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: calc(8 / var(--break02) * 100vw);
        font-size: calc(14 / var(--break02) * 100vw);
        color: #fff;
        font-family: 'Noto Sans JP';
        box-sizing: border-box;
    }

    .style-btn-01 {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-shadow: 0 calc(4 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(999 / var(--break02) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(8 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        box-sizing: border-box;
    }

    .text {
        position: relative;
        line-height: calc(18 / var(--break02) * 100vw);
        font-weight: 500;
    }

    .image-styles-preview {
        border-radius: calc(8 / var(--break02) * 100vw);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .image-styles-preview-container {
        background-color: #fff;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(22.7 / var(--break02) * 100vw) 0;
        position: relative;
        isolation: isolate;
        gap: calc(3.3 / var(--break02) * 100vw);
    }

    .image-styles-preview-track {
        width: calc(360 / var(--break02) * 100vw);
        height: calc(166.7 / var(--break02) * 100vw);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        z-index: 0;
    }

    .image-styles-preview-item {
        display: flex;
        align-items: center;
        gap: calc(8 / var(--break02) * 100vw);
        flex-shrink: 0;
        transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    .image-styles-preview-img {
        height: calc(166.7 / var(--break02) * 100vw);
        width: calc(300 / var(--break02) * 100vw);
        flex-shrink: 0;
        border-radius: calc(5.33 / var(--break02) * 100vw);
        object-fit: cover;
    }

    .style-btn-01.is-active {
        background: linear-gradient(90deg, #c0157a, #e8155a);
        box-shadow: 0 calc(4 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(248, 7, 89, 0.38);
        font-weight: 700;
    }

    .image-styles-arrow-left-icon,
    .image-styles-arrow-right-icon {
        width: calc(36 / var(--break02) * 100vw);
        height: calc(36 / var(--break02) * 100vw);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        border: none;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s;
        padding: 0;
    }

    .image-styles-arrow-left-icon img,
    .image-styles-arrow-right-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .image-styles-arrow-left-icon {
        left: calc(8 / var(--break02) * 100vw);
    }

    .image-styles-arrow-right-icon {
        right: calc(8 / var(--break02) * 100vw);
        left: auto;
    }

    .section-flow {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(10 / var(--break02) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .title-sub5 {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-flow .title-sub5 {
        margin-bottom: 2vw;
    }

    .flow-list {
        width: calc(360 / var(--break02) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(24 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        font-size: calc(22 / var(--break02) * 100vw);
        color: #d71c7e;
    }

    .flow-card-01 {
        align-self: stretch;
        box-shadow: 0 calc(8 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(32 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        gap: calc(16 / var(--break02) * 100vw);
    }

    .flow-card-inner {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: calc(16 / var(--break02) * 100vw);
        row-gap: calc(12 / var(--break02) * 100vw);
        align-items: center;
        max-width: 100%;
    }

    .flow-card-inner > .iconedit {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    .flow-card-main {
        display: contents;
    }

    .flow-card-content {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        align-self: center;
    }

    .iconedit {
        width: clamp(50px, calc(52 / var(--break02) * 100vw), 55px);
        height: auto;
        max-height: 100%;
        flex-shrink: 0;
    }

    .flow-card-header {
        align-self: stretch;
        backdrop-filter: blur(calc(4 / var(--break02) * 100vw));
        display: flex;
        align-items: center;
        gap: calc(16 / var(--break02) * 100vw);
    }

    .flow-card-icon {
        width: calc(55 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .flow-card-description {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: stretch;
        position: relative;
        font-size: calc(16 / var(--break02) * 100vw);
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
        color: #333;
        text-align: left;
    }

    .section-flow .about-strength-card-title {
        text-align: left;
    }

    .flow-arrow-icon {
        align-self: center;
        flex-shrink: 0;
        width: calc(78 / var(--break02) * 100vw);
        height: calc(24 / var(--break02) * 100vw);
        margin: 4vw auto;
        position: relative;
        object-fit: contain;
    }

    .flow-list picture {
        align-self: center;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flow-card-icon2 {
        width: calc(50 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .section-strength {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        background: linear-gradient(58.28deg, #f80759, #bc4e9c);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
        color: #fff;
    }

    .strength-container {
        width: 100%;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .strength-container2 {
        width: 100%;
        max-width: calc(360 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 calc(16 / var(--break02) * 100vw) ;
        box-sizing: border-box;
        box-shadow: 0 calc(8 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break02) * 100vw);
        overflow: hidden;
        background-color: #fff;
    }

    .strength-heading-group {
        width: calc(340 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .strength-card {
        width: calc(360 / var(--break02) * 100vw);
        box-shadow: 0 calc(8 / var(--break02) * 100vw) calc(24 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(12 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(32 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
        text-align: left;
        font-size: calc(22 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: 'Noto Sans JP';
    }

    .strength-card-01 {
        width: 100%;
        align-self: stretch;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(32 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(16 / var(--break02) * 100vw);
        border-top: 2px dashed #d71c7e;
    }

    .strength-card-01:first-child {
        border-top: none;
    }

    .iconmedical {
        width: calc(56 / var(--break02) * 100vw);
        max-height: 100%;
        flex-shrink: 0;
    }

    .strength-card-content {
        flex: 1;
        min-width: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(12 / var(--break02) * 100vw);
    }

    .strength-card-description {
        align-self: stretch;
        font-size: calc(16 / var(--break02) * 100vw);
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
        color: #333;
    }

    .strength-card-header {
        align-self: stretch;
        backdrop-filter: blur(calc(4 / var(--break02) * 100vw));
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(8 / var(--break02) * 100vw);
    }

    .strength-card-icon {
        width: calc(48 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .strength-card-divider {
        width: calc(322 / var(--break02) * 100vw);
        height: calc(2 / var(--break02) * 100vw);
        position: relative;
        border-top: calc(2 / var(--break02) * 100vw) dashed #d71c7e;
        box-sizing: border-box;
    }

    .strength-card-icon2 {
        width: calc(60 / var(--break02) * 100vw);
        height: calc(60 / var(--break02) * 100vw);
        position: relative;
    }

    .strength-card-icon3 {
        width: calc(60 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
    }

    .section-pricing {
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        position: relative;
        isolation: isolate;
        gap: calc(48 / var(--break02) * 100vw);
    }

    .section-pricing .label-group4 {
        color: #d71c7e;
    }

    .section-pricing .search-strategy-card-keyword {
        font-size: 24px;
    }

    .section-pricing .b4 {
        font-weight: 800;
        font-size: 12px;
    }

    .section-pricing .pricing-card-header .pricing-card-title,
    .section-pricing .pricing-card-header2 .pricing-card-title {
        color: #fff;
    }

    .section-pricing .pricing-note .pricing-card-title {
        color: #d71c7e;
    }

    .section-pricing .pricing-feature-list {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .section-pricing .features-block-label-icon {
        width: auto;
        max-width: 100%;
        flex: 0 1 auto;
        align-self: auto;
        font-size: 14px;
    }

    .pricing-heading-group {
        width: calc(340 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 0;
        flex-shrink: 0;
    }

    .pricing-content {
        width: 100%;
        max-width: calc(360 / var(--break02) * 100vw);
        align-self: center;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: calc(32 / var(--break02) * 100vw);
        z-index: 1;
        flex-shrink: 0;
        text-align: left;
        font-size: calc(22 / var(--break02) * 100vw);
        color: #fff;
        font-family: 'Noto Sans JP';
    }

    .pricing-card-monthly {
        width: 100%;
        max-width: calc(360 / var(--break02) * 100vw);
        align-self: center;
        border-radius: calc(12 / var(--break02) * 100vw);
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        box-shadow: 0 calc(4 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
    }

    .pricing-card-header {
        align-self: stretch;
        width: 100%;
        box-sizing: border-box;
        border-radius: calc(12 / var(--break02) * 100vw) calc(12 / var(--break02) * 100vw) 0 0;
        box-shadow: none;
        background: linear-gradient(45.63deg, #f80759, #bc4e9c);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(12 / var(--break02) * 100vw);
        flex-shrink: 0;
    }

    .pricing-card-header2 {
        align-self: stretch;
        width: 100%;
        box-sizing: border-box;
        border-radius: calc(12 / var(--break02) * 100vw) calc(12 / var(--break02) * 100vw) 0 0;
        box-shadow: none;
        background: linear-gradient(86.64deg, #f80759, #bc4e9c);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(12 / var(--break02) * 100vw);
        flex-shrink: 0;
    }

    .pricing-pricing-card-body {
        align-self: stretch;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0 0 calc(12 / var(--break02) * 100vw) calc(12 / var(--break02) * 100vw);
        box-shadow: none;
        background-color: #fff;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(24 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        font-size: calc(40 / var(--break02) * 100vw);
        color: #333;
        font-family: Roboto;
        flex: 1;
        min-height: 0;
    }

    .pricing-card-title {
        font-weight: 600;
    }

    .pricing-card-body {
        align-self: stretch;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0 0 calc(12 / var(--break02) * 100vw) calc(12 / var(--break02) * 100vw);
        box-shadow: none;
        background-color: #fff;
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: calc(24 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        text-align: center;
        font-size: calc(48 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: Roboto;
        flex: 1;
        min-height: 0;
    }

    .pricing-amount-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(24 / var(--break02) * 100vw);
        max-width: 100%;
    }

    .pricing-price-row {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(2.4 / var(--break02) * 100vw);
    }

    .price-amount {
        align-self: stretch;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: baseline;
        justify-content: center;
        gap: calc(1.2 / var(--break02) * 100vw);
    }

    .section-pricing .fv-catch-top {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .section-pricing .pricing-price-value {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: baseline;
        justify-content: center;
        gap: calc(6.6 / var(--break02) * 100vw);
    }

    .div2 {
        position: relative;
        font-size: calc(12 / var(--break02) * 100vw);
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 800;
        font-family: 'Noto Sans JP';
    }

    .pricing-post-frequency {
        position: relative;
        font-size: calc(18 / var(--break02) * 100vw);
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 600;
        font-family: 'Noto Sans JP';
        color: #333;
        text-align: left;
    }

    .pricing-feature-box {
        align-self: stretch;
        border-radius: calc(16 / var(--break02) * 100vw);
        background-color: #f7f3f0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: calc(8 / var(--break02) * 100vw);
        text-align: left;
        font-size: calc(14 / var(--break02) * 100vw);
        color: #333;
        font-family: 'Noto Sans JP';
    }

    .pricing-feature-list {
        align-self: stretch;
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: calc(4 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
    }

    .pricing-feature-item {
        display: flex;
        align-items: center;
    }

    .pricing-feature-list .features-block-label-icon > .txt_col02 {
        flex-shrink: 0;
        width: calc(24 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .bullet-text25 {
        position: relative;
        line-height: calc(28 / var(--break02) * 100vw);
    }

    .pricing-note {
        width: calc(360 / var(--break02) * 100vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(8 / var(--break02) * 100vw);
        text-align: center;
        color: #333;
    }

    .pricing-note-title {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        color: #d71c7e;
    }

    .pricing-note-description {
        align-self: stretch;
        position: relative;
        font-size: calc(18 / var(--break02) * 100vw);
        letter-spacing: 0.02em;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 600;
        text-align: left;
    }

    .pricing-note-caption {
        align-self: stretch;
        position: relative;
        font-size: calc(12 / var(--break02) * 100vw);
        line-height: calc(18 / var(--break02) * 100vw);
    }

    .pricing-card-body2 {
        align-self: stretch;
        box-shadow: 0 calc(1.2000000476837158 / var(--break02) * 100vw) calc(7.2 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        background-color: #fff;
        overflow: hidden;
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: calc(24 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        font-size: calc(40 / var(--break02) * 100vw);
        color: #333;
        font-family: Roboto;
    }

    .pricing-price-row2 {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: calc(6.6 / var(--break02) * 100vw);
    }

    .b3 {
        position: relative;
        letter-spacing: 0.05em;
    }

    .section-pricing > picture {
        display: contents;
    }

    .pricing-badge-icon {
        width: calc(163.7 / var(--break02) * 100vw);
        height: calc(150.6 / var(--break02) * 100vw);
        margin: 0 !important;
        position: absolute;
        top: calc(82.82 / var(--break02) * 100vw);
        left: calc(232 / var(--break02) * 100vw);
        object-fit: contain;
        z-index: 2;
        flex-shrink: 0;
    }

    /* section-cta SP … Figma（390幅）に準拠、寸法はリキッド化 */
    .section-cta {
        width: 100%;
        position: relative;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
        text-align: center;
        font-size: calc(16 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: 'Noto Sans JP';
    }

    .section-cta .about-heading-group {
        width: calc(340 / var(--break02) * 100vw);
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(4 / var(--break02) * 100vw);
    }

    .section-cta .label-group3 {
        gap: calc(16 / var(--break02) * 100vw);
        margin-bottom: 0;
    }

    .section-cta .title-sub5 {
        align-self: stretch;
        color: #333;
    }

    .section-cta .header-title {
        align-self: stretch;
        width: 100%;
        max-width: calc(340 / var(--break02) * 100vw);
        font-size: calc(24 / var(--break02) * 100vw);
    }

    .section-cta .search-strategy-card-keyword {
        letter-spacing: 0.01em;
        margin-bottom: 0;
    }

    .title-sub8 {
        position: relative;
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
        white-space: pre-wrap;
    }

    .section-cta .cta-container {
        width: calc(390 / var(--break02) * 100vw);
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(24 / var(--break02) * 100vw);
        overflow: hidden;
        font-size: calc(16 / var(--break02) * 100vw);
        color: #333;
    }

    .section-cta .cta-media {
        width: calc(340 / var(--break02) * 100vw);
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }

    /* Figma .cta-media2 + .cta-question-list 相当 */
    .section-cta .cta-question {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        max-width: 100%;
        position: relative;
        isolation: isolate;
    }

    .section-cta .cta-question-list {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .section-cta .cta-question-01 {
        display: flex;
        align-items: flex-start;
        padding: calc(8 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        width: 100%;
        align-self: stretch;
    }

    .section-cta .cta-question-01:nth-child(1),
    .section-cta .cta-question-01:nth-child(3) {
        justify-content: flex-end;
    }

    .section-cta .cta-question-01:nth-child(2) {
        justify-content: flex-start;
    }

    .section-cta .cta-question-01-child {
        width: calc(10 / var(--break02) * 100vw);
        flex-shrink: 0;
        align-self: stretch;
        min-height: 1px;
    }

    .section-cta .cta-problem {
        flex-shrink: 0;
        width: auto;
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        padding: 0;
        box-sizing: border-box;
        position: relative;
        isolation: isolate;
    }

    .section-cta .speech-content {
        border-radius: calc(999 / var(--break02) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: calc(8 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        box-sizing: border-box;
        z-index: 0;
        flex-shrink: 0;
    }

    .section-cta .cta-question-01:nth-child(1) .speech-content {
        align-items: center;
        overflow: hidden;
    }

    .section-cta .cta-question-01:nth-child(2) .speech-content {
        align-items: flex-start;
    }

    .section-cta .cta-question-01:nth-child(3) .speech-content {
        align-items: flex-end;
        overflow: hidden;
    }

    .section-cta .speech-text {
        position: relative;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 500;
        color: #333;
        text-align: center;
    }

    .section-cta .cta-question-01:nth-child(2) .speech-text {
        width: calc(200 / var(--break02) * 100vw);
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-cta .speech-quote {
        height: calc(56 / var(--break02) * 100vw);
        width: calc(31 / var(--break02) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(-7.69 / var(--break02) * 100vw);
        left: calc(7 / var(--break02) * 100vw);
        font-size: calc(48 / var(--break02) * 100vw);
        line-height: calc(56 / var(--break02) * 100vw);
        font-weight: 800;
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: left;
        display: flex;
        align-items: center;
        z-index: 1;
        flex-shrink: 0;
    }

    .section-cta .cta-question-01:nth-child(2) .speech-quote {
        top: calc(-8.48 / var(--break02) * 100vw);
        left: calc(12 / var(--break02) * 100vw);
    }

    .section-cta .cta-illust-icon {
        width: calc(94 / var(--break02) * 100vw);
        max-width: 100%;
        height: auto;
        position: relative;
        object-fit: cover;
    }

    /* Figma .cta-action + .cta-button + .sp-btn-primary */
    .section-cta .cta-content {
        align-self: stretch;
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0 calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
        color: #333;
        text-align: left;
    }

    .section-cta .cta-label {
        align-self: stretch;
        position: relative;
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
    }

    .section-cta .hero-spacer {
        display: none;
    }

    .section-cta .hero-cta {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(16 / var(--break02) * 100vw);
        text-align: center;
        font-size: calc(20 / var(--break02) * 100vw);
        color: #d71c7e;
    }

    .section-cta .cta-caption {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(40 / var(--break02) * 100vw);
        font-weight: 600;
        flex-shrink: 0;
    }

    .section-cta .btn-primary-sub {
        width: calc(340 / var(--break02) * 100vw);
        max-width: 100%;
        box-shadow: 0 calc(2.013181686401367 / var(--break02) * 100vw) calc(12.08 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(502.79 / var(--break02) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(15.1 / var(--break02) * 100vw);
        font-size: calc(16 / var(--break02) * 100vw);
        color: #fff;
    }

    .section-cta .btn-primary-sub .btn-arrow-img {
        width: calc(30.2 / var(--break02) * 100vw);
        height: auto;
    }

    .cta-question2 {
        align-self: stretch;
        display: flex;
        align-items: flex-start;
        padding: calc(8 / var(--break02) * 100vw) 0;
        position: relative;
        isolation: isolate;
    }

    .cta-question-text-box2 {
        border-radius: calc(999 / var(--break02) * 100vw);
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(8 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        z-index: 0;
        flex-shrink: 0;
    }

    .cta-question-text2 {
        width: calc(200 / var(--break02) * 100vw);
        position: relative;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-question-quote2 {
        height: calc(56 / var(--break02) * 100vw);
        width: calc(31 / var(--break02) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(-8.48 / var(--break02) * 100vw);
        left: calc(12 / var(--break02) * 100vw);
        font-size: calc(48 / var(--break02) * 100vw);
        line-height: calc(56 / var(--break02) * 100vw);
        font-weight: 800;
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: left;
        display: flex;
        align-items: center;
        z-index: 1;
        flex-shrink: 0;
    }

    .cta-question3 {
        align-self: stretch;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding: calc(8 / var(--break02) * 100vw) 0;
        position: relative;
        isolation: isolate;
    }

    .cta-question-text-box3 {
        border-radius: calc(999 / var(--break02) * 100vw);
        background-color: #f2f0ee;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        padding: calc(8 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        z-index: 0;
        flex-shrink: 0;
    }

    .cta-question-quote3 {
        height: calc(56 / var(--break02) * 100vw);
        width: calc(31 / var(--break02) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(-7.69 / var(--break02) * 100vw);
        left: calc(115 / var(--break02) * 100vw);
        font-size: calc(48 / var(--break02) * 100vw);
        line-height: calc(56 / var(--break02) * 100vw);
        font-weight: 800;
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: left;
        display: flex;
        align-items: center;
        z-index: 1;
        flex-shrink: 0;
    }

    .cta-illustration-icon {
        width: calc(94 / var(--break02) * 100vw);
        position: relative;
        max-height: 100%;
        object-fit: cover;
    }

    .cta-action {
        align-self: stretch;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0 calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
        gap: calc(32 / var(--break02) * 100vw);
        text-align: left;
    }

    .cta-button {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(16 / var(--break02) * 100vw);
        text-align: center;
        font-size: calc(20 / var(--break02) * 100vw);
        color: #d71c7e;
    }

    .cta-button-caption {
        align-self: stretch;
        position: relative;
        letter-spacing: 0.02em;
        line-height: calc(40 / var(--break02) * 100vw);
        font-weight: 600;
    }

    .sp-btn-primary2 {
        width: calc(340 / var(--break02) * 100vw);
        box-shadow: 0 calc(2.013181686401367 / var(--break02) * 100vw) calc(12.08 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(502.79 / var(--break02) * 100vw);
        background: linear-gradient(90deg, #f80759, #bc4e9c);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(15.1 / var(--break02) * 100vw);
        font-size: calc(16 / var(--break02) * 100vw);
        color: #fff;
    }

    /* section-faq SP … Figma構造 + アコーディオン（767px以下のみ） */
    .section-faq {
        width: 100%;
        position: relative;
        background-color: #f2f0ee;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        gap: calc(32 / var(--break02) * 100vw);
        text-align: center;
        font-size: calc(16 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: 'Josefin Sans';
    }

    .section-faq .faq-heading-group {
        width: calc(340 / var(--break02) * 100vw);
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .section-faq .title-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(4 / var(--break02) * 100vw);
        max-width: 100%;
    }

    .section-faq .label-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(3 / var(--break02) * 100vw) calc(33 / var(--break02) * 100vw);
        gap: calc(16 / var(--break02) * 100vw);
        color: #d71c7e;
        font-family: 'Josefin Sans';
    }

    .section-faq .label-group .divider {
        border-top-color: #d71c7e;
    }

    .section-faq .header-title {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(24 / var(--break02) * 100vw);
        font-family: 'Noto Sans JP';
    }

    .section-faq .header-title .header-title2 {
        margin: 0;
    }

    .section-faq .search-strategy-card-keyword {
        letter-spacing: 0.01em;
        margin-bottom: 0;
    }

    .faq-question-list {
        width: calc(360 / var(--break02) * 100vw);
        max-width: 100%;
        align-self: center;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: calc(16 / var(--break02) * 100vw);
        text-align: left;
        font-family: 'Noto Sans JP';
    }

    .section-faq .faq {
        width: 100%;
        max-width: calc(360 / var(--break02) * 100vw);
        min-width: 0;
        border-radius: calc(8 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: calc(8 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: 0;
        overflow: hidden;
    }

    .section-faq .heading-parent {
        flex: none;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .section-faq .faq-accordion-trigger {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: calc(8 / var(--break02) * 100vw);
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        border: none;
        background: transparent;
        font: inherit;
        color: inherit;
        text-align: left;
        box-sizing: border-box;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .section-faq .heading {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: flex-start;
        gap: calc(8 / var(--break02) * 100vw);
    }

    .section-faq .faq .heading .title {
        width: calc(18 / var(--break02) * 100vw);
        position: relative;
        line-height: calc(25 / var(--break02) * 100vw);
        font-weight: 600;
        display: inline-block;
        flex-shrink: 0;
        color: #d71c7e;
        font-family: 'Noto Sans JP';
        font-size: calc(16 / var(--break02) * 100vw);
        max-width: none;
    }

    .section-faq .faq .title2 {
        flex: 1;
        min-width: 0;
        margin: 0;
        position: relative;
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
        font-size: calc(16 / var(--break02) * 100vw);
        font-family: 'Noto Sans JP';
        color: #d71c7e;
        text-align: left;
    }

    .section-faq .line-roundedchevron-down {
        display: block;
        flex-shrink: 0;
        align-self: flex-start;
        width: calc(20.4 / var(--break02) * 100vw);
        height: calc(20.4 / var(--break02) * 100vw);
        transition: transform 0.3s ease;
    }

    .section-faq .faq.is-open .line-roundedchevron-down {
        transform: rotate(180deg);
    }

    .section-faq .faq-answer-panel {
        display: grid;
        grid-template-rows: 0fr;
        min-height: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        transition: grid-template-rows 0.35s ease-out;
    }

    .section-faq .faq-answer-panel > * {
        min-height: 0;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .section-faq .faq.is-open .faq-answer-panel {
        grid-template-rows: 1fr;
    }

    .section-faq .faq-answer-body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-top: calc(8 / var(--break02) * 100vw);
        font-size: calc(16 / var(--break02) * 100vw);
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
        color: #444;
        display: block;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* footer SP … Figma（390幅） */
    .footer {
        width: 100%;
        max-width: 100%;
        position: relative;
        background-color: #fff;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 0 calc(24 / var(--break02) * 100vw);
        box-sizing: border-box;
        text-align: center;
        font-size: calc(24 / var(--break02) * 100vw);
        color: #fff;
        font-family: 'Noto Sans JP';
    }

    .footer-cta {
        width: calc(390 / var(--break02) * 100vw);
        max-width: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: calc(48 / var(--break02) * 100vw) 0;
        box-sizing: border-box;
        position: relative;
        isolation: isolate;
        gap: calc(120 / var(--break02) * 100vw);
    }

    .footer-cta-container {
        width: calc(360 / var(--break02) * 100vw);
        max-width: calc(100% - calc(32 / var(--break02) * 100vw));
        border-radius: calc(19.11 / var(--break02) * 100vw);
        background: linear-gradient(179.86deg, #f80759, #bc4e9c);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(64 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(80 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(24 / var(--break02) * 100vw);
        z-index: 0;
        flex-shrink: 0;
    }

    .footer-cta-container .footer-cta-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(8 / var(--break02) * 100vw);
        flex-shrink: 0;
        width: 100%;
    }

    .footer-cta-container .footer-cta-title {
        margin: 0;
        position: relative;
        letter-spacing: 0.01em;
        font-weight: 800;
        font-family: 'Noto Sans JP';
        color: #fff;
    }

    .footer-cta-container .footer-cta-description {
        width: calc(288 / var(--break02) * 100vw);
        max-width: 100%;
        margin: 0;
        position: relative;
        font-size: calc(16 / var(--break02) * 100vw);
        line-height: calc(28 / var(--break02) * 100vw);
        font-weight: 500;
        font-family: 'Noto Sans JP';
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-cta-container .sp-btn-primary {
        width: calc(340 / var(--break02) * 100vw);
        max-width: 100%;
        box-shadow: 0 calc(2.013181686401367 / var(--break02) * 100vw) calc(12.08 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(502.79 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(12 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(18 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(15.1 / var(--break02) * 100vw);
        flex-shrink: 0;
        font-size: calc(16 / var(--break02) * 100vw);
        text-decoration: none;
        color: inherit;
    }

    .footer-cta-container .sp-btn-primary .b {
        position: relative;
        letter-spacing: 0.02em;
        background: linear-gradient(63.16deg, #d71c7e, #af2f89);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-cta-container .sp-btn-primary .vector-icon {
        width: calc(30.2 / var(--break02) * 100vw);
        height: auto;
        flex-shrink: 0;
        position: relative;
        max-height: 100%;
    }

    .sp-btn-primary3 {
        width: calc(340 / var(--break02) * 100vw);
        box-shadow: 0 calc(2.013181686401367 / var(--break02) * 100vw) calc(12.08 / var(--break02) * 100vw) rgba(0, 0, 0, 0.08);
        border-radius: calc(502.79 / var(--break02) * 100vw);
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw) calc(32 / var(--break02) * 100vw);
        box-sizing: border-box;
        gap: calc(15.1 / var(--break02) * 100vw);
        flex-shrink: 0;
        font-size: calc(16 / var(--break02) * 100vw);
    }

    .footer-cta-illustration-right-icon {
        width: calc(48 / var(--break02) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(26.61 / var(--break02) * 100vw);
        left: auto;
        right: calc(15 / var(--break02) * 100vw);
        max-height: 100%;
        object-fit: cover;
        z-index: 1;
        flex-shrink: 0;
    }

    .footer-cta-illustration-left-icon {
        width: calc(91 / var(--break02) * 100vw);
        position: absolute;
        margin: 0 !important;
        top: calc(283.61 / var(--break02) * 100vw);
        left: calc(12 / var(--break02) * 100vw);
        max-height: 100%;
        object-fit: cover;
        z-index: 2;
        flex-shrink: 0;
    }

    .footer-container {
        width: calc(390 / var(--break02) * 100vw);
        max-width: 100%;
        padding: 0 calc(16 / var(--break02) * 100vw);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(32 / var(--break02) * 100vw);
        text-align: left;
        font-size: calc(12 / var(--break02) * 100vw);
        color: #333;
    }

    .footer-company {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: calc(16 / var(--break02) * 100vw);
        text-align: center;
    }

    .footer-company-brand {
        align-self: stretch;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: calc(18 / var(--break02) * 100vw);
        box-sizing: border-box;
    }

    .company-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(8 / var(--break02) * 100vw);
        min-width: 0;
        flex: 1;
    }

    .company-logo-icon {
        width: calc(68 / var(--break02) * 100vw);
        max-width: 100%;
        position: relative;
        max-height: 100%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .company-tagline {
        width: calc(222 / var(--break02) * 100vw);
        max-width: 100%;
        margin: 0;
        position: relative;
        letter-spacing: 0.02em;
        font-weight: 600;
        display: inline-block;
        line-height: 1.5;
        text-align: left;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .company-name {
        width: calc(220 / var(--break02) * 100vw);
        max-width: 100%;
        margin: 0;
        position: relative;
        font-size: calc(20 / var(--break02) * 100vw);
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .company-address {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(4 / var(--break02) * 100vw);
        width: 100%;
        max-width: calc(308 / var(--break02) * 100vw);
        text-align: left;
        font-style: normal;
        box-sizing: border-box;
    }

    .footer .company-address .address-post,
    .footer .company-address .address-address,
    .footer .company-address .address-tel {
        width: 100%;
        max-width: 100%;
        margin: 0;
        position: relative;
        letter-spacing: 0.02em;
        font-weight: 600;
        display: flex;
        align-items: center;
        white-space: normal;
        line-height: 1.5;
    }

    .footer .company-address .address-post:first-of-type {
        width: calc(68 / var(--break02) * 100vw);
        max-width: 100%;
    }

    .address-address {
        width: calc(308 / var(--break02) * 100vw);
        max-width: 100%;
        position: relative;
        letter-spacing: 0.02em;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .address-tel {
        width: calc(293 / var(--break02) * 100vw);
        max-width: 100%;
    }

    .footer-contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: calc(16 / var(--break02) * 100vw);
        color: #d71c7e;
    }

    .footer-contact .navi-intem-list {
        display: none !important;
    }

    .footer-link-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc(16 / var(--break02) * 100vw);
        width: 100%;
    }

    .footer-link-official-site {
        width: calc(270 / var(--break02) * 100vw);
        max-width: 100%;
        margin-block: 0;
        margin-inline: auto;
        background-color: #fff;
        border: calc(1.5 / var(--break02) * 100vw) solid #d71c7e;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(8 / var(--break02) * 100vw) calc(16 / var(--break02) * 100vw);
    }

    .footer-link-official-site .speech-text,
    .footer-link-official-site .div {
        position: relative;
        line-height: calc(36 / var(--break02) * 100vw);
        font-weight: 500;
        color: #d71c7e;
        text-align: center;
    }

    .footer-container .footer-legal-nav {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .footer-legal-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: calc(8 / var(--break02) * 100vw) calc(20 / var(--break02) * 100vw);
        width: 100%;
        max-width: calc(390 / var(--break02) * 100vw);
        padding: 0 calc(16 / var(--break02) * 100vw);
        box-sizing: border-box;
        font-size: calc(12 / var(--break02) * 100vw);
        line-height: 1.5;
        font-weight: 500;
        color: #333;
    }

    .footer-legal-nav a {
        color: #333;
        text-decoration: underline;
    }

    .footer-legal-nav a:hover {
        color: #d71c7e;
    }

    .footer-copyright {
        position: relative;
        font-size: calc(12 / var(--break02) * 100vw);
        line-height: calc(18 / var(--break02) * 100vw);
        font-weight: 500;
        color: #333;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

}

:root {
    background-color: #f2f0ee;
}

body {
    line-height: normal;
    min-height: 100%;
    background-color: #f2f0ee;
}

/* <br> の代わりに margin で行間を取る（.u-stack） */
.u-stack {
    display: block;
    margin-top: 0.5em;
}

.u-stack--tight {
    margin-top: 0.28em;
}

.u-stack--loose {
    margin-top: 0.75em;
}

a.btn-primary,
a.btn-primary-main,
a.btn-primary-main3,
a.sp-btn-primary,
a.sp-btn-primary2,
a.sp-btn-primary3,
a.sp-drawer-button,
a.style-btn-01,
a.footer-link-official-site {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-sizing: border-box;
}

a.btn-primary-sub {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.btn-primary .btn-arrow-img,
.sp-btn-primary .btn-arrow-img {
    width: calc(30 / var(--break02) * 100vw);
    height: auto;
}

.btn-primary-main .btn-arrow-img,
.btn-primary-sub .btn-arrow-img,
.btn-primary-main3 .btn-arrow-img {
    width: calc(60 / var(--break02) * 100vw);
    height: auto;
}

.sp-btn-primary2 .btn-arrow-img,
.sp-btn-primary3 .btn-arrow-img {
    width: calc(30 / var(--break02) * 100vw);
    height: auto;
}

.section-form{
	font-size: calc(20 / var(--break02) * 100vw);
}

@media (max-width: 767px) {
	.section-form{
		padding: 10vw 0 ;
		font-size: calc(17.5 / var(--break02) * 100vw);        
		color: #333;
	}
	.section-form .mb80{
		margin-bottom: 8vw;
	}
}

.fv-catch-sp {
  display: none;
}

@media (max-width: 767px) {
  .fv-catch-pc {
    display: none;
  }

  .fv-catch-sp {
    display: inline;
  }
}

.inquiry-container textarea {
  height: 120px;
}