@charset "UTF-8";

/*======================
    Box-sizing リセット
    テーマ共通の reset.css には box-sizing が含まれていないため、
    referral_campaign で `width: 100% + padding` のレイアウトを成立させるために追加。
=======================*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*======================
    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: #F8F8F8;
    --bg-warm: #FAFCFB;
    --bg-green-soft: #E5F8EC;

    /* Text Colors */
    --text-main: #014746;
    --text-dark: #000;
    --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: 64px;
    --section-padding-sp: 64px;

    /* FV Colors */
    --fv-dark: #0E3D2E;
    --fv-yellow: #FFE04A;
    --fv-orange: #FF6B4A;
    --fv-gold: #D9B558;
    --fv-green: #2CB36B;
    --fv-green-dark: #1E9456;

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

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

@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.5;
    -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;
    }
}

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

main .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;
    }
}

/*======================
    Section Title
=======================*/
.section_title_block {
    text-align: center;
    margin-bottom: 32px;
    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: -8px;
    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;
    max-width: 100vw;
    overflow: hidden;
}

/* 背景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: 16px;
    }

    .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-main);
    letter-spacing: 0.96px;
}

.section_title_desc {
    margin-top: 24px;
}

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

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

/*======================
    Common CTA Button
=======================*/
.freee_support_cta_btn,
.header_cta_btn,
.sticky_cta_btn {
    position: relative;
    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: 21px 110px;
    border: 1px solid var(--bg-white);
    border-radius: 999px;
    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::before,
.header_cta_btn::before,
.sticky_cta_btn::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: 999px;
    pointer-events: none;
}

.freee_support_cta_btn:hover,
.header_cta_btn:hover,
.sticky_cta_btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
    opacity: 1;
}

/*======================
    Header
=======================*/
.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;
    position: static;
    width: auto;
    background: transparent;
    box-shadow: none;
    z-index: auto;
}

@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 16px 76px;
}

.header_logo_block {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.header_logo_lead {
    color: #0A4746;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    border-bottom: 1px dashed currentColor;
    padding-bottom: 5px;
}

.header_logo_name_block {
    display: flex;
    align-items: center;
    gap: 5.19px;
}

.header_logo_sova_img {
    width: auto;
    height: auto;
}

.header_logo_name {
    color: #0A4746;
    font-size: 20.528px;
    font-weight: 700;
    line-height: 1;
}

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

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

.pc_header_menu_item {
    list-style: none;
}

.pc_header_menu_link {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
    line-height: 1;
}

.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 - オレンジグラデーション */
.header_cta_btn {
    padding: 14px 50px;
    font-size: 15px;
}

.header_cta_btn .freee_support_cta_btn_text {
    font-size: 22px;
}

.header_cta_btn .freee_support_cta_btn_icon {
    width: 32px;
}

@media only screen and (max-width: 1250px) {
    .pc_header_inner {
        padding-left: 0;
    }

    .pc_header_menu_link {
        font-size: 15px;
    }

    .header_cta_btn {
        padding: 14px 32px;
    }

    .header_cta_btn .freee_support_cta_btn_text {
        font-size: 18px;
    }

    .header_logo_block {
        gap: 5px;
    }

    .header_logo_lead {
        font-size: 9px;
        letter-spacing: 0.3px;
        padding-bottom: 4px;
    }

    .header_logo_name_block {
        gap: 3.5px;
    }

    .header_logo_name {
        font-size: 14px;
    }

    .header_logo_sova_img {
        height: 20px;
    }
}

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

@media only screen and (max-width: 960px) {
    .sp_header {
        display: block;
        height: 56px;
        background: var(--bg-white);
        position: static;
        width: auto;
        transform: none;
        box-shadow: none;
        z-index: auto;
    }

    .header_cta_btn {
        padding: 14px 32px;
        width: 100%;
        max-width: 520px;
    }
}

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

.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;
}

/*======================
    Sticky CTA (FV通過後に出現)
=======================*/
.sticky_cta_wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: linear-gradient(90deg, rgba(0, 132, 130, 0.80) 0%, rgba(40, 200, 110, 0.80) 100%);
    box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 12px 24px;
    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 {
    padding: 14px 60px;
    min-width: 480px;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
}

.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;
    }
}

/*======================
    FV (First View)
=======================*/
.fv_wrap {
    display: block;
    position: relative;
    margin-top: 88px;
    width: 100%;
    padding: 39px 0 57px 106px;
    background: linear-gradient(102deg, #008482 -0.37%, #0E9D7B 35.78%, #28C86E 99.9%);
    isolation: isolate;
    overflow: hidden;

    /* FV装飾サークル — 位置/サイズはここで調整 */
    /* 右上 */
    --fv-bg-tr-01-size: 200px;
    --fv-bg-tr-01-x: 15px;
    --fv-bg-tr-01-y: -46px;
    --fv-bg-tr-02-size: 200px;
    --fv-bg-tr-02-x: -100px;
    --fv-bg-tr-02-y: 55px;
    /* 左下 */
    --fv-bg-bl-01-size: 258px;
    --fv-bg-bl-01-x: -123px;
    --fv-bg-bl-01-y: 35px;
    --fv-bg-bl-02-size: 200px;
    --fv-bg-bl-02-x: -21px;
    --fv-bg-bl-02-y: 0px;
}

.fv_wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        url(../images/referral/fv_bg_circle_02.svg) right var(--fv-bg-tr-02-x) top var(--fv-bg-tr-02-y) / var(--fv-bg-tr-02-size) no-repeat,
        url(../images/referral/fv_bg_circle_02.svg) left var(--fv-bg-bl-02-x) bottom var(--fv-bg-bl-02-y) / var(--fv-bg-bl-02-size) no-repeat,
        url(../images/referral/fv_bg_circle_01.svg) right var(--fv-bg-tr-01-x) top var(--fv-bg-tr-01-y) / var(--fv-bg-tr-01-size) no-repeat,
        url(../images/referral/fv_bg_circle_01.svg) left var(--fv-bg-bl-01-x) bottom var(--fv-bg-bl-01-y) / var(--fv-bg-bl-01-size) no-repeat;
}

.fv_inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 102px;
}

.fv_card {
    position: relative;
    width: clamp(480px, calc(703 / 1440 * 100vw), 703px);
    flex-shrink: 0;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.fv_card::before {
    content: '';
    position: absolute;
    top: -3.5%;
    left: 1%;
    width: 98px;
    height: 97px;
    background: url(../images/referral/fv_card_clip.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
}

.fv_visuals_block {
    position: relative;
    width: 521px;
    max-width: 100%;
}

.fv_visuals_main {
    width: 100%;
    height: auto;
}

.fv_visuals_row {
    position: absolute;
    right: 3%;
    bottom: -35%;
    top: calc(100% - 40px);
    width: 97%;
    display: flex;
    justify-content: end;
    align-items: end;
    gap: calc(12 / 521 * 100%);
    z-index: 2;
}

.fv_visuals_campaign {
    width: calc(260 / 521 * 100%);
    height: auto;
    flex-shrink: 0;
}

.fv_visuals_achievement {
    width: calc(200 / 521 * 100%);
    height: auto;
    flex-shrink: 0;
}

.fv_card_inner {
    position: relative;
    z-index: 1;
    padding: 52px 54px;
    text-align: center;
}

.fv_card_logo {
    margin-bottom: 32px;
}

.fv_card_title_logo {
    display: inline-block;
    width: 370px;
    max-width: 100%;
    vertical-align: middle;
    margin-right: 12px;
}

.fv_card_title_logo img {
    width: 100%;
    display: block;
}

.fv_card_title {
    color: var(--text-main);
    font-size: 64px;
    font-weight: 900;
    line-height: calc(1em + 16px);
    letter-spacing: 0.96px;
}

.fv_card_title_wo {
    font-size: 0.8em;
}

.yellow_highlight {
    position: relative;
    display: block;
    width: fit-content;
    margin-inline: auto;
    white-space: nowrap;
    z-index: 0;
}

.yellow_highlight::before {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: -1px;
    height: 29px;
    background: var(--ffg-yellow);
    z-index: -1;
    border-radius: 2px;
    transform: skewX(-4deg);
}

.fv_card_desc {
    position: relative;
    margin-top: 36px;
    color: var(--text-main);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
}

.fv_card_desc::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 95%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: auto;
    aspect-ratio: 437 / 357;
    background: url("../images/referral/fv_card_bg.png") center / contain no-repeat;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.fv_card_desc_mark {
    position: relative;
    display: inline-block;
    padding: 3px 8px 5px;
    color: #FFFFFF;
    line-height: 1;
    margin-right: 4px;
    z-index: 0;
}

.fv_card_desc_mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ffg-green);
    transform: skewX(-4deg);
    z-index: -1;
}

.fv_card .freee_support_cta_action {
    margin-top: 62px;
}

/* カード上では微コピーをダーク色に上書き(元は白) */
.fv_card .freee_support_cta_micro_copy {
    color: var(--text-light);
    font-size: 18px;
}

/* ==========================
   FV Responsive
========================== */
@media only screen and (max-width: 1280px) {
    .fv_wrap {
        padding: 48px 100px;
    }
    .fv_inner {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .fv_card {
        width: 100%;
        margin: 0 auto;
    }
    .fv_visuals_block {
        width: 640px;
    }

    .fv_visuals_row {
        position: static;
        width: auto;
        margin-top: -130px;
        justify-content: center;
    }
}

@media only screen and (max-width: 960px) {
    .fv_wrap {
        margin-top: 56px;
    }
    .fv_inner {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .fv_card::before {
        top: -4.1%;
    }
    .fv_card_inner {
        padding: 48px 36px;
    }
    .fv_card_logo {
        margin-bottom: 24px;
    }
    .fv_card_title {
        font-size: 42px;
        letter-spacing: -1px;
        gap: 8px;
    }
    .fv_card_title_logo {
        width: 260px;
    }
    .fv_card_desc {
        margin-top: 28px;
        font-size: 16px;
    }
    .fv_card .freee_support_cta_action {
        margin-top: 44px;
    }
    .fv_card .freee_support_cta_micro_copy {
        font-size: 12px;
    }
    .fv_card .freee_support_cta_btn {
        width: 331px;
    }
    .fv_visuals_block {
        width: 480px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 640px) {
    .fv_wrap {
        padding: 32px 11px;
        /* 右上のサイズ・位置調整 */
        --fv-bg-tr-01-size: 125px;
        --fv-bg-tr-01-x: 35px;
        --fv-bg-tr-01-y: -67px;
        --fv-bg-tr-02-size: 125px;
        --fv-bg-tr-02-x: -45px;
        --fv-bg-tr-02-y: -20px;
        /* 左下は非表示 */
        --fv-bg-bl-01-size: 0;
        --fv-bg-bl-02-size: 0;
    }
    .fv_card::before {
        width: 74px;
        height: 74px;
        left: -3%;
    }
    .fv_card_inner {
        padding: 32px 0;
    }
    .fv_card_logo_img {
        width: 220px;
    }
    .fv_card_title {
        letter-spacing: 0.573px;
        gap: 6px;
    }
    .fv_card_title_logo {
        width: 213px;
        margin-right: 3px;
    }
    .yellow_highlight::before {
        left: 0px;
        right: 0px;
        height: 21px;
    }
    .fv_card_desc {
        margin-top: 20px;
        font-size: 14px;
    }
    .fv_card .freee_support_cta_action {
        margin-top: 32px;
    }
    .fv_visuals_block {
        width: 340px;
        max-width: 100%;
    }
    .fv_visuals_main {
        width: 75%;
        margin-left: 39%;
        margin-top: -24px;
    }
    .fv_visuals_row {
        margin-top: -156px;
        gap: 4px;
    }
    .fv_visuals_campaign {
        width: 180px;
    }
    .fv_visuals_achievement {
        width: 86px;
    }
}

/*======================
    Recommend Section
=======================*/
.recommend_card {
    position: relative;
    max-width: 752px;
    margin: 0 auto;
    background: #FCFAF4;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 40px 10px 40px 64px;
}

.recommend_card::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 276px;
    background: url('../images/referral/recommend_image_01.svg') no-repeat center / contain;
    pointer-events: none;
}

.recommend_card::after {
    content: '';
    position: absolute;
    top: -4%;
    right: 5%;
    width: 133px;
    height: 131px;
    background: url('../images/referral/recommend_image_02.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

.recommend_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.recommend_card ul li {
    position: relative;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.5;
    padding: 12px 0 12px 26px;
    border-bottom: 1px dashed #008482;
}

.recommend_card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../images/referral/recommend_check_box.svg') no-repeat center / contain;
}

@media only screen and (max-width: 960px) {
    .recommend_card {
        padding-left: 40px;
    }

    .recommend_card ul li {
        font-size: 14px;
    }
}

/*======================
    Support Content Section
=======================*/
.after_hero_block {
    max-width: 840px;
    margin: 0 auto -20px;
    text-align: center;
}

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

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

@media only screen and (max-width: 640px) {
    .recommend_card::after {
        top: 85%;
        right: -14px;
        width: 115px;
        height: 115px;
    }
}

/* 価格ブロック */
.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_group {
    display: inline-flex;
    align-items: center;
    gap: 6px 12px;
    flex-wrap: nowrap;
}

.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 12px;
        font-size: 36px;
        letter-spacing: 0.8px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .after_price_lead,
    .after_price_tail,
    .after_price_sub {
        font-size: 36px;
        letter-spacing: 0.8px;
    }

    .after_price_pill {
        padding: 8px 18px;
        gap: 10px;
    }

    .after_price_prefix {
        height: 56px;
        gap: 14px;
        font-size: 18px;
    }

    .after_price_number {
        font-size: 56px;
        letter-spacing: -3px;
    }

    .after_price_unit_main {
        font-size: 18px;
    }

    .after_price_unit_sub {
        font-size: 13px;
    }

    .after_price_sub_mark {
        padding: 0 6px;
    }
}

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

    .after_price_lead,
    .after_price_tail,
    .after_price_sub {
        font-size: 26px;
        letter-spacing: 0.5px;
    }

    .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: 11px;
    }
}

@media only screen and (max-width: 480px) {
    .after_price_text {
        gap: 3px 6px;
        font-size: 22px;
    }

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

    .after_price_pill {
        padding: 4px 12px;
        gap: 7px;
    }

    .after_price_prefix {
        height: 36px;
        gap: 8px;
        font-size: 13px;
    }

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

    .after_price_unit_main {
        font-size: 13px;
    }

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

/*======================
    Reason Section
=======================*/
.reason_inner {
    max-width: 1239px;
    margin: 0 auto;
}

.reason_block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 87px;
}

.reason_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 0 0 auto;
    max-width: 100%;
    padding-top: 35px;
}

.reason_list_image {
    max-width: 242px;
    min-width: 0;
}

.reason_card {
    position: relative;
    padding: 0 24px 35px;
    flex: 0 0 auto;
    width: min-content;
}

.reason_card_desc {
    color: #282828;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.reason_card:last-child {
    padding-right: 0;
}

.reason_card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(50% - 35px / 2);
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 75%;
    border-right: 2px dashed var(--ffg-green);
}

.reason_card_title_block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reason_card_badge_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 53px;
    height: 53px;
    color: var(--ffg-green);
    font-weight: 700;
    border: 3px solid var(--ffg-green);
    border-radius: 50%;
    box-sizing: border-box;
}

.reason_card_title {
    color: var(--text-main);
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    text-box-trim: trim-both;
}

.reason_card_title_mark {
    display: inline-block;
    padding: 3px 8px 5px;
    background: var(--ffg-green);
    color: #FFFFFF;
    font-size: 26px;
    border-radius: 3px;
    line-height: 1;
    margin-right: 4px;
}

@media only screen and (max-width: 1270px) {
    .reason_block {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 960px) {
    .reason_list {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0;
        padding-left: 20px;
        width: 100%;
        max-width: 500px;
    }

    .reason_card {
        width: 100%;
        padding-right: 0;
        padding: 24px 0;
    }

    .reason_card:last-child {
        padding-bottom: 0;
    }

    .reason_card:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 0;
        border-right: none;
        border-bottom: 2px dashed var(--ffg-green);
    }

    .reason_card_title {
        font-size: 22px;
    }

    .reason_card_badge_num {
        width: 45px;
        height: 45px;
    }
}

@media only screen and (max-width: 760px) {
    .reason_block {
        margin-top: -34px;
    }

    .reason_list {
        padding: 0 8px;
    }
}

/*======================
    Campaign Section
=======================*/
.campaign_inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(103deg, #28C86E -0.01%, #018582 100.01%);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    max-width: 964px;
    margin: 0 auto;
    padding: 40px 64px 64px;
}

.campaign_inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -118px;
    z-index: 0;
    width: 571px;
    height: auto;
    aspect-ratio: 571 / 472;
    background: url('../images/referral/campaign_present_image.svg') no-repeat top right / contain;
    transform-origin: top right;
    pointer-events: none;
}

.campaign_inner > * {
    position: relative;
    z-index: 1;
}

.campaign_inner .section_title_block p {
    color: var(--text-white);
}

.campaign_inner .section_title_label {
    -webkit-text-fill-color: var(--text-white);
}

.campaign_inner .section_title_label::before, .campaign_inner .section_title_label::after {
    background: var(--bg-white);
}

.campaign_inner .section_title_main {
    color: var(--text-white);
}

.campaign_image_block {
    margin: 40px 0;
}

.sp_campaign_image_block {
    display: none;
    margin-bottom: 28px;
}

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

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

    .sp_campaign_image_block {
        display: block;
    }

    .campaign_inner::before {
        top: 70px;
        right: -70px;
        width: 244px;
    }
}


/* --- CTA Action Button (CampaignとFlowで共有) --- */
.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: 10px;
    line-height: 1;
}

.freee_support_cta_btn_text {
    font-size: 28px;
}

.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;
}

@media only screen and (max-width: 960px) {
    .freee_support_cta_btn {
        padding: 14px 80px;
    }
    .freee_support_cta_person {
        width: 200px;
        top: -64px;
        right: -90px;
    }

    .freee_support_cta_btn_text {
        font-size: 20px;
    }
}

@media only screen and (max-width: 740px) {
    .freee_support_cta_micro_copy {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .freee_support_cta_btn {
        font-size: 18px;
        padding: 12px 40px;
        border-radius: 999px;
    }
    .freee_support_cta_btn_icon {
        width: 18px;
    }
    .freee_support_cta_person {
        width: 120px;
        top: -32px;
        right: -50px;
    }
}

/*======================
    Flow Section
=======================*/
.flow_section {
    background: linear-gradient(180deg, #F2FAF7 0%, #F8F8F8 100%);
}

.flow_list {
    display: grid;
    grid-template-columns: repeat(4, 230px);
    grid-template-rows: repeat(6, auto);
    column-gap: 16px;
    row-gap: 0;
    justify-content: center;
    margin-top: 55px;
}

.steps_point_label {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    color: var(--ffg-green-light);
    font-size: 14px;
    font-weight: 700;
    margin: 16px 0 4px;
}

.steps_point_label img {
    width: 5px;
    height: 5px;
}

.flow_card {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    border-radius: 0 12px 12px 12px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    padding: 12px 16px;
}

.flow_card:first-child::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -4px;
    width: 60px;
    height: 61px;
    background: url('../images/referral/flow_step_01.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

.flow_card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../images/referral/flow_step_arrow.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

.steps_card_badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #F5F6F8;
    padding: 0 12px;
}

.steps_card_badge_num {
    color: var(--ffg-green-light);
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    line-height: 2;
}

.steps_card_image {
    width: 75px;
    display: flex;
    justify-self: center;
}

.steps_card_image img {
    margin: 0 auto;
}

.steps_card_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-align: center;
    width: 186px;
    height: auto;
    border-radius: 6px;
    background: #E8F6F0;
    padding: 12px 0;
    margin: 0 auto;
}

.steps_card_desc {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 4px;
}

.flow_card .freee_support_cta_btn {
    gap: 8.51px;
    padding: 13px 0;
    width: 100%;
}

.flow_card .freee_support_cta_btn_text {
    font-size: 14px;
}

.flow_card .freee_support_cta_btn_icon {
    width: 16px;
    height: auto;
}

@media only screen and (max-width: 1020px) {
    .flow_list {
        grid-template-columns: repeat(1, 100%);
        grid-template-rows: none;
        row-gap: 8px;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 8px;
    }

    .flow_card {
        grid-template-columns: 48px 1fr;
        grid-template-rows: none;
        grid-row: auto;
        column-gap: 8px;
        align-items: center;
        padding: 24px 16px 12px;
    }

    .steps_card_image {
        grid-column: 1;
        grid-row: 1;
        width: 48px;
    }

    .steps_card_title {
        grid-column: 2;
        grid-row: 1;
        width: auto;
        margin: 0;
    }

    .steps_card_title .pc_br {
        display: none;
    }

    .steps_point_label,
    .steps_card_desc,
    .flow_card_body {
        grid-column: 1 / -1;
    }

    /* 矢印を下中央に配置(90deg回転で下向き) */
    .flow_card:not(:last-child)::after {
        top: auto;
        bottom: -15px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}

/*======================
    FAQ Section
=======================*/
.faq_section {
    padding: 80px 0;
}

.faq_list {
    max-width: 900px;
    margin: 64px auto 0;
}

.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_section {
        padding: 40px 0;
    }

    .faq_question {
        padding: 14px 16px;
        gap: 12px;
    }

    .faq_list {
        margin-top: 0;
    }
}

/* 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_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;
    }
}

/*======================
    Attention Section
=======================*/
.attention_section {
    padding: 80px 0;
}

.attention_list {
    border-radius: 24px;
    background: var(--bg-gray);
    padding: 40px;
}

.attention_list li {
    color: var(--text-light);
}

.attention_list li:not(:last-child) {
    margin-bottom: 1.5em;   
}

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

    .attention_list li {
        font-size: 14px;
    }
}

@media only screen and (max-width: 640px) {
    .attention_list {
        padding: 16px;
    }
}

/*======================
    SP Fine-tuning
=======================*/
@media only screen and (max-width: 960px) {
    :root {
        --section-padding-sp: 56px;
    }
    .section_title_block {
        margin-bottom: 32px;
    }

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

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