@charset "UTF-8";

/*======================
    CSS Variables
=======================*/
:root {
    /* Primary Colors - チラシベース */
    --ffg-green: #008482;
    --ffg-green-dark: #008482;
    --ffg-green-light: #28C86E;
    --ffg-gradient: linear-gradient(90deg, #008482 0%, #28C86E 100%);
    --ffg-gradient-soft: linear-gradient(90deg, rgba(0,132,130,0.08) 0%, rgba(40,200,110,0.08) 100%);
    --ffg-gradient-light: linear-gradient(90deg, rgba(0,132,130,0.15) 0%, rgba(40,200,110,0.15) 100%);

    /* Number Font */
    --font-number: 'Poppins', 'DM Sans', sans-serif;

    /* CTA Colors - オレンジグラデーション */
    --cta-gradient: linear-gradient(93.72deg, #E12850 0%, #F5873C 100%);
    --cta-shadow: 0px 8px 8px rgba(255, 224, 191, 1);

    /* Dark Colors */
    --ffg-dark: #1A2E3B;
    --ffg-dark-light: #2A4A5C;
    --ffg-navy: #142C6D;

    /* Accent Colors */
    --ffg-gold: #C5A55A;
    --ffg-gold-light: #D4B96E;
    --ffg-yellow: #FFEC80;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-gray: #F4F7F9;
    --bg-warm: #FAFCFB;
    --bg-green-soft: #E5F8EC;

    /* Text Colors */
    --text-dark: #282828;
    --text-gray: #6B8090;
    --text-light: #6C6C6C;
    --text-white: #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26,46,59,0.06);
    --shadow-md: 0 8px 24px rgba(26,46,59,0.12);
    --shadow-lg: 0 16px 48px rgba(26,46,59,0.16);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 50px;

    /* Spacing */
    --section-padding-pc: 100px;
    --section-padding-sp: 64px;
}

/*======================
    Base Styles
=======================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

@media only screen and (max-width: 960px) {
    html {
        scroll-padding-top: 56px;
    }
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    margin: 0;
}

/*======================
    Common Layout
=======================*/
.common_wrap {
    padding: 0 24px;
}

@media only screen and (max-width: 960px) {
    .common_wrap {
        padding: 0 16px;
    }
}

.common_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.common_inner_s {
    max-width: 800px;
    margin: 0 auto;
}

/*======================
    Display Utilities
=======================*/
.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.pc_br {
    display: inline;
}

.sp_br {
    display: none;
}

.sp_br_640 {
    display: none;
}

@media only screen and (max-width: 960px) {
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .pc_br {
        display: none;
    }

    .sp_br {
        display: inline;
    }
}

@media only screen and (max-width: 640px) {
    .sp_br_640 {
        display: inline;
    }
}

/*======================
    Section Common
=======================*/
.section_wrap {
    padding: var(--section-padding-pc) 0;
    position: relative;
}

.section_wrap.bg_gray {
    background: var(--bg-gray);
    position: relative;
}

/* グレー背景セクションのSVG装飾 */
.section_wrap.bg_gray::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='300' cy='100' r='150' fill='none' stroke='rgba(46,173,122,0.04)' stroke-width='1'/%3E%3Ccircle cx='300' cy='100' r='100' fill='none' stroke='rgba(59,181,200,0.03)' stroke-width='1'/%3E%3Ccircle cx='300' cy='100' r='50' fill='rgba(46,173,122,0.02)'/%3E%3C/svg%3E") no-repeat;
    pointer-events: none;
    z-index: 0;
}

.section_wrap.bg_gray::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Ccircle cx='50' cy='250' r='120' fill='none' stroke='rgba(59,181,200,0.03)' stroke-width='1'/%3E%3Ccircle cx='50' cy='250' r='80' fill='none' stroke='rgba(46,173,122,0.025)' stroke-width='1'/%3E%3C/svg%3E") no-repeat;
    pointer-events: none;
    z-index: 0;
}

.section_wrap.bg_gray > .common_wrap {
    position: relative;
    z-index: 1;
}

.section_wrap.bg_gradient {
    background: var(--ffg-gradient);
}

.section_wrap.bg_green_soft {
    background: var(--bg-green-soft);
}

@media only screen and (max-width: 960px) {
    .section_wrap {
        padding: var(--section-padding-sp) 0;
    }
}



.cta_btn {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .cta_btn {
    padding: 0 12px;
  }
}
.cta_btn .cta_btn_text {
  display: inline-block;
  border: 1px solid #fff;
  background: var(--CTA-red, linear-gradient(49deg, #FE3321 23.11%, #FF6325 76.89%));
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.cta_btn .cta_btn_text .cta_btn_text_inner {
  border: 1px solid #fff;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 28px;
  font-weight: 600;
  padding: 16px 120px;
  display: inline-block;
  margin: 4px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 740px) {
  .cta_btn .cta_btn_text .cta_btn_text_inner {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 54px;
  }
}
@media only screen and (max-width: 480px) {
  .cta_btn .cta_btn_text .cta_btn_text_inner {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 600;
  }
}
.cta_btn .cta_btn_text .cta_btn_text_inner img {
  width: 28px;
  height: 30px;
}

/*======================
    Section Title - 既存LP踏襲
=======================*/
.section_title_block {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

@media only screen and (max-width: 960px) {
    .section_title_block {
        margin-bottom: 40px;
    }
}

/* 背景の大きな文字 */
.section_title_block::before {
    content: attr(data-en);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-number);
    font-size: 120px;
    font-weight: 800;
    color: rgba(46, 173, 122, 0.06);
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
}

/* 背景SVG装飾 */
.section_title_block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='200' viewBox='0 0 300 200'%3E%3Cellipse cx='150' cy='100' rx='140' ry='90' fill='none' stroke='rgba(46,173,122,0.06)' stroke-width='1' stroke-dasharray='8 4'/%3E%3Cellipse cx='150' cy='100' rx='100' ry='60' fill='none' stroke='rgba(59,181,200,0.04)' stroke-width='1' stroke-dasharray='6 3'/%3E%3C/svg%3E") no-repeat center;
    z-index: -2;
    pointer-events: none;
}

@media only screen and (max-width: 960px) {
    .section_title_block::before {
        font-size: 60px;
        top: -10px;
    }

    .section_title_block::after {
        width: 200px;
        height: 140px;
    }
}

.section_title_label {
    display: inline-block;
    font-family: var(--font-number);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--ffg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    position: relative;
}

.section_title_label::before,
.section_title_label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--ffg-gradient);
}

.section_title_label::before {
    right: calc(100% + 16px);
}

.section_title_label::after {
    left: calc(100% + 16px);
}

@media only screen and (max-width: 960px) {
    .section_title_label::before,
    .section_title_label::after {
        width: 24px;
    }

    .section_title_label::before {
        right: calc(100% + 8px);
    }

    .section_title_label::after {
        left: calc(100% + 8px);
    }
}

.section_title_main {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

@media only screen and (max-width: 960px) {
    .section_title_main {
        font-size: 28px;
    }
    .section_title_main .section_title_sub {
        font-size: 20px;
        display: inline-block;
    }
}

.section_title_main .highlight {
    background: linear-gradient(transparent 70%, #28C86E 70%);
    padding: 0 4px;
}

.points_title_br,
.support_title_br {
    display: none;
}

@media only screen and (max-width: 540px) {
    .points_title_br,
    .support_title_br {
        display: inline;
    }
}

.section_title_main .highlight_strong {
    color: #008482;
}

/*======================
    Header - 既存LP踏襲
=======================*/
.header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header_wrap.is_scrolled {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

/* PC Header */
.pc_header {
    display: block;
}

@media only screen and (max-width: 960px) {
    .pc_header {
        display: none;
    }
}

.pc_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.pc_header_logo_block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc_header_logo_ffg {
    background: var(--ffg-dark);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 6px;
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
}

.pc_header_logo_times {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

.pc_header_logo_sova_img {
    height: 40px;
    width: auto;
}

.pc_header_menu_block {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pc_header_menu_list {
    display: flex;
    gap: 28px;
}

.pc_header_menu_item {
    list-style: none;
}

.pc_header_menu_link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.02em;
}

.pc_header_menu_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ffg-gradient);
    transition: width 0.3s;
}

.pc_header_menu_link:hover::after {
    width: 100%;
}

.pc_header_menu_link:hover {
    opacity: 1;
    color: var(--ffg-green);
}

/* CTA Button - オレンジグラデーション（既存LP踏襲） */
.pc_header_cta_btn {
    display: inline-block;
    background: var(--cta-gradient);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--cta-shadow);
    transition: all 0.3s ease;
}

.pc_header_cta_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 12px 20px rgba(255, 200, 150, 0.6);
    opacity: 1;
}

/* SP Header */
.sp_header {
    display: none;
}

@media only screen and (max-width: 960px) {
    .sp_header {
        display: block;
        height: 56px;
        background: var(--bg-white);
    }
}

.sp_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.sp_header_logo_block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp_header_logo_ffg {
    background: var(--ffg-dark);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
}

.sp_header_logo_times {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.sp_header_logo_sova_img {
    height: 30px;
    width: auto;
}

.sp_header_menu_btn {
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.sp_header_menu_btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: absolute;
    left: 10px;
    transition: all 0.4s;
    border-radius: 2px;
}

.sp_header_menu_btn span:nth-child(1) {
    top: 14px;
}

.sp_header_menu_btn span:nth-child(2) {
    top: 21px;
}

.sp_header_menu_btn span:nth-child(3) {
    top: 28px;
}

.sp_header_menu_btn.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.sp_header_menu_btn.active span:nth-child(2) {
    opacity: 0;
}

.sp_header_menu_btn.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* SP Drawer Menu */
.sp_header_menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.sp_header_menu.active {
    transform: translateX(0);
}

.sp_header_menu_inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sp_header_menu_list {
    width: 100%;
    margin-bottom: 32px;
}

.sp_header_menu_item {
    border-bottom: 1px solid #eee;
}

.sp_header_menu_link {
    display: block;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.sp_header_menu_cta_btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--cta-gradient);
    color: var(--text-white);
    padding: 18px;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--cta-shadow);
}

/*======================
    Sticky CTA (FV通過後に出現)
=======================*/
.sticky_cta_wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(12, 124, 124, 0.80);
    padding: 12px 24px;
    box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.sticky_cta_wrap.is_visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky_cta_inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sticky_cta_lead {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.sticky_cta_body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.sticky_cta_btn_wrap {
    position: relative;
    display: inline-block;
}

.sticky_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cta-gradient);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    padding: 14px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 0 rgba(180, 40, 30, 0.4), 0 6px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.04em;
    line-height: 1.2;
    min-width: 480px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky_cta_btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(180, 40, 30, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.sticky_cta_person {
    position: absolute;
    right: -52px;
    bottom: -14px;
    width: 72px;
    height: 72px;
    pointer-events: none;
    z-index: 2;
}

.sticky_cta_person img {
    width: 100%;
    height: auto;
    display: block;
}

.sticky_cta_side_badge {
    position: absolute;
    right: -96px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #FFE14A;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 3px 0 rgba(180, 150, 20, 0.35);
    pointer-events: none;
    z-index: 2;
}

/* Sticky CTA - タブレット (<= 960px) */
@media only screen and (max-width: 960px) {
    .sticky_cta_wrap {
        padding: 10px 16px 12px;
    }
    .sticky_cta_inner {
        gap: 6px;
    }
    .sticky_cta_lead {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
    }
    .sticky_cta_btn_wrap {
        width: 100%;
        max-width: 520px;
    }
    .sticky_cta_btn {
        width: 100%;
        min-width: 0;
        font-size: 18px;
        padding: 18px 16px;
    }
    .sticky_cta_person {
        width: 64px;
        height: 64px;
        right: 42px;
        bottom: -10px;
    }
    .sticky_cta_side_badge {
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 64px;
        height: 64px;
        font-size: 12px;
    }
}

/* Sticky CTA - モバイル (<= 640px) */
@media only screen and (max-width: 640px) {
    .sticky_cta_wrap {
        padding: 14px 12px 36px 12px;
    }
    .sticky_cta_inner {
        gap: 10px;
    }
    .sticky_cta_lead {
        font-size: 13px;
        line-height: 1.5;
    }
    .sticky_cta_btn {
        font-size: 16px;
        padding: 20px 60px 20px 20px;
        letter-spacing: 0;
    }
    .sticky_cta_person {
        width: 60px;
        height: 60px;
        right: 42px;
        bottom: -6px;
    }
    .sticky_cta_side_badge {
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        font-size: 11px;
    }
}

/*======================
    Fixed CTA (SP) - 既存LP踏襲
=======================*/
.fixed_cta_wrap {
    display: none;
}

@media only screen and (max-width: 960px) {
    .fixed_cta_wrap {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        background: var(--bg-white);
        padding: 12px 16px 16px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
}

.fixed_cta_btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--cta-gradient);
    color: var(--text-white);
    padding: 16px;
    border-radius: var(--radius-xl);
    font-size: 17px;
    font-weight: 700;
    box-shadow: var(--cta-shadow);
}

/*======================
    FV (First View) - ゼロから再構築
=======================*/

/* FVカラー */
:root {
    --fv-dark: #0E3D2E;
    --fv-yellow: #FFE04A;
    --fv-orange: #FF6B4A;
    --fv-gold: #D9B558;
    --fv-green: #2CB36B;
    --fv-green-dark: #1E9456;
}

/* 全体ラッパー */
.fv_wrap {
    position: relative;
    margin-top: 88px;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* FV 白ステージ幅の基準 */
:root {
    --fv-stage-max: 1160px;
}

/* 旧の左右背景要素は使わない */
.fv_bg {
    display: none;
}

/* 中央ステージ(白い背景) */
.fv_container {
    position: relative;
    z-index: 1;
    max-width: var(--fv-stage-max);
    margin: 0 auto;
    padding: 0;
}

.fv_stage {
    position: relative;
    padding: 48px 48px 56px;
    min-height: 680px;
    background: linear-gradient(108deg, #FFF 65%, rgba(255, 255, 255, 0.5) 96.45%);
    box-shadow: 0 10px 40px rgba(50, 50, 50, 0.15);
}

/* ==========================
   上部: FFG × SoVa ロゴ
========================== */
.fv_logo_block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

/* FFGロゴ(ピル型のブルーグラデ) */
.fv_logo_ffg {
    font-family: var(--font-number);
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #fff;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 60%),
        linear-gradient(135deg, #3BB8EE 0%, #0088D1 55%, #005FA8 100%);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow:
        inset 0 -3px 6px rgba(0, 60, 120, 0.3),
        0 2px 4px rgba(0, 80, 150, 0.2);
}

.fv_logo_times {
    color: #1f1f1f;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.fv_logo_sova_img {
    height: 42px;
    width: auto;
}

/* ==========================
   右上: 0円バッジ (画像)
========================== */
.fv_free_badge {
    position: absolute;
    top: 10px;
    right: -20px;
    width: 190px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

/* ==========================
   タイトル
========================== */
.fv_title_block {
    text-align: left;
    margin-bottom: 24px;
}

/* 上段: 会社設立から設立後のバックオフィスまで */
.fv_title_lead {
    margin-bottom: 16px;
    line-height: 1;
    white-space: nowrap;
}

.fv_title_lead_br {
    display: none;
}

.fv_title_lead > span,
.fv_title_lead small {
    color: #063433;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -3px;
}

/* 「会社設立」「バックオフィス」強調 */
.fv_title_lead_mark {
    color: #063433;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 8px;
    -webkit-text-stroke-color: #FFF;
    paint-order: stroke fill;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -5px;
    position: relative;
    display: inline-block;
    padding: 0 2px;
}

.fv_title_lead_mark::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 10px;
    background: var(--fv-yellow);
    z-index: -1;
    border-radius: 2px;
}

/* 下段: まるっとお任せ */
.fv_title_main {
    color: #063433;
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    font-size: 140px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -20px;
    display: block;
    margin-bottom: 40px;
}

.fv_title_main_text,
.fv_title_main_tail {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.fv_title_main_text::before,
.fv_title_main_tail::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 36px;
    background: var(--fv-yellow);
    z-index: -1;
    border-radius: 2px;
}

/* ==========================
   情報ブロック: 価格 + 実績バッジ
========================== */
.fv_info_block {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: nowrap;
    padding-right: 240px; /* 人物画像分を空ける */
}

/* --- 価格ブロック --- */
.fv_price_block {
    flex-shrink: 0;
}

.fv_price_lead {
    display: inline-block;
    border: 1.5px solid #008482;
    padding: 2px 16px;
    color: #008482;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 12px;
    border-radius: 2px;
}

.fv_price_main {
    display: flex;
    align-items: flex-end;
    color: #063433;
    line-height: 1;
    letter-spacing: -0.02em;
}

.fv_price_prefix {
    font-size: 20px;
    font-weight: 800;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.15em;
    line-height: 1;
    align-self: center;
    margin-right: 6px;
    color: var(--fv-dark);
}

.fv_price_number {
    color: #063433;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 108px;
    font-style: normal;
    font-weight: 700;
    line-height: 108px;
    letter-spacing: -4px;
}

.fv_price_suffix {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 4px;
    line-height: 1;
    gap: 4px;
}

.fv_price_unit {
    font-size: 24px;
    font-weight: 800;
    color: #063433;
    line-height: 1;
}

.fv_price_tax {
    font-size: 13px;
    font-weight: 600;
    color: #063433;
    line-height: 1;
}

/* --- 実績バッジ(画像) --- */
.fv_awards {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
}

.fv_award_img {
    display: block;
    width: 228px;
    height: auto;
    flex-shrink: 0;
}

/* ==========================
   人物画像(右下)
========================== */
.fv_persons {
    position: absolute;
    right: -240px;
    bottom: 0;
    width: 360px;
    pointer-events: none;
    z-index: 2;
}

.fv_persons_img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================
   Responsive
========================== */

/* --- 大きめタブレット / 小さいPC (<= 1280px) --- */
@media only screen and (max-width: 1280px) {
    :root {
        --fv-stage-max: 88%;
    }
    .fv_stage {
        padding: 40px 40px 48px;
        min-height: 600px;
    }
    .fv_title_lead_mark {
        font-size: 54px;
        letter-spacing: -4px;
    }
    .fv_title_lead > span,
    .fv_title_lead small {
        font-size: 32px;
        letter-spacing: -2px;
    }
    .fv_title_main {
        font-size: 112px;
        letter-spacing: -14px;
        margin-bottom: 32px;
    }
    .fv_price_number {
        font-size: 88px;
        line-height: 88px;
    }
    .fv_price_unit {
        font-size: 22px;
    }
    .fv_persons {
        width: 320px;
        right: -160px;
    }
    .fv_info_block {
        padding-right: 180px;
    }
    .fv_free_badge {
        right: -50px;
        width: 170px;
    }
    .fv_award_img {
        width: 200px;
    }
}

/* --- タブレット (<= 960px) --- */
@media only screen and (max-width: 960px) {
    .fv_wrap {
        margin-top: 56px;
    }
    .fv_bg {
        display: none;
    }
    .fv_stage {
        padding: 32px 24px 40px;
        min-height: auto;
        box-shadow: none;
    }
    .fv_logo_block {
        gap: 16px;
        margin-bottom: 20px;
        justify-content: center;
    }
    .fv_logo_ffg {
        font-size: 28px;
        padding: 8px 16px;
        border-radius: 8px;
    }
    .fv_logo_times {
        font-size: 22px;
    }
    .fv_logo_sova_img {
        height: 32px;
    }
    .fv_free_badge {
        width: 130px;
        top: 10px;
        right: 10px;
    }
    .fv_title_block {
        text-align: center;
        margin-bottom: 28px;
    }
    .fv_title_lead {
        margin-bottom: 16px;
        white-space: normal;
        line-height: 1.8;
    }
    .fv_title_lead_br {
        display: inline;
    }
    .fv_title_lead_mark {
        font-size: 40px;
        letter-spacing: -3px;
        -webkit-text-stroke-width: 5px;
    }
    .fv_title_lead_mark::before {
        height: 7px;
        bottom: 2px;
    }
    .fv_title_lead > span,
    .fv_title_lead small {
        font-size: 24px;
        letter-spacing: -1.5px;
    }
    .fv_title_main {
        font-size: 76px;
        letter-spacing: -8px;
        margin-bottom: 24px;
    }
    .fv_title_main_text::before,
    .fv_title_main_tail::before {
        height: 24px;
        bottom: 4px;
    }
    .fv_info_block {
        flex-direction: column;
        gap: 24px;
        padding-right: 0;
        align-items: center;
    }
    .fv_price_block {
        text-align: center;
    }
    .fv_price_main {
        justify-content: center;
    }
    .fv_price_prefix {
        font-size: 18px;
    }
    .fv_price_number {
        font-size: 84px;
        line-height: 84px;
    }
    .fv_price_unit {
        font-size: 20px;
    }
    .fv_price_tax {
        font-size: 12px;
    }
    .fv_awards {
        gap: 12px;
        justify-content: center;
    }
    .fv_award_img {
        width: 180px;
    }
    .fv_persons {
        position: static;
        width: 100%;
        max-width: 200px;
        margin: 24px auto 0;
    }
}

/* --- モバイル (<= 640px) --- */
@media only screen and (max-width: 640px) {
    .fv_stage {
        padding: 24px 16px 32px;
    }
    .fv_logo_block {
        gap: 12px;
        margin-bottom: 16px;
    }
    .fv_logo_ffg {
        font-size: 22px;
        padding: 6px 12px;
    }
    .fv_logo_times {
        font-size: 18px;
    }
    .fv_logo_sova_img {
        height: 26px;
    }
    .fv_free_badge {
        width: 90px;
        top: 6px;
        right: -30px;
    }
    .fv_title_lead {
        white-space: normal;
    }
    .fv_title_lead_mark {
        font-size: 34px;
        letter-spacing: -1px;
        -webkit-text-stroke-width: 4px;
    }
    .fv_title_lead_mark::before {
        height: 5px;
    }
    .fv_title_lead > span,
    .fv_title_lead small {
        font-size: 18px;
        letter-spacing: -1px;
    }
    .fv_title_main {
        font-size: 47px;
        letter-spacing: -5px;
        margin-bottom: 20px;
    }
    .fv_title_main_text::before,
    .fv_title_main_tail::before {
        height: 16px;
        bottom: 4px;
    }
    .fv_price_lead {
        font-size: 14px;
        line-height: 22px;
        padding: 2px 12px;
    }
    .fv_price_number {
        font-size: 64px;
        line-height: 64px;
    }
    .fv_price_unit {
        font-size: 18px;
    }
    .fv_price_tax {
        font-size: 11px;
    }
    .fv_awards {
        gap: 2px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .fv_award_img {
        width: 140px;
    }
    .fv_persons {
        display: none;
    }
}

/*======================
    Problems Section
=======================*/
.problems_section {
    background: linear-gradient(180deg, #FFFBE8 0%, #FFFFFF 35%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
}

/* 右上の半円装飾 */
.problems_section::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(232, 245, 216, 0.55) 0%, rgba(255, 236, 128, 0.35) 100%);
    pointer-events: none;
    z-index: 0;
}

/* セクションタイトル: 背景テキストを目立たせる */
.problems_section .section_title_block {
    position: relative;
    z-index: 1;
    margin-bottom: 64px;
}

.problems_section .section_title_block::before {
    color: rgba(46, 173, 122, 0.12);
    font-size: 120px;
    letter-spacing: 6px;
    top: -20px;
}

.problems_section .section_title_main {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.96px;
}

@media only screen and (max-width: 960px) {
    .problems_section {
        padding: 56px 0 64px;
    }
    .problems_section .section_title_block {
        margin-bottom: 40px;
    }
    .problems_section .section_title_main {
        font-size: 28px;
        line-height: 1.5;
        letter-spacing: 0.02em;
    }
    .problems_section .section_title_block::before {
        font-size: 72px;
        letter-spacing: 4px;
        top: -12px;
    }
    .problems_card {
        padding: 28px 22px 0;
    }
    .problems_card_num_block {
        margin-bottom: 16px;
    }
    .problems_card_num {
        font-size: 12px;
    }
    .problems_card_image {
        max-width: 130px;
        height: 100px;
        margin: 0 auto 18px;
    }
    .problems_card_title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .problems_card_text {
        font-size: 14px;
        line-height: 1.8;
    }
}

.problems_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .problems_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.problems_card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 32px 28px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 40px;
}

.problems_card_num_block {
    margin-bottom: 24px;
}

.problems_card_num {
    font-family: var(--font-number);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #A8B3BC;
    border-radius: 24px;
    border: 1px dashed #E0E2E1;
    padding: 4px 12px;
}

.problems_card_image {
    width: 100%;
    max-width: 140px;
    height: 110px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problems_card_image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.85;
}

.problems_card_content {
    text-align: center;
}

.problems_card_title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.problems_card_text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

/* 下矢印 */
.problems_arrow {
    height: 236px;
    margin: -148px auto 0;
    background-image: url(../images/problems_to_solution_arrow.svg);
    background-position: center center;
    background-size: cover;
}

/* 解決ブロック */
.establish_appeal {
  color: #1B575A;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media only screen and (max-width: 740px) {
  .establish_appeal {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 28px;
    font-weight: 600;
  }
}
.establish_appeal .establish_appeal_text {
  margin: 80px 0 40px 0;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .establish_appeal_text {
    margin: 120px 0 40px 0;
  }
}
.establish_appeal .establish_appeal_text p {
  display: inline-block;
  transform: skewX(-5deg);
  line-height: 1;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .establish_appeal_text p {
    font-size: 18px;
  }
}
.establish_appeal .establish_appeal_text p .strong {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 52px;
  font-weight: 600;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .establish_appeal_text p .strong {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 600;
  }
}
.establish_appeal .establish_appeal_text p .orange {
  display: inline-block;
  background: var(--CTA-red, linear-gradient(49deg, #FE3321 23.11%, #FF6325 76.89%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .establish_appeal_text p .orange {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
  }
}
.establish_appeal .establish_appeal_text p.bg {
  background: linear-gradient(transparent 70%, #FFEC80 0%);
  display: inline;
  padding: 0 2px;
}
.establish_appeal .establish_appeal_text p.attention {
  color: #6C6C6C;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
  transform: skewX(0deg);
}
@media only screen and (max-width: 740px) {
  .establish_appeal .establish_appeal_text p.attention {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    margin-top: 12px;
  }
}
.establish_appeal .point_right {
  position: absolute;
  top: -48px;
  right: 0px;
}
@media only screen and (max-width: 1284px) {
  .establish_appeal .point_right {
    right: 0px;
    top: -72px;
  }
}
@media only screen and (max-width: 480px) {
  .establish_appeal .point_right {
    right: 0px;
    top: -100px;
  }
}
.establish_appeal .point_right p {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  top: 32px;
  right: 32px;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .point_right p {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 500;
    top: 22px;
    right: 22px;
  }
}
.establish_appeal .point_right p .strong {
  color: #142C6D;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .point_right p .strong {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 600;
  }
}
.establish_appeal .point_right .point_icon {
  width: 160px;
  height: auto;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .point_right .point_icon {
    width: 100px;
  }
}
.establish_appeal .point_left {
  position: absolute;
  top: -48px;
  left: 0px;
}
@media only screen and (max-width: 1284px) {
  .establish_appeal .point_left {
    left: 0px;
    top: -72px;
  }
}
@media only screen and (max-width: 480px) {
  .establish_appeal .point_left {
    left: 0px;
    top: -100px;
  }
}
.establish_appeal .point_left p {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  top: 32px;
  left: 32px;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .point_left p {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 500;
    top: 22px;
    left: 22px;
  }
}
.establish_appeal .point_left p .strong {
  color: #142C6D;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .point_left p .strong {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 600;
  }
}
.establish_appeal .point_left .point_icon {
  width: 160px;
  height: auto;
}
@media only screen and (max-width: 740px) {
  .establish_appeal .point_left .point_icon {
    width: 100px;
  }
}





/* 中央メッセージ */
.problems_solution_center {
    text-align: center;
    flex-grow: 0;
}

.problems_solution_text {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.problems_solution_text_green {
    color: #2EAD7A;
}

.problems_solution_text_red {
    position: relative;
    display: inline-block;
    color: #E53939;
    padding: 0 4px;
}

.problems_solution_text_red::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 14px;
    background: #FFEC80;
    z-index: -1;
}

.problems_solution_text_support {
    position: relative;
    display: inline-block;
    font-size: 54px;
    color: #E53939;
    padding: 0 4px;
    line-height: 1;
}

.problems_solution_text_support::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    background: #FFEC80;
    z-index: -1;
}

.problems_solution_note {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/*======================
    Steps Section (Flow)
=======================*/
.steps_lead_block {
    text-align: center;
    margin-bottom: 48px;
}

.steps_lead_text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.8;
}

.steps_lead_text .marker {
    background: linear-gradient(transparent 60%, rgba(46, 173, 122, 0.3) 60%);
    padding: 0 4px;
}

/* サポートカード - 既存LP踏襲 */
.steps_support_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media only screen and (max-width: 1024px) {
    .steps_support_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 640px) {
    .steps_support_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.steps_support_card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}


.steps_support_card_header {
    background: linear-gradient(180deg, #008482 48.97%, #07A19F 99.93%);
    padding: 20px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.steps_support_card_icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.steps_support_card_icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.steps_support_card_title {
    font-size: 20px;
    font-weight: 700;
}

.steps_support_card_body {
    padding: 20px;
}

.steps_support_card_list {
    list-style: none;
    padding: 0;
}

.steps_support_card_item {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px dashed #eee;
}

.steps_support_card_item:last-child {
    border-bottom: none;
}

.steps_support_card_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    border:1px solid #008482;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps_support_card_item::after {
    content: '✔︎';
    position: absolute;
    left: 3px;
    top: 14px;
    color: #008482;
    font-size: 10px;
    font-weight: 700;
}

/*======================
    Establish Solution - 疑問解決
=======================*/
.establish_solution {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

@media only screen and (max-width: 740px) {
    .establish_solution {
        gap: 16px;
        margin-top: 40px;
    }
}

.establish_solution .h4_heading_block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.establish_solution .h4_heading_block_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.establish_solution .h4_heading_block .h4_heading_icon {
    width: 50px;
    height: auto;
}

.establish_solution .h4_heading_decor {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.establish_solution .h4_heading_decor_right {
    transform: scaleX(-1);
}

@media only screen and (max-width: 740px) {
    .establish_solution .h4_heading_block {
        gap: 8px;
    }

    .establish_solution .h4_heading_decor {
        width: 50px;
    }
}

.establish_solution .h4_heading_block p {
    color: var(--ffg-green);
    font-size: 32px;
    font-weight: 700;
    padding: 8px 24px;
    line-height: 36px;
}

@media only screen and (max-width: 740px) {
    .establish_solution .h4_heading_block p {
        font-size: 17px;
        padding: 8px 0;
    }
}

.establish_solution_list {
    max-width: 1060px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

@media only screen and (max-width: 740px) {
    .establish_solution_list {
        gap: 8px;
    }
}

.establish_solution_item {
    flex: 1 1 calc(50% - 8px);
    border: 2px solid #008482;
    border-radius: 12px;
    background-color: var(--bg-white);
    overflow: hidden;
}

@media only screen and (max-width: 740px) {
    .establish_solution_item {
        flex: 1 1 100%;
    }
}

.establish_solution_item .title {
    padding: 12px 32px;
    background: #008482;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.5;
}

@media only screen and (max-width: 740px) {
    .establish_solution_item .title {
        font-size: 15px;
        padding: 12px 16px;
    }
}

.establish_solution_item .title img {
    width: 24px;
    height: auto;
    flex-shrink: 0;
}

@media only screen and (max-width: 740px) {
    .establish_solution_item .title img {
        width: 14px;
    }
}

.establish_solution_item .content {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    padding: 16px 24px;
    line-height: 1.7;
}

@media only screen and (max-width: 740px) {
    .establish_solution_item .content {
        font-size: 14px;
        padding: 14px 16px;
        line-height: 1.75;
    }
}

.establish_solution_item .content strong {
    color: var(--ffg-dark);
    font-weight: 600;
}

/*======================
    Points Section - 左テキスト/右画像のジグザグ
=======================*/
#points {
    background: linear-gradient(104deg, #F6FFF9 0%, #F3FCFE 100%);
    position: relative;
    overflow: hidden;
}

/* セクションタイトル: 背景テキスト(POINTS)を前面に出す */
#points .section_title_block {
    position: relative;
    z-index: 1;
}

#points .section_title_block::before {
    color: rgba(46, 173, 122, 0.12);
}

.points_list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.points_item {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 64px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
}

/* POINT 02 は左右反転 */
.points_item:nth-child(even) {
    flex-direction: row-reverse;
}

/* コンテンツエリア */
.points_item_content {
    flex: 1;
    min-width: 0;
}

/* POINT XX ラベル + 横線 */
.points_item_num {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #0359A5;
    text-align: center;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.8px; /* 180% */
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.points_item_num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #008482 0%, #28C86E 100%);
}

/* 見出し */
.points_item_heading {
    color: #008482;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 16px;
}

/* ハイライト（大きな数字）ブロック */
.points_item_highlight {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    line-height: 1;
}

.points_item_number {
    color: #1A585E;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Poppins;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px; /* 100% */
    letter-spacing: -3px;
}

.points_item_unit {
    color: #1A585E;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 36px; /* 180% */
}

/* 説明文 */
.points_item_text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
}

/* 画像エリア */
.points_item_image {
    flex-shrink: 0;
    width: 440px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points_item_image img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== Tablet (≤960px) ===== */
@media only screen and (max-width: 960px) {
    .points_list {
        gap: 32px;
    }
    .points_item {
        flex-direction: column;
        gap: 28px;
        padding: 40px 28px;
    }
    .points_item:nth-child(even) {
        flex-direction: column;
    }
    .points_item_heading {
        font-size: 22px;
        text-align: center;
    }
    .points_item_highlight {
        justify-content: center;
    }
    .points_item_number {
        font-size: 72px;
    }
    .points_item_unit {
        font-size: 16px;
    }
    .points_item_text {
        font-size: 14px;
    }
    .points_item_image {
        width: 100%;
        max-width: 420px;
        height: 220px;
    }
}

/* ===== SP (≤740px) ===== */
@media only screen and (max-width: 740px) {
    .points_list {
        gap: 24px;
    }
    .points_item {
        gap: 20px;
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }
    .points_item_num {
        font-size: 12px;
        margin-bottom: 14px;
    }
    .points_item_heading {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    .points_item_number {
        font-size: 56px;
        letter-spacing: -2px;
    }
    .points_item_unit {
        font-size: 14px;
    }
    .points_item_highlight {
        gap: 6px;
        margin-bottom: 14px;
    }
    .points_item_text {
        font-size: 13px;
        line-height: 1.8;
    }
    .points_item_image {
        height: 180px;
    }
}

/*======================
    After Support Section
=======================*/
#after {
    background: linear-gradient(180deg, #FFFFFF 0%, #F4FFF9 60%, #EAFBF3 100%);
    position: relative;
    overflow: hidden;
}

#after .section_title_block {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

#after .section_title_block::before {
    color: rgba(46, 173, 122, 0.1);
    letter-spacing: 4px;
}

/* ヒーロービジュアル */
.after_hero_block {
    max-width: 840px;
    margin: 0 auto 56px;
    text-align: center;
}

.after_hero_image {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 960px) {
    .after_hero_block {
        margin-bottom: 40px;
    }
}

/* 価格ブロック */
.after_price_block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.after_price_text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    color: #1A585E;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.96px;
    margin-bottom: 8px;
}

.after_price_lead,
.after_price_tail {
    color: #1A585E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.96px;
}

.after_price_pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--ffg-gradient);
    border-radius: 0;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(23, 149, 135, 0.22);
}

.after_price_prefix {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 64px;
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.after_price_prefix_char {
    display: block;
    line-height: 1;
}

.after_price_number {
    display: inline-block;
    color: #FFF;
    text-align: center;
    text-shadow: 0 5.374px 26.869px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -4.03px;
}

.after_price_unit {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.1;
    color: #FFFFFF;
}

.after_price_unit_main {
    font-size: 18px;
    font-weight: 800;
}

.after_price_unit_sub {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
}

.after_price_sub {
    color: #1A585E;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.96px;
}

.after_price_sub_mark {
    display: inline-block;
    background: linear-gradient(transparent 65%, #FFE27A 65%, #FFE27A 96%, transparent 96%);
    padding: 0 6px;
}

@media only screen and (max-width: 960px) {
    .after_price_block {
        padding: 0 16px;
    }

    .after_price_text {
        gap: 4px 10px;
        font-size: 28px;
        letter-spacing: 0.6px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .after_price_lead,
    .after_price_tail,
    .after_price_sub {
        font-size: 28px;
        letter-spacing: 0.6px;
    }

    .after_price_pill {
        padding: 6px 14px;
        gap: 8px;
    }

    .after_price_prefix {
        height: 44px;
        gap: 10px;
        font-size: 14px;
    }

    .after_price_number {
        font-size: 44px;
        letter-spacing: -2.5px;
    }

    .after_price_unit_main {
        font-size: 14px;
    }

    .after_price_unit_sub {
        font-size: 10px;
    }

    .after_price_sub_mark {
        padding: 0 4px;
    }
}

@media only screen and (max-width: 740px) {
    .after_price_text {
        gap: 4px 6px;
        font-size: 20px;
        letter-spacing: 0.4px;
        line-height: 1.5;
    }

    .after_price_lead,
    .after_price_tail,
    .after_price_sub {
        font-size: 20px;
        letter-spacing: 0.4px;
    }

    .after_price_pill {
        padding: 4px 10px;
        gap: 6px;
    }

    .after_price_prefix {
        height: 34px;
        gap: 6px;
        font-size: 11px;
    }

    .after_price_number {
        font-size: 34px;
        letter-spacing: -2px;
    }

    .after_price_unit_main {
        font-size: 11px;
    }

    .after_price_unit_sub {
        font-size: 9px;
    }
}

@media only screen and (max-width: 480px) {
    .after_price_text {
        gap: 2px 4px;
        font-size: 17px;
    }

    .after_price_lead,
    .after_price_tail,
    .after_price_sub {
        font-size: 17px;
    }

    .after_price_pill {
        padding: 3px 8px;
        gap: 5px;
    }

    .after_price_prefix {
        height: 28px;
        gap: 4px;
        font-size: 10px;
    }

    .after_price_number {
        font-size: 28px;
        letter-spacing: -1.5px;
    }

    .after_price_unit_main {
        font-size: 10px;
    }

    .after_price_unit_sub {
        font-size: 8px;
    }
}

/*======================
    3つの特徴 Section
=======================*/
#features {
    background: #FFFFFF;
    padding: 80px 0 100px;
}

/* FFG × SoVa ロゴ */
.features_brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
}

.features_brand_ffg {
    font-family: var(--font-number);
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    background: linear-gradient(180deg, #00A1E5 0%, #0068B5 100%);
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 0 rgba(0, 60, 130, 0.4);
}

.features_brand_times {
    color: #A0A0A0;
    font-size: 22px;
    font-weight: 500;
}

.features_brand_sova {
    height: 56px;
    width: auto;
}

/* セクションタイトル: POINTS と同じデザインを踏襲 */
#features .section_title_block {
    position: relative;
    z-index: 1;
}

#features .section_title_block::before {
    color: rgba(46, 173, 122, 0.12);
}

/* カード一覧 */
.features_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features_card {
    position: relative;
    padding: 20px 20px 24px;
    background: #FFFFFF;
    border: 2px solid #008483;
    border-radius: 8px;
    text-align: center;
}

/* Point バッジ */
.features_card_badge {
    position: absolute;
    top: -12px;
    left: -12px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #008483;
    color: #FFFFFF;
    z-index: 2;
}

.features_card_badge_label {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.features_card_badge_num {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

/* イラスト */
.features_card_image {
    width: 100%;
    height: 130px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 12px;
}

.features_card_image img {
    max-width: 70%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* カードタイトル */
.features_card_title {
    color: #1A585E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 16px;
}

.features_card_title_mark {
    display: inline-block;
    padding: 4px 10px;
    background: #008483;
    color: #FFFFFF;
    border-radius: 2px;
    line-height: 1;
}

/* 説明文 */
.features_card_desc {
    color: #666666;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: center;
}

@media only screen and (max-width: 960px) {
    #features {
        padding: 60px 0 70px;
    }

    .features_brand {
        gap: 12px;
        margin-bottom: 16px;
    }

    .features_brand_ffg {
        font-size: 22px;
        padding: 5px 10px;
    }

    .features_brand_times {
        font-size: 18px;
    }

    .features_brand_sova {
        height: 40px;
    }

    .features_list {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .features_card {
        padding: 40px 20px 24px;
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }

    .features_card_badge {
        width: 50px;
        height: 50px;
        top: -10px;
        left: -10px;
    }

    .features_card_badge_label {
        font-size: 9px;
    }

    .features_card_badge_num {
        font-size: 13px;
    }

    .features_card_image {
        height: 130px;
        margin-bottom: 16px;
    }

    .features_card_title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .features_card_desc {
        font-size: 14px;
    }
}

@media only screen and (max-width: 740px) {
    #features {
        padding: 48px 0 56px;
    }

    .features_title {
        font-size: 20px;
        letter-spacing: 0.4px;
        margin-bottom: 28px;
    }

    .features_title_kana {
        font-size: 15px;
    }

    .features_card {
        padding: 28px 16px 20px;
    }

    .features_card_image {
        height: 140px;
        padding: 18px;
    }

    .features_card_title {
        font-size: 17px;
    }

    .features_card_desc {
        font-size: 13px;
        line-height: 1.8;
    }
}

/*======================
    Voice Section - サンプルLP踏襲
=======================*/
.voice_grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .voice_grid {
        flex-direction: row;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .voice_grid::-webkit-scrollbar {
        height: 6px;
    }

    .voice_grid::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 3px;
    }

    .voice_grid::-webkit-scrollbar-thumb {
        background: var(--ffg-green);
        border-radius: 3px;
    }
}

.voice_card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: #F5F6F8;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
}

@media only screen and (max-width: 960px) {
    .voice_card {
        flex: 0 0 auto;
        width: 280px;
        min-width: 280px;
    }
}


.voice_card_image_square {
    width: 100%;
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.voice_card_image_square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* タイトル - 左ボーダーアクセント */
.voice_card_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    padding-left: 16px;
    border-left: 3px solid var(--ffg-green);
}

/* タグスタイルのメタ情報 */
.voice_card_tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.voice_card_tag {
    color: var(--ffg-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border: 1px solid var(--ffg-dark);
    display: inline-block;
    border-radius: 2px;
}

.voice_card_text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.voice_card_meta {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #ddd;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice_card_meta::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--ffg-gradient);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/*======================
    FAQ Section - サンプルLP踏襲
=======================*/
.faq_list {
    max-width: 900px;
    margin: 0 auto;
}

.faq_item {
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 質問部分 */
.faq_question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 32px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: linear-gradient(90deg, rgba(0,132,130,0.12) 0%, rgba(40,200,110,0.12) 100%);
    gap: 20px;
    position: relative;
}

@media only screen and (max-width: 960px) {
    .faq_question {
        padding: 14px 16px;
        gap: 12px;
    }
}

/* Qアイコン */
.faq_question::before {
    content: 'Q';
    width: 48px;
    height: 48px;
    background: var(--ffg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-family: var(--font-number);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(46,173,122,0.3);
}

@media only screen and (max-width: 960px) {
    .faq_question::before {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

.faq_question span:first-child {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
}

@media only screen and (max-width: 960px) {
    .faq_question span:first-child {
        font-size: 16px;
    }
}

.faq_question_icon {
    display: none;
}

/* 回答部分（常に開いた状態） */
.faq_answer {
    background: var(--bg-white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq_answer_inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 32px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.9;
}

@media only screen and (max-width: 960px) {
    .faq_answer_inner {
        padding: 0 16px;
        gap: 12px;
    }
}

/* Aアイコン */
.faq_answer_inner::before {
    content: 'A';
    width: 48px;
    height: 48px;
    background: #F5F6F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ffg-green);
    font-family: var(--font-number);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 20px;
}

@media only screen and (max-width: 960px) {
    .faq_answer_inner::before {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-top: 16px;
    }
}

.faq_answer_inner p {
    flex: 1;
    padding: 24px 0;
}

@media only screen and (max-width: 960px) {
    .faq_answer_inner p {
        padding: 20px 0;
        font-size: 14px;
    }
}

/*======================
    CTA Section - サンプルLP踏襲
=======================*/
.cta_wrap {
    background: var(--ffg-gradient);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* タイトルバー */
.cta_title_bar {
    background: var(--ffg-dark);
    padding: 20px 0;
    text-align: center;
}

.cta_title_bar_text {
    color: var(--text-white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

@media only screen and (max-width: 960px) {
    .cta_title_bar_text {
        font-size: 18px;
        padding: 0 16px;
    }
}

/* メインエリア */
.cta_main {
    padding: 64px 0 80px;
    position: relative;
}

.cta_main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Ccircle cx='30' cy='30' r='20' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='270' cy='80' r='35' fill='rgba(255,255,255,0.025)'/%3E%3Ccircle cx='80' cy='270' r='25' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='220' cy='220' r='40' fill='rgba(255,255,255,0.02)'/%3E%3Cpath d='M0 150 Q75 120 150 150 T300 150' stroke='rgba(255,255,255,0.04)' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse 800px 400px at 20% 80%, rgba(255,255,255,0.12), transparent),
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
}

@media only screen and (max-width: 960px) {
    .cta_main {
        padding: 48px 0 100px;
    }
}

.cta_inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta_header_block {
    margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {
    .cta_header_block {
        margin-bottom: 32px;
    }
}

.cta_title {
    color: var(--text-white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
}

@media only screen and (max-width: 960px) {
    .cta_title {
        font-size: 24px;
    }
}

.cta_text {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

@media only screen and (max-width: 960px) {
    .cta_text {
        font-size: 15px;
    }
}

/* フォームカード - サンプルLP踏襲 */
.cta_form_block {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.cta_form_header {
    background: linear-gradient(90deg, rgba(0,132,130,0.1) 0%, rgba(40,200,110,0.1) 100%);
    padding: 20px 32px;
    border-bottom: 1px solid #eee;
}

.cta_form_header_text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.cta_form_inner {
    background: var(--bg-white);
    padding: 32px;
}

@media only screen and (max-width: 960px) {
    .cta_form_inner {
        padding: 24px 20px;
    }

    .cta_form_header {
        padding: 16px 20px;
    }
}

.cta_form_label {
    display: block;
    text-align: left;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta_form_required {
    color: #E12850;
    font-size: 12px;
}

.cta_form_input,
.cta_form_select,
.cta_form_textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid #e8e8e8;
    background: #FAFAFA;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-dark);
    outline: none;
    transition: all 0.2s ease;
}

.cta_form_input:focus,
.cta_form_select:focus,
.cta_form_textarea:focus {
    border-color: var(--ffg-green);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(46,173,122,0.1);
}

.cta_form_input::placeholder,
.cta_form_textarea::placeholder {
    color: #bbb;
}

.cta_form_select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cta_form_textarea {
    resize: vertical;
    min-height: 100px;
}

.cta_form_submit {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--cta-gradient);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
    box-shadow: 0 4px 16px rgba(225,40,80,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta_form_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 24px rgba(225,40,80,0.4);
}

.cta_form_submit_icon {
    width: 20px;
    height: auto;
}

/*======================
    Footer
=======================*/
.footer_wrap {
    background: var(--ffg-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 0;
}

@media only screen and (max-width: 960px) {
    .footer_wrap {
        padding: 40px 0 100px;
    }
}

.footer_inner {
    text-align: center;
}

.footer_logo_block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer_logo_ffg {
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.footer_logo_times {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.footer_logo_sova_img {
    height: 36px;
    width: auto;
}

.footer_info {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer_link {
    color: rgba(255,255,255,0.7);
    display: inline-block;
    transition: color 0.2s;
}

.footer_link:hover {
    color: var(--text-white);
    opacity: 1;
}

.footer_copyright {
    margin-top: 20px;
    opacity: 0.5;
    font-size: 12px;
}

/*======================
    Mid CTA Section - サンプルLP踏襲
=======================*/
.mid_cta_wrap {
    position: relative;
}

.mid_cta_main {
    position: relative;
    background: var(--ffg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 24px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 960px) {
    .mid_cta_main {
        padding: 72px 16px 48px 16px;
        gap: 24px;
        flex-direction: column;
    }
}

/* 円形ポイント要素 - サンプルLP踏襲 */
.mid_cta_points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 10;
}

@media only screen and (max-width: 960px) {
    .mid_cta_points {
        transform: scale(0.85);
        transform-origin: center center;
        gap: 16px;
    }
}

@media only screen and (max-width: 640px) {
    .mid_cta_points {
        flex-direction: column;
        transform: scale(1);
        gap: 48px;
    }
}

.mid_cta_point {
    position: relative;
    height: 200px;
    width: 200px;
    background-color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 20px;
}

@media only screen and (max-width: 640px) {
    .mid_cta_point {
        height: 180px;
        width: 180px;
    }
}

/* タイミングラベル - 円の上に配置 */
.mid_cta_point_label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 6px;
    background-color: var(--ffg-dark);
    display: inline-block;
    white-space: nowrap;
    border: 2px solid var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 960px) {
    .mid_cta_point_label {
        font-size: 14px;
        padding: 6px 16px;
    }
}

.mid_cta_point_value {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.mid_cta_point_value .number {
    color: #E9730C;
    font-family: var(--font-number);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
    display: inline-block;
    margin: 0 2px;
    text-shadow: 0 2px 8px rgba(233,115,12,0.2);
}

@media only screen and (max-width: 640px) {
    .mid_cta_point_value .number {
        font-size: 48px;
    }
}

.mid_cta_point_note {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.mid_cta_point_highlight {
    display: inline;
    background-color: var(--ffg-yellow);
    padding: 2px 6px;
    font-weight: 700;
}

/* CTAボタンブロック */
.mid_cta_btn_block {
    position: relative;
    z-index: 6;
    text-align: center;
}

.mid_cta_btn_micro {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

@media only screen and (max-width: 960px) {
    .mid_cta_btn_micro {
        font-size: 14px;
    }
}

.mid_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--cta-gradient);
    color: var(--text-white);
    padding: 20px 48px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.mid_cta_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.mid_cta_btn_text {
    font-size: 18px;
    font-weight: 700;
}

.mid_cta_btn_arrow {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mid_cta_btn_arrow::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    margin-left: -2px;
}

@media only screen and (max-width: 960px) {
    .mid_cta_btn {
        padding: 18px 36px;
    }

    .mid_cta_btn_text {
        font-size: 16px;
    }
}

/* 背景装飾 - SVGパターン追加 */
.mid_cta_main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ccircle cx='20' cy='20' r='15' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='180' cy='60' r='25' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='60' cy='180' r='20' fill='rgba(255,255,255,0.035)'/%3E%3Ccircle cx='150' cy='150' r='30' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse 500px 300px at 10% 90%, rgba(255,255,255,0.12), transparent),
        radial-gradient(ellipse 400px 300px at 90% 10%, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
}

/* 右側の人物シルエット風装飾 */
.mid_cta_main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 200px;
    height: 280px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='280' viewBox='0 0 200 280'%3E%3Cellipse cx='100' cy='40' rx='35' ry='40' fill='rgba(255,255,255,0.06)'/%3E%3Cpath d='M40 280 L50 120 C60 80 140 80 150 120 L160 280 Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat bottom center;
    pointer-events: none;
    opacity: 0.7;
    z-index: 1;
}

@media only screen and (max-width: 960px) {
    .mid_cta_main::after {
        display: none;
    }
}

/* Alt color scheme */
.mid_cta_wrap.mid_cta_alt .mid_cta_title_bar {
    background: #1A3A5C;
}

.mid_cta_wrap.mid_cta_alt .mid_cta_main {
    background: linear-gradient(135deg, #2A5A7C 0%, #3B7A9C 100%);
}

.mid_cta_wrap.mid_cta_alt .mid_cta_point_label {
    background-color: #1A3A5C;
}



.freee_support_cta {
  position: relative;
  background: linear-gradient(90deg, #008482 0%, #28C86E 100%);
  overflow: hidden;
  padding: 24px;
}

.freee_support_cta_inner {
  position: relative;
  margin: 0 auto;
  padding: 24px 24px;
  gap: 48px;
  border: 1px solid #ffffff;
}

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

.freee_support_cta_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.freee_support_cta_logo_block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.freee_support_cta_logo_ffg {
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #00A1E5 0%, #0068B5 100%);
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 0 rgba(0, 60, 130, 0.4);
}
.freee_support_cta_logo_times {
  color: #888;
  font-size: 18px;
  font-weight: 500;
}
.freee_support_cta_logo_sova_img {
  height: 26px;
  width: auto;
}
.freee_support_cta_lead {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.freee_support_cta_price {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.freee_support_cta_price_label {
  font-size: 22px;
}
.freee_support_cta_price_amount {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-size: 72px;
  letter-spacing: -2px;
  line-height: 1;
}
.freee_support_cta_price_unit {
  font-size: 28px;
}
.freee_support_cta_price_tax {
  font-size: 16px;
  font-weight: 500;
}
.freee_support_cta_features {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 6px 20px;
  text-align: center;
  white-space: nowrap;
}
.freee_support_cta_action {
  z-index: 2;
  gap: 8px;
}
.freee_support_cta_action_inner {
  text-align: center;
  position: relative;
}
.freee_support_cta_micro_copy {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1;
}
.freee_support_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--CTA-red, linear-gradient(49deg, #FE3321 23.11%, #FF6325 76.89%));
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 120px;
  border-radius: 12px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.freee_support_cta_btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
.freee_support_cta_btn_text {
  color: #fff;
}
.freee_support_cta_btn_icon {
  width: 22px;
  height: auto;
}
.freee_support_cta_person {
  width: 280px;
  height: auto;
  position: absolute;
  z-index: -1;
  top: -88px;
  right: -140px;
}
/* ===== Tablet (≤960px): コンテンツとボタンを縦積み ===== */
@media only screen and (max-width: 960px) {
  .freee_support_cta {
    padding: 16px;
  }
  .freee_support_cta_inner {
    padding: 24px 20px;
    gap: 0;
  }
  .freee_support_content_block {
    flex-direction: column;
    gap: 32px;
  }
  .freee_support_cta_content {
    gap: 10px;
  }
  .freee_support_cta_lead {
    font-size: 18px;
  }
  .freee_support_cta_price_label {
    font-size: 20px;
  }
  .freee_support_cta_price_amount {
    font-size: 64px;
  }
  .freee_support_cta_price_unit {
    font-size: 24px;
  }
  .freee_support_cta_btn {
    font-size: 20px;
    padding: 14px 80px;
  }
  .freee_support_cta_person {
    width: 200px;
    top: -64px;
    right: -90px;
  }
}

/* ===== SP (≤740px): さらに詰めて表示 ===== */
@media only screen and (max-width: 740px) {
  .freee_support_cta {
    padding: 12px;
  }
  .freee_support_cta_inner {
    padding: 20px 14px;
  }
  .freee_support_content_block {
    gap: 20px;
  }
  .freee_support_cta_content {
    gap: 8px;
  }
  .freee_support_cta_lead {
    font-size: 14px;
  }
  .freee_support_cta_price_label {
    font-size: 16px;
  }
  .freee_support_cta_price_amount {
    font-size: 44px;
  }
  .freee_support_cta_price_unit {
    font-size: 18px;
  }
  .freee_support_cta_price_tax {
    font-size: 12px;
  }
  .freee_support_cta_features {
    font-size: 10px;
    padding: 5px 12px;
    white-space: normal;
    max-width: 100%;
  }
  .freee_support_cta_micro_copy {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .freee_support_cta_btn {
    font-size: 18px;
    padding: 12px 40px;
    border-radius: 10px;
  }
  .freee_support_cta_btn_icon {
    width: 18px;
  }
  .freee_support_cta_person {
    width: 120px;
    top: -32px;
    right: -50px;
  }
}

/*======================
    SP Fine-tuning - 余白/フォント階層の調整
=======================*/
@media only screen and (max-width: 960px) {
    /* セクション共通: タイトル周りのマージンを引き締め */
    :root {
        --section-padding-sp: 56px;
    }
    .section_title_block {
        margin-bottom: 32px;
    }

    /* Problems: 矢印装飾 */
    .problems_arrow {
        height: 140px;
        margin: -70px auto 0;
    }

    /* Problems → Solution ヘッドライン */
    .problems_solution_text {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    .problems_solution_text_support {
        font-size: 32px;
    }
    .problems_solution_text_support::before {
        height: 10px;
    }
    .problems_solution_note {
        font-size: 13px;
    }

    /* Establish appeal */
    .establish_appeal .establish_appeal_text {
        margin: 72px 0 32px 0;
    }

    /* Flow (Steps) Section */
    .steps_lead_block {
        margin-bottom: 32px;
    }
    .steps_lead_text {
        font-size: 16px;
        line-height: 1.8;
    }
    .steps_support_card_header {
        padding: 14px 16px;
        gap: 10px;
    }
    .steps_support_card_icon {
        width: 30px;
        height: 30px;
        padding: 6px;
    }
    .steps_support_card_title {
        font-size: 17px;
    }
    .steps_support_card_body {
        padding: 14px 16px;
    }
    .steps_support_card_item {
        font-size: 14px;
        padding: 8px 0 8px 22px;
        line-height: 1.7;
    }
    .steps_support_card_item::before,
    .steps_support_card_item::after {
        top: 13px;
    }
    .establish_solution {
        margin-top: 32px;
    }

    /* Voice Section */
    .voice_card {
        padding: 24px 20px;
    }
    .voice_card_image_square {
        height: 120px;
        margin-bottom: 16px;
    }
    .voice_card_title {
        font-size: 18px;
        margin-bottom: 12px;
        padding-left: 12px;
    }
    .voice_card_text {
        font-size: 14px;
        line-height: 1.8;
    }
    .voice_card_meta {
        font-size: 12px;
        margin-top: 12px;
        padding-top: 12px;
    }

    /* FAQ */
    .faq_item {
        margin-bottom: 14px;
    }

    /* CTA Section (form) */
    .cta_title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .cta_text {
        font-size: 15px;
        line-height: 1.8;
    }
    .cta_form_header_text {
        font-size: 14px;
    }

    /* Mid CTA */
    .mid_cta_point_value {
        font-size: 18px;
    }
    .mid_cta_point_note {
        font-size: 13px;
    }

    /* Footer */
    .footer_info {
        font-size: 13px;
        line-height: 1.8;
    }
    .footer_copyright {
        font-size: 11px;
        margin-top: 16px;
    }
}

@media only screen and (max-width: 640px) {
    .section_title_block {
        margin-bottom: 28px;
    }
    .problems_arrow {
        height: 110px;
        margin: -56px auto 0;
    }
    .problems_solution_text {
        font-size: 20px;
    }
    .problems_solution_text_support {
        font-size: 28px;
    }
    .establish_appeal .establish_appeal_text {
        margin: 64px 0 24px 0;
    }
    .steps_support_card_title {
        font-size: 16px;
    }
    .steps_support_card_item {
        font-size: 13.5px;
    }
    .voice_card_title {
        font-size: 17px;
    }
    .voice_card_text {
        font-size: 13.5px;
    }
    .cta_title {
        font-size: 22px;
    }
    .cta_text {
        font-size: 14px;
    }
}