@charset "UTF-8";

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

/*======================
    CSS Variables
=======================*/
:root {
    /* Brand Colors */
    --ffg-green: #008482;
    --ffg-green-light: #28C86E;
    --ffg-gradient: linear-gradient(90deg, #008482 0%, #28C86E 100%);
    --ffg-yellow: #FFEC80;
    --ffg-dark: #1A2E3B;

    /* CTA - オレンジ/レッドグラデーション */
    --cta-red: linear-gradient(49deg, #FE3321 23.11%, #FF6325 76.89%);

    /* Text Colors */
    --text-main: #014746;
    --text-deep: #0A4746;
    --text-body: #282828;
    --text-dark: #000;
    --text-light: #6C6C6C;
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-gray: #F8F8F8;

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

    /* Border Radius */
    --radius-md: 12px;

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

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

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

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: 1440px;
    margin: 0 auto;
}

/*======================
    Display Utilities
=======================*/
.sp_br {
    display: none;
}

@media only screen and (max-width: 960px) {
    .sp_br {
        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;
}

@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: 16px;
    font-size: 14px;
    color: var(--text-main);
}

@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);
    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;
}

@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: var(--text-deep);
    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: var(--text-deep);
    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);
    }
    
    .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 {
    position: relative;
    margin-top: 95px;
    width: 100%;
    padding: 55px 90px 57px;
    background:
        url("../images/tax_return/fv_bg.png") no-repeat right top / calc(100% - 214px) auto,
        linear-gradient(102deg, var(--text-main) -0.37%, var(--text-main) 35.78%, #0C7C7C 99.9%);
    overflow: hidden;
    color: #FFF;
}

.fv_inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(360px, 37.986vw, 547px);
    grid-template-areas:
        "text image"
        "notes notes";
    column-gap: 95px;
    align-items: start;
    max-width: 1260px;
    margin: 0 auto;
}

.fv_text_block {
    grid-area: text;
    max-width: 720px;
    min-width: 0;
    padding-top: 4px;
}

.fv_lead {
    color: #FFF;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.67px;
    font-feature-settings: "palt";
    margin: 0;
}

.fv_lead_line {
    display: block;
}

.fv_lead_line + .fv_lead_line {
    margin-top: 16px;
    white-space: nowrap;
}

.fv_lead_xl {
    font-size: 94px;
}

.fv_lead_md {
    font-size: 64px;
}

.fv_lead_xxl {
    font-size: 94px;
    font-family: "Noto Sans JP";
}

.fv_lead_lg {
    font-size: 80px;
}

.fv_price_block {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 18px;
}

.fv_price_card {
    flex-shrink: 0;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #F8F8F8;
    background: rgba(255, 255, 255, 0.10);
    text-align: center;
    color: #FFF;
}

.fv_price_card_label {
    color: #FFF;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.67px;
}

.fv_price_card_num {
    margin-top: 9px;
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.67px;
}

.fv_price_card_unit {
    margin-top: 16px;
    color: #FFF;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.67px;
}

.fv_price_arrow {
    flex-shrink: 0;
    width: 42px;
    height: auto;
}

.fv_price_campaign {
    flex-shrink: 0;
    display: block;
    width: clamp(220px, 25.625vw, 351px);
}

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

.fv_wrap .freee_support_cta_action {
    width: 100%;
    max-width: 615px;
    margin-top: 9px;
}

.fv_wrap .freee_support_cta_action_inner {
    text-align: center;
}

.fv_wrap .freee_support_cta_micro_copy {
    color: #FFF;
    text-align: center;
}

.fv_wrap .freee_support_cta_btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.fv_notes {
    grid-area: notes;
    max-width: 720px;
    margin-top: 15px;
    color: #FFF;
    font-size: 14px;
    font-weight: 350;
}

.fv_notes .sp_br {
    display: none;
}

.fv_image_block {
    grid-area: image;
    align-self: stretch;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 491px;
}

.fv_check_image {
    display: block;
    width: 100%;
}

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

/* ==========================
   FV Responsive
========================== */
@media only screen and (max-width: 1200px) {
    .fv_wrap {
        padding: 45px 48px 64px;
        background-size: calc(100% - 120px) auto, 100% 100%;
    }
    .fv_lead {
        font-size: 40px;
        letter-spacing: 1.023px;
        margin: 0;
    }
    .fv_lead_line {
        line-height: 1.3;
    }
    .fv_lead_line + .fv_lead_line {
        margin-top: -10px;
    }
    .fv_lead_xl {
        font-size: 64px;
    }
    .fv_lead_md {
        font-size: 40px;
    }
    .fv_lead_xxl {
        font-size: 54px;
    }
    .fv_lead_lg {
        font-size: 48px;
    }
}

@media only screen and (max-width: 960px) {
    .fv_wrap {
        margin-top: 56px;
        padding: 40px 24px 56px;
        background-size: 100% auto, 100% 100%;
        background-position: right top, 0 0;
        background:
            url("../images/tax_return/fv_bg.png") no-repeat 67% 83%,
            linear-gradient(102deg, var(--text-main) -0.37%, var(--text-main) 35.78%, #0C7C7C 99.9%);
    }
    .fv_wrap .freee_support_cta_action {
        display: none;
    }
    .fv_inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .fv_text_block {
        max-width: none;
    }
    .fv_image_block {
        display: block;
        align-self: auto;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .fv_notes {
        max-width: none;
    }
    .fv_notes .sp_br {
        display: block;
    }
}

@media only screen and (max-width: 640px) {
    .fv_wrap {
        padding: 22px 16px 48px;
    }
    .fv_inner {
        gap: 20px;
    }
    .fv_text_block {
        text-align: center;
        padding-bottom: 30px;
    }
    .fv_notes {
        font-size: 12px;
        padding-left: 9px;
        width: 100%;
        max-width: 375px;
        margin: 0 auto;
    }
    .fv_price_block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        column-gap: 6px;
        row-gap: 5px;
        width: fit-content;
        margin: 24px auto 0;
    }
    .fv_price_card {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 4px 12px;
        border-radius: 999px;
        border-width: 0.613px;
        white-space: nowrap;
    }
    .fv_price_card_label,
    .fv_price_card_num,
    .fv_price_card_unit {
        margin-top: 0;
        flex-shrink: 0;
        letter-spacing: 1.023px;
    }
    .fv_price_card_label {
        font-size: 10px;
    }
    .fv_price_card_num {
        font-size: 24px;
    }
    .fv_price_card_unit {
        font-size: 10px;
    }
    .fv_price_arrow {
        width: 20px;
        transform: rotate(90deg);
    }
    .fv_price_campaign {
        flex: 0 0 100%;
        max-width: 340px;
    }
    .fv_image_block {
        width: 295px;
        max-width: 100%;
    }
}

/*======================
    Recommend Section
=======================*/
#recommend .section_title_block::before {
    content: '';
    width: 607px;
    height: 232px;
    top: -67px;
    background-image: url("../images/tax_return/campaign_title_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    font-size: 0;
    color: transparent;
}

@media only screen and (max-width: 960px) {
    #recommend .section_title_block::before {
        width: 100%;
        max-width: 480px;
        height: 180px;
        top: -45px;
    }
}

.recommend_intro_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.recommend_intro_card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.recommend_intro_card_icon {
    flex: 0 0 104px;
    width: 104px;
    height: 104px;
}

.recommend_intro_card_icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recommend_intro_card_body {
    flex: 1;
    min-width: 0;
}

.recommend_intro_card_title {
    color: var(--text-main);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--ffg-green);
    margin-bottom: 16px;
}

.recommend_intro_card_check_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommend_intro_card_check_list li {
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.recommend_intro_card_check_list li:last-child {
    margin-bottom: 0;
}

.recommend_intro_card_check_list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url('../images/tax_return/check_box.svg') no-repeat center / contain;
}

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

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

    .recommend_intro_card_icon {
        flex: 0 0 72px;
        width: 72px;
        height: 72px;
    }

    .recommend_intro_card_title {
        font-size: 18px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

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

/*======================
    Why Section
=======================*/
#why {
    --why-bg-01-right: 0px;
    --why-bg-01-top: -85px;
    --why-bg-01-size: auto;
    --why-bg-02-left: 0px;
    --why-bg-02-bottom: 0px;
    --why-bg-02-size: auto;

    position: relative;
    background-color: #006A72;
    background-image: url("../images/tax_return/why_bg_01.png"), url("../images/tax_return/why_bg_02.png");
    background-repeat: no-repeat, no-repeat;
    background-position:
        right var(--why-bg-01-right) top var(--why-bg-01-top),
        left var(--why-bg-02-left) bottom var(--why-bg-02-bottom);
    background-size: var(--why-bg-01-size), var(--why-bg-02-size);
    overflow: hidden;
}

#why > .common_wrap {
    position: relative;
    z-index: 1;
}

#why .section_title_label {
    background: none;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
}

#why .section_title_label::before,
#why .section_title_label::after {
    background: #FFFFFF;
}

#why .section_title_main {
    font-size: 48px;
    color: #FFFFFF;
}

#why .section_title_main .yellow {
    font-size: 52px;
    color: var(--ffg-yellow);
}

#why .section_title_desc {
    color: #FFFFFF;
}

.why_title_lg {
    font-size: 60px;
}

.why_title_sm {
    font-size: 48px;
}

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

    #why .section_title_main .yellow {
        font-size: 32px;
    }

    .why_title_lg {
        font-size: 36px;
    }

    .why_title_sm {
        font-size: 30px;
    }
}

.why_list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
    margin-top: 56px;
}

.why_card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    max-width: 306px;
    padding: 32px 24px 24px;
    background: #FFF;
    border-radius: 12px;
}

.why_card_label {
    position: absolute;
    top: -30px;
    left: -16px;
    padding: 6px 16px;
    color: #FFFFFF;
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 999px;
}

.why_card .reason_card_title {
    color: var(--text-main);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.44px;
    white-space: normal;
    padding-bottom: 24px;
    border-bottom: 2px dashed var(--ffg-green);
}

.why_card .reason_card_desc {
    text-align: left;
}

.why_card_image_block {
    margin: 10px 0;
}

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

.why_arrows {
    position: relative;
    z-index: 1;
    margin: -63px auto 0;
    max-width: 966px;
    pointer-events: none;
}

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

.why_conclusion {
    margin-top: 24px;
    text-align: center;
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    transform: skewX(-5deg);
}

.why_conclusion .sp_br {
    display: none;
}

.yellow_underline {
    color: var(--ffg-yellow);
    font-size: 52px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--ffg-yellow);
    text-decoration-thickness: 10px;
    text-underline-offset: 12px;

}

.yellow_underline_lg {
    font-size: 64px;
}

.why_notes {
    margin-top: 24px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.why_notes li {
    text-indent: -1em;
    padding-left: 1em;
}

@media only screen and (max-width: 820px) {
    .why_list {
        flex-direction: column;
        align-items: center;
        gap: 48px;
        margin-top: 48px;
    }
    .why_card .reason_card_title {
        font-size: 20px;
    }
    .why_card .reason_card_desc {
        font-size: 12px;
    }
    .why_card_image_block {
        width: 75%;
        margin: 10px auto;
    }

    .why_arrows {
        margin-top: -21px;
        width: 306px;
    }

    .why_conclusion {
        margin-top: 20px;
        font-size: 22px;
    }

    .why_conclusion .sp_br {
        display: block;
    }

    .yellow_underline {
        font-size: 28px;
        text-decoration-thickness: 6px;
        text-underline-offset: 8px;
    }

    .yellow_underline_lg {
        font-size: 34px;
    }
    .why_notes {
        font-size: 12px;
        text-align: start;
        max-width: 350px;
        margin: 24px auto 0;
        padding-left: 9px;
    }
}

/*======================
    Why Card Text (base styles, used inside .why_card)
=======================*/
.reason_card_title {
    color: var(--text-main);
    font-size: 24px;
    font-weight: 700;
    text-box-trim: trim-both;
}

.reason_card_desc {
    color: var(--text-body);
    font-size: 14px;
    overflow-wrap: anywhere;
}

/*======================
    Campaign Section
=======================*/
#campaign .campaign_inner {
    background-image: url("../images/tax_return/campaign_title_bg.png");
    background-repeat: no-repeat;
    background-position: top -64px right 52%;
    background-size: 65% auto;
}

.campaign_inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #E8F6F0;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 64px;
}

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

.eligibility_card {
    display: flex;
    align-items: center;
    padding: 24px 64px;
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin: 40px 0 12px;
}

.eligibility_card_image_block {
    flex: 0 0 93px;
    margin-right: 24px;
}

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

.eligibility_card_list {
    min-width: 0;
    column-count: 2;
    column-gap: 70px;
    list-style: none;
}

.eligibility_card_list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    break-inside: avoid;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    width: fit-content;
}

.eligibility_card_list li:last-child {
    margin-bottom: 0;
}

.eligibility_card_list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    background: url('../images/tax_return/check_circle.svg') no-repeat center / contain;
}

.eligibility_notes {
    color: var(--text-main);
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {
    .campaign_inner {
        padding: 40px 16px 40px;
    }
    .eligibility_card_image_block {
        flex: 0 0 auto;
        max-width: 200px;
        margin: 0 auto;
    }
    .eligibility_card {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 24px;
    }

}

@media only screen and (max-width: 640px) {
    #campaign .campaign_inner {
        background-position: top -30px right 52%;
        background-size: 100% auto;
    }

    .eligibility_card_list {
        column-count: 1;
        max-width: 300px;
        margin: 0 auto;
    }

    .eligibility_card_list li {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .eligibility_notes {
        font-size: 12px;
    }
}


/* --- 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: var(--text-main);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    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;
}

@media only screen and (max-width: 960px) {
    .freee_support_cta_btn {
        padding: 14px 80px;
    }

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

/*======================
    Plan Section
=======================*/
.plan_cards {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.plan_card {
    border-radius: 12px;
    overflow: hidden;
}

.plan_card_normal {
    flex: 0 0 374px;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.plan_card_normal .plan_card_header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: #F0F0F0;
}

.plan_card_normal .plan_card_header_icon {
    width: 29px;
    height: 29px;
}

.plan_card_normal .plan_card_header_title {
    color: var(--text-light);
    font-size: 32px;
    font-weight: 700;
}

.plan_card_normal .plan_card_body {
    padding-top: 32px;
    text-align: center;
}

.plan_card_normal .plan_card_price {
    color: var(--text-dark);
}

.plan_card_normal .plan_card_caption {
    padding: 24px;
    margin-top: 32px;
    color: var(--text-body);
    font-size: 16px;
    font-weight: 700;
    background: #EAEBEE;
}

.plan_card_campaign_wrap {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.plan_card_campaign {
    background: #FFFFFF;
    border: 1px solid var(--text-deep);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.plan_card_campaign .plan_card_body {
    padding-top: 24px;
}

.plan_card_badge {
    position: absolute;
    top: -38px;
    right: -31px;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}

.plan_card_badge img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.plan_card_campaign .plan_card_header {
    padding: 16px;
    text-align: center;
    background: linear-gradient(92deg, #004544 0%, var(--ffg-green) 101.02%);
}

.plan_card_campaign .plan_card_header_title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
}

.plan_card_price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    font-weight: 700;
    line-height: 1;
}

.plan_card_price_num {
    font-family: "Noto Sans";
    font-size: 48px;
    font-weight: 700;
}

.plan_card_price_unit {
    font-size: 28px;
    font-weight: 700;
}

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

.plan_card_price_highlight {
    color: #FD4D19;
}

.plan_card_price_highlight .plan_card_price_num {
    font-size: 102px;
}

.plan_card_price_highlight .plan_card_price_unit {
    font-size: 40px;
}

.plan_card_services {
    background: #EDF8F5;
    padding: 24px;
    margin-top: 24px;
}

.plan_card_services_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ffg-green);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.plan_card_services_title::before,
.plan_card_services_title::after {
    content: '';
    flex: 1 1 0;
    height: 1px;
    background: var(--ffg-green);
}

.plan_card_service_list {
    margin-top: 24px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan_card_service_list li {
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 1px dashed var(--text-deep);
}

.plan_card_service_list li:last-of-type {
    border-bottom: none;
}

.plan_card_service_list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background: url('../images/tax_return/check_circle.svg') no-repeat center / contain;
}

.plan_card_notes {
    margin-top: 12px;
    list-style: none;
    color: var(--text-body);
    font-size: 12px;
    letter-spacing: 0.6px;
}

.plan_card_notes li {
    text-indent: -1em;
    padding-left: 1em;
}

@media only screen and (max-width: 960px) {
    .plan_card_normal .plan_card_header,
    .plan_card_campaign .plan_card_header {
        padding: 12px;
    }

    .plan_card_normal .plan_card_header_title,
    .plan_card_campaign .plan_card_header_title {
        font-size: 22px;
    }

    .plan_card_normal .plan_card_header_icon {
        width: 22px;
        height: 22px;
    }

    .plan_card_normal .plan_card_body {
        padding-top: 24px;
    }

    .plan_card_normal .plan_card_caption {
        padding: 16px;
        margin-top: 24px;
        font-size: 14px;
    }

    .plan_card_badge {
        width: 96px;
        top: -20px;
        right: -12px;
    }

    .plan_card_price_num {
        font-size: 40px;
    }

    .plan_card_price_highlight .plan_card_price_num {
        font-size: 64px;
    }

    .plan_card_price_unit {
        font-size: 18px;
    }

    .plan_card_price_highlight .plan_card_price_unit {
        font-size: 22px;
    }

    .plan_card_price_tax {
        font-size: 12px;
    }

    .plan_card_services_title {
        gap: 8px;
        font-size: 16px;
    }

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

    .plan_card_notes {
        font-size: 11px;
        letter-spacing: 0.4px;
    }
}

@media only screen and (max-width: 820px) {
    .plan_cards {
        flex-direction: column;
        gap: 32px;
    }

    .plan_card_normal,
    .plan_card_campaign_wrap {
        flex: 0 0 auto;
        width: 100%;
    }

    .plan_card_campaign .plan_card_body {
        padding: 24px 0 0;
    }

    .plan_card_services {
        padding: 16px;
        margin-top: 20px;
    }

    .plan_card_service_list {
        margin-top: 16px;
    }
}

/*======================
    Flow Section
=======================*/
.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: 55px 0 27px;
}

.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: 58px;
    height: 58px;
    background: url('../images/tax_return/flow_step_01.png') 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/tax_return/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: 78px;
    height: auto;
    margin: 0 auto;
}

.steps_card_image img {
    width: 100%;
}

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

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


.faq_answer_inner a:link {
 color: #0000EE;
 text-decoration: underline;
}

.faq_answer_inner a:visited {
 color: #551A8B;
 text-decoration: underline;
}

.faq_answer_inner a:hover {}

.faq_answer_inner a:active {
 color: #FF0000;
 text-decoration: underline;
}

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

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

    .faq_list {
        margin-top: 0;
    }

    .steps_card_desc {
        margin-top: 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_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;
    }
}

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