@charset "UTF-8";

/* --------------------------------------------------
   LP SCOPE: .ca-lp-main 内のみに適用
   -------------------------------------------------- */
.ca-lp-main {
    font-family: 'Noto Sans JP', sans-serif;
    color: #666666;
    line-height: 1.6;
    background-color: #FFFBBB;
    overflow-x: hidden;
}

.ca-lp-main .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .ca-lp-main .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.ca-lp-main section {
    padding: 60px 0;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ca-lp-main h1,
.ca-lp-main h2,
.ca-lp-main h3,
.ca-lp-main h4 {
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
    color: #222222;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2c7a4b;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    margin: 15px auto 0;
    background: none !important;
    height: 4px !important;
    width: 80px !important;
    border-bottom: 4px dotted #ff9656 !important;
}

.section-title-compact {
    margin-bottom: 10px;
}

.highlight-underline {
    background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.5) 60%) !important;
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-a-first-term-tax-advisor"] .highlight-underline {
  background: linear-gradient(transparent 60%, rgba(255, 131, 86, 0.4) 60%) !important;
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .highlight-underline {
  background: linear-gradient(transparent 60%, rgba(255, 131, 86, 0.4) 60%) !important;
}

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

.lp-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --------------------------------------------------
   HERO SECTION
   -------------------------------------------------- */
.section-hero {
    padding: 60px 0;
    background-color: #FFFBBB;
    position: relative;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
    }
}

.hero-content {
    flex: 1;
    width: 100%;
}

.badge-hero {
    display: inline-block;
    background-color: #6FAA5E;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 32px;
    color: #555;
}

.hero-desc-sub {
    font-size: 0.9em;
    opacity: 0.9;
    display: block;
    margin-top: 10px;
}

.price-emphasize {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #222;
    margin: 0 4px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 24px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
}

.check-icon {
    color: #6FAA5E;
    margin-right: 4px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #6FAA5E;
    color: white !important;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(111, 170, 94, 0.3);
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.btn-cta:hover {
    background-color: #5E994E;
    transform: translateY(-2px);
    opacity: 1;
}

.btn-cta-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.hero-cta-wrapper {
    text-align: center;
}

@media (min-width: 768px) {
    .hero-cta-wrapper {
        text-align: left;
    }

    .btn-cta {
        width: auto;
    }
}

@media (max-width: 480px) {
    .btn-cta {
        padding: 16px 15px !important;
        font-size: 1.1rem;
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
    }
}

.hero-visual {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-frame {
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    overflow: hidden;
    transition: transform 0.5s ease;
    max-width: 400px;
}

.image-frame:hover {
    transform: rotate(0deg);
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.section-hero-visual-led .hero-container {
    gap: 28px;
}

.section-hero-visual-led .hero-content {
    flex: 0 1 360px;
}

.section-hero-visual-led .hero-visual {
    flex: 1 1 520px;
}

.section-hero-visual-led .hero-keyvisual-frame {
    max-width: 520px;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    transform: none;
}

.section-hero-visual-led .hero-keyvisual-frame:hover {
    transform: none;
}

.section-hero-visual-led .hero-keyvisual-frame img {
    border-radius: 18px;
}

.section-hero-visual-led .hero-placeholder-frame {
    background: #e8e8e8;
    box-shadow: none;
}

.hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 420px;
    border-radius: 18px;
    background: #e8e8e8;
    color: #777;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
}

.section-hero-visual-led .hero-desc-responsive {
    margin-bottom: 24px;
}

.section-hero-visual-led .hero-badges-responsive {
    margin-bottom: 26px;
}

.hero-topic-tags {
    margin: 0 0 22px;
}

.hero-topic-label {
    margin: 0 0 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #2c7a4b;
}

.hero-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-topic-list span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(44, 122, 75, 0.22);
    border-radius: 999px;
    background: #fff;
    color: #2c7a4b;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.section-hero-visual-led .lp-cta-note-primary {
    max-width: 360px;
    margin: 0 0 14px;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}

.section-hero-visual-led .lp-cta-note-disclaimer {
    max-width: 420px;
    margin: 12px auto 0;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 767px) {
    .section-hero-visual-led {
        padding: 32px 0 42px;
    }

    .section-hero-visual-led .hero-container {
        gap: 20px;
    }

    .section-hero-visual-led .hero-content,
    .section-hero-visual-led .hero-visual {
        flex: 1 1 auto;
    }

    .section-hero-visual-led .hero-keyvisual-frame {
        width: 100%;
        max-width: 420px;
    }

    .hero-image-placeholder {
        min-height: 0;
    }

    .section-hero-visual-led .hero-title-responsive {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .section-hero-visual-led .hero-desc-responsive,
    .section-hero-visual-led .hero-badges-responsive {
        display: none;
    }

    [data-lp-variant="lp-a-first-term-tax-advisor"] .section-hero-visual-led .hero-badges-responsive {
        display: flex;
        justify-content: center;
        gap: 8px;
        max-width: 100%;
        margin: 16px 0 0;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .section-hero-visual-led .hero-cta-wrapper {
        text-align: center;
    }

    .section-hero-visual-led .lp-cta-note-primary {
        max-width: none;
        margin-bottom: 12px;
        text-align: center;
    }
}

/* --------------------------------------------------
   PAIN SECTION
   -------------------------------------------------- */
.section-pain {
    background-color: #FFFFFF;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pain-item {
    background-color: #FFFFF0;
    border: 1px solid #FFFBBB;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
}

.pain-icon-area {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: #E0BF3B;
}

.icon-pain {
    width: 100%;
    height: 100%;
}

.doyon-effect {
    position: absolute;
    top: -5px;
    right: -10px;
    color: #94a3b8;
    width: 20px;
    height: 20px;
    transform: rotate(10deg);
}

.pain-text {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    margin: 0;
}

.pain-arrow {
    text-align: center;
    color: #2c7a4b;
    font-weight: 700;
    margin-top: 20px;
}

.pain-arrow svg {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --------------------------------------------------
   SERVICE & OFFER SECTION
   -------------------------------------------------- */
.section-service {
    background-color: #FFFFF0;
    border-top: 1px solid rgba(111, 170, 94, 0.1);
    border-bottom: 1px solid rgba(111, 170, 94, 0.1);
}

.ticket-board {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 30px;
}

.ticket-header {
    background-color: #ff9656;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 40px 30px;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .ticket-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.ticket-title-area {
    text-align: center;
    flex: 1;
}

@media (min-width: 768px) {
    .ticket-title-area {
        text-align: left;
    }
}

.ticket-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 2px solid #fff;
    color: #2c7a4b;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ticket-tag span {
    color: #FF8356 !important;
}

.ticket-title {
    font-size: 2rem;
    color: #2c7a4b;
    margin-bottom: 10px;
    text-shadow: none;
}

.ticket-title-area p {
    color: #222;
    opacity: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.price-ticket-outer {
    background: white;
    padding: 6px;
    border-radius: 16px;
    box-shadow: 0 20px 50px -10px rgba(120, 90, 0, 0.3);
    border: 4px solid #fff;
    transform: rotate(2deg);
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s ease;
}

.price-ticket-outer:hover {
    transform: rotate(0deg);
}

.price-ticket-inner {
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.price-label {
    background-color: #222;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.price-value-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin: 10px 0;
}

.price-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: #6FAA5E;
    letter-spacing: -0.05em;
}

.price-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-left: 5px;
}

.price-sub {
    color: #222;
    font-size: 0.8rem;
    font-weight: 700;
}

.ticket-divider {
    border-top: 1px dashed #ccc;
    margin: 15px 0;
}

.badge-gold {
    background-color: rgba(224, 191, 59, 0.15);
    color: #222;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 15px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background-color: #E0BF3B;
    border-radius: 50%;
}

.service-list-area {
    padding: 30px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .service-list-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    #canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .pain-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
    }

    #canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .pain-item {
        min-height: 162px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

@media (min-width: 768px) {
    .service-item {
        display: block;
        text-align: center;
        padding: 24px;
        background: #fafafa;
    }

    .service-item.col-span-2 {
        grid-column: span 1;
    }
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #FFFFF0;
    color: #6FAA5E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .service-icon {
        margin: 0 auto 15px;
    }
}

.service-text h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #222;
}

.service-text p {
    margin: 0;
    font-size: 0.75rem;
    color: #888;
}

.service-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.service-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 34px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    background: #fff;
    overflow: hidden;
}

.service-logo-badge img {
    display: block;
    width: auto;
    height: auto;
    max-width: 84px;
    max-height: 22px;
}

.service-logo-badge .service-logo-freee {
    max-width: 86px;
}

@media (min-width: 768px) {
    .service-logo-row {
        justify-content: center;
    }
}

/* --------------------------------------------------
   CONDITIONS SECTION
   -------------------------------------------------- */
.lp-conditions {
    background-color: #FFFFFF;
}

.conditions-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .conditions-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.lp-conditions-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.lp-conditions-card--primary {
    background: #f5fff7;
    border: 1px solid #d1fae5;
}

.lp-conditions-card--secondary {
    background: #fff;
    border: 1px solid #eee;
}

.cond-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-check {
    background-color: #6FAA5E;
}

.icon-cross {
    background-color: #ccc;
}

ul.cond-list {
    margin: 0;
    padding-left: 1.2em;
    list-style: disc;
}

ul.cond-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.lp-not-included li {
    color: #666;
}

/* --------------------------------------------------
   VOICE SECTION
   -------------------------------------------------- */
.section-voice {
    background-color: #fff;
}

.voice-card {
    background: #fff !important;
    border: 3px solid #ff9656 !important;
    border-radius: 20px !important;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(224, 191, 59, 0.1);
}

.voice-card::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #ff9656 !important;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    justify-content: center;
}

.voice-icon svg {
    display: block;
}

.voice-meta {
    text-align: left;
}

.voice-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c7a4b;
    margin: 0 0 5px 0;
}

.voice-role {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.voice-body {
    text-align: center;
}

.voice-quote {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.8;
}

.voice-divider {
    height: 1px;
    background-image: linear-gradient(to right, #ccc 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
}

.voice-detail {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .voice-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .voice-meta {
        text-align: center;
    }

    .voice-quote {
        font-size: 1rem;
        text-align: left;
    }

    .voice-detail {
        text-align: left;
        font-size: 0.9rem;
    }

    .pc-only {
        display: none;
    }
}

/* --------------------------------------------------
   PRICING SECTION
   -------------------------------------------------- */
.section-trust {
    background-color: rgba(255, 251, 187, 0.5);
}

.pricing-lead {
    margin-bottom: 30px;
}

.timeline-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .timeline-cards {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }
}

.p-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.p-card.active {
    border: 2px solid #6FAA5E;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(111, 170, 94, 0.15);
}

.p-card-muted {
    opacity: 0.8;
}

.p-head {
    padding: 10px;
    text-align: center;
    font-weight: 700;
    background-color: #f5f5f5;
    font-size: 0.9rem;
}

.p-card.active .p-head {
    background-color: #6FAA5E;
    color: white;
}

.p-body {
    padding: 20px;
    text-align: center;
}

.p-small {
    font-size: 0.9rem;
}

.p-price {
    color: #6FAA5E;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
}

.p-price span {
    font-size: 1rem;
}

.p-note {
    font-size: 0.8rem;
    background: #FFFFF0;
    padding: 4px;
    margin-top: 10px;
}

.p-tax-note {
    font-size: 0.75rem;
    color: #6FAA5E;
    font-weight: 700;
    margin-top: 5px;
}

.arrow-wrap {
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .arrow-wrap {
        transform: rotate(-90deg);
        margin: 0 10px;
    }
}

.lp-price-link {
    margin-top: 30px;
}

.lp-price-link a {
    display: inline-block;
    background: #fff;
    border: 1px solid #6FAA5E;
    color: #6FAA5E !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.lp-price-link a:hover {
    background: #6FAA5E;
    color: #fff !important;
}

.lp-price-link-icon {
    margin-right: 5px;
    vertical-align: text-bottom;
}

/* --------------------------------------------------
   FINAL CTA & FORM
   -------------------------------------------------- */
.section-final {
    background: #eef7eb !important;
    padding: 40px 20px !important;
    border-top: 2px dotted #6FAA5E !important;
    text-align: center;
}

@media (max-width: 767px) {
    .ca-lp-main .section-final {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

.final-msg {
    color: #2c7a4b !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    text-shadow: none !important;
    line-height: 1.9 !important;
    text-align: left !important;
}

.section-contact {
    padding: 80px 0;
    background: #fff;
}

.lp-contact-form-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFF0;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eee;
}

.lp-sec-title {
    text-align: center;
    font-size: 1.5rem;
    color: #6FAA5E;
    margin-bottom: 20px;
}

.lp-form-lead {
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.lp-privacy-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #999;
}

.section-profiles {
    background: #fff;
    padding: 60px 0 0;
}

.section-profiles + .section-office {
    padding-top: 42px;
}

.lp-profile-panel {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.lp-profile-heading {
    text-align: center;
    margin-bottom: 18px;
}

.lp-profile-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #FFFBBB;
    color: #2c7a4b;
    font-size: 0.85rem;
    font-weight: 700;
}

.lp-profile-title {
    margin-bottom: 12px;
}

.lp-profile-lead {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

.lp-profile-list {
    margin-top: 22px;
}

.lp-profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 24px 4px;
    border-top: 1px solid #dbe3dd;
}

.lp-profile-card:last-child {
    border-bottom: 1px solid #dbe3dd;
}

.lp-profile-body {
    min-width: 0;
    flex: 1;
}

.lp-profile-name {
    margin: 0 0 4px;
    color: #0f2f5f;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
}

.lp-profile-role {
    margin: 0 0 14px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
}

.lp-profile-points {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #384252;
    font-size: 0.92rem;
    line-height: 1.75;
}

.lp-profile-points li {
    position: relative;
    padding-left: 1em;
}

.lp-profile-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #aeb8c4;
}

.lp-profile-photo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    flex: 0 0 112px;
    overflow: hidden;
}

.lp-profile-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-profile-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(111, 170, 94, 0.16), rgba(255, 150, 86, 0.16)),
        #f8faf7;
    border: 1px solid #dbe3dd;
    color: #6b7280;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.section-office {
    background: #fff;
    padding: 60px 0 0;
}

.section-office + .section-contact {
    padding-top: 48px;
}

.section-final + .section-contact {
    padding-top: 48px;
}

.lp-office-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.lp-office-title {
    margin-bottom: 26px;
}

.lp-office-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 26px;
    align-items: start;
}

.lp-office-info dl {
    margin: 0;
}

.lp-office-info dl > div {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.lp-office-info dl > div:first-child {
    padding-top: 0;
}

.lp-office-info dl > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lp-office-info dt {
    color: #2c7a4b;
    font-weight: 700;
}

.lp-office-info dd {
    margin: 0;
    color: #333;
}

.lp-office-phone {
    color: #2c7a4b !important;
    font-weight: 700;
    text-decoration: none !important;
}

.lp-office-phone:hover {
    text-decoration: underline !important;
}

.lp-office-map {
    width: 100%;
    max-width: 420px;
    justify-self: end;
}

.lp-office-map iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .section-profiles {
        padding-top: 44px;
    }

    .section-profiles + .section-office {
        padding-top: 36px;
    }

    .lp-profile-panel {
        padding: 24px 18px;
    }

    .lp-profile-heading {
        text-align: left;
    }

    .lp-profile-lead {
        font-size: 0.92rem;
    }

    .lp-profile-card {
        gap: 16px;
        padding: 22px 0;
        align-items: flex-start;
    }

    .lp-profile-name {
        font-size: 1.16rem;
    }

    .lp-profile-role {
        margin-bottom: 10px;
    }

    .lp-profile-points {
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .lp-profile-photo {
        width: 88px;
        height: 88px;
        flex-basis: 88px;
    }

    .section-office {
        padding-top: 44px;
    }

    .section-office + .section-contact {
        padding-top: 40px;
    }

    .section-final + .section-contact {
        padding-top: 40px;
    }

    .lp-office-card {
        padding: 24px 18px;
    }

    .lp-office-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .lp-office-info dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .lp-office-map {
        max-width: 100%;
        justify-self: stretch;
    }

    .lp-office-map iframe {
        height: 220px;
    }
}

/* --------------------------------------------------
   LP A / LP B SHARED EXTENSIONS
   -------------------------------------------------- */
.lp-hero-kicker {
    color: #2c7a4b;
    font-weight: 700;
    margin: 0 0 10px;
}

.lp-cta-note,
.lp-visual-note {
    margin: 10px 0 0;
    font-size: 0.82rem;
    color: #777;
    text-align: left;
}

.lp-visual-note {
    text-align: center;
}

.section-problem,
.section-flow,
.section-faq {
    background-color: #fff;
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-a-first-term-tax-advisor"] .section-pain {
    padding-bottom: 36px;
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-a-first-term-tax-advisor"] .section-problem {
    padding-top: 24px;
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .section-pain {
    padding-bottom: 36px;
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .section-problem {
    padding-top: 24px;
}

@media (max-width: 768px) {
    #canvas-wrapper-ichiki-pack[data-lp-variant="lp-a-first-term-tax-advisor"] .section-pain {
        padding-bottom: 28px;
    }

    #canvas-wrapper-ichiki-pack[data-lp-variant="lp-a-first-term-tax-advisor"] .section-problem {
        padding-top: 18px;
    }

    #canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .section-pain {
        padding-bottom: 28px;
    }

    #canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .section-problem {
        padding-top: 18px;
    }
}

.lp-problem-box {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #d9dee5;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.lp-section-label {
    display: inline-flex;
    align-items: center;
    background: #6FAA5E;
    color: #fff;
    border-radius: 99px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.lp-problem-band-title {
    margin: 0 !important;
    padding: 18px 24px;
    background-color: #ff9656;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #222;
    text-align: left;
    font-size: clamp(1.18rem, 2.8vw, 1.55rem);
    line-height: 1.45;
    letter-spacing: 0;
}

.lp-problem-body {
    padding: 26px 30px 28px;
}

.lp-problem-body p {
    margin: 0 0 14px;
    color: #444;
}

.lp-problem-body p:last-child {
    margin-bottom: 0;
}

.lp-result-ribbon {
    position: relative;
    max-width: 960px;
    margin: 28px auto 0;
    padding: 26px 30px;
    background: #eef7eb;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.lp-result-ribbon::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    pointer-events: none;
}

.lp-result-ribbon::after {
    bottom: -14px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #eef7eb;
}

.lp-result-ribbon p {
    max-width: 820px;
    margin: 0 auto;
    color: #333;
    font-size: 0.96rem;
    line-height: 1.8;
}

.lp-service-panel {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(111, 170, 94, 0.18);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.lp-result-ribbon + .lp-service-panel {
    margin-top: 34px;
}

@media (max-width: 768px) {
    .lp-result-ribbon {
        margin-top: 22px;
        padding: 22px 18px;
    }

    .lp-result-ribbon p {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .lp-result-ribbon + .lp-service-panel {
        margin-top: 30px;
    }
}

.lp-flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .lp-flow-steps {
        grid-template-columns: repeat(5, 1fr);
    }
}

.lp-flow-item {
    background: #FFFFF0;
    border: 1px solid #FFFBBB;
    border-radius: 12px;
    padding: 20px 16px;
    position: relative;
    min-height: 190px;
}

.lp-flow-number {
    display: inline-block;
    color: #ff9656;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.lp-flow-item h3 {
    color: #2c7a4b;
    font-size: 1rem;
    margin-bottom: 8px;
}

.lp-flow-item p {
    font-size: 0.86rem;
    margin: 0;
    color: #555;
}

.section-price-detail {
    border-top: 1px solid rgba(111, 170, 94, 0.1);
    border-bottom: 1px solid rgba(111, 170, 94, 0.1);
}

.lp-price-detail-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
}

@media (min-width: 768px) {
    .lp-price-detail-body {
        grid-template-columns: 1fr 1fr;
    }
}

.lp-price-detail-column {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
}

.lp-price-detail-column h3 {
    color: #2c7a4b;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.lp-price-detail-column p {
    margin: 0 0 12px;
    font-size: 0.92rem;
    color: #555;
}

.lp-price-detail-column p:last-child {
    margin-bottom: 0;
}

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

.lp-check-list li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.lp-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #6FAA5E;
    font-weight: 700;
}

.lp-condition-note {
    max-width: 860px;
    margin: 20px auto 0;
    padding: 14px 18px;
    background: #fff7ed;
    border: 1px solid rgba(255, 150, 86, 0.35);
    border-radius: 10px;
    font-size: 0.88rem;
    color: #664229;
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .lp-condition-note {
    text-align: center;
}

.trust-fact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 768px) {
    .trust-fact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-fact-card {
    background: #FFFFF0;
    border: 1px solid #FFFBBB;
    border-radius: 12px;
    padding: 22px 18px;
}

.trust-fact-label {
    display: inline-block;
    color: #ff9656;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 12px;
}

.trust-fact-card h3 {
    color: #2c7a4b;
    font-size: 1rem;
    margin-bottom: 8px;
}

.trust-fact-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #555;
}

.lp-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.lp-faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.lp-faq-item h3 {
    color: #2c7a4b;
    font-size: 1rem;
    margin-bottom: 8px;
    padding-left: 1.6em;
    position: relative;
}

.lp-faq-item h3::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9656;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}

.lp-faq-item p {
    margin: 0;
    color: #555;
    font-size: 0.92rem;
}

#canvas-wrapper-ichiki-pack .submit-btn,
#canvas-wrapper-ichiki-pack .submit-btn-in {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    float: none !important;
}

#canvas-wrapper-ichiki-pack .mw_wp_form input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 30px auto 0 !important;
    display: block !important;
    height: auto !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    background-image: none !important;
    padding: 15px 20px !important;
    text-align: center !important;
}

#canvas-wrapper-ichiki-pack table.cform td label {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    max-width: 100% !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    font-weight: normal !important;
}

#canvas-wrapper-ichiki-pack table.cform input[type="radio"],
#canvas-wrapper-ichiki-pack table.cform input[type="checkbox"] {
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    flex-shrink: 0 !important;
    position: static !important;
    transform: none !important;
    vertical-align: middle !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

#canvas-wrapper-ichiki-pack .submit-btn::after,
#canvas-wrapper-ichiki-pack .submit-btn::before,
#canvas-wrapper-ichiki-pack .submit-btn-in::after,
#canvas-wrapper-ichiki-pack .submit-btn-in::before {
    display: none !important;
    content: none !important;
    background: none !important;
}

@media (max-width: 768px) {
    #canvas-wrapper-ichiki-pack table.cform,
    #canvas-wrapper-ichiki-pack table.cform tbody,
    #canvas-wrapper-ichiki-pack table.cform tr,
    #canvas-wrapper-ichiki-pack table.cform th,
    #canvas-wrapper-ichiki-pack table.cform td {
        display: block !important;
        width: 100% !important;
    }

    #canvas-wrapper-ichiki-pack table.cform th {
        background: none !important;
        padding: 0 0 5px 0 !important;
        border: none !important;
        font-size: 0.9rem !important;
        color: #2c7a4b !important;
    }

    #canvas-wrapper-ichiki-pack table.cform td {
        padding: 0 0 20px 0 !important;
        border-bottom: 1px dashed #eee !important;
    }
}

/* --------------------------------------------------
   TYPOGRAPHY TUNING
   文字まわりのみを上書きする調整
   -------------------------------------------------- */
:root {
    --fs-h1: clamp(2rem, 3.6vw, 2.5rem);
    --fs-h2: clamp(1.5rem, 2.8vw, 1.875rem);
    --fs-h3: 1.25rem;
    --fs-body: 0.9375rem;
    --fs-small: 0.8125rem;
    --lh-body: 1.8;
    --lh-h1: 1.1;
    --lh-h2: 1.3;
    --lh-h3: 1.4;
    --ls-body: 0.02em;
    --ls-heading: 0.01em;
    --fw-h1: 800;
    --fw-h2: 700;
    --fw-h3: 700;
    --fw-body: 400;
}

.ca-lp-main {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-body);
    font-weight: var(--fw-body);
}

.ca-lp-main h1,
.ca-lp-main .hero-title {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    letter-spacing: var(--ls-heading);
    font-weight: var(--fw-h1);
    margin-top: 0;
    margin-bottom: 0.72em;
}

.ca-lp-main h2:not(.lp-problem-band-title),
.ca-lp-main .section-title,
.ca-lp-main .lp-sec-title,
.ca-lp-main .lp-profile-title,
.ca-lp-main .lp-office-title,
.ca-lp-main .ticket-title {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    letter-spacing: var(--ls-heading);
    font-weight: var(--fw-h2);
    margin-top: 0;
    margin-bottom: 0.9em;
}

.ca-lp-main .lp-problem-band-title {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    letter-spacing: var(--ls-heading);
    font-weight: var(--fw-h2);
}

.ca-lp-main h3,
.ca-lp-main .flow-card h3,
.ca-lp-main .trust-card h3,
.ca-lp-main .trust-fact-card h3,
.ca-lp-main .lp-faq-item h3,
.ca-lp-main .lp-profile-name {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    letter-spacing: var(--ls-heading);
    font-weight: var(--fw-h3);
    margin-top: 0;
    margin-bottom: 0.65em;
}

.ca-lp-main h4,
.ca-lp-main .service-text h4,
.ca-lp-main .cond-title {
    line-height: var(--lh-h3);
    letter-spacing: var(--ls-heading);
    font-weight: var(--fw-h3);
}

.ca-lp-main .badge-hero,
.ca-lp-main .ticket-tag,
.ca-lp-main .price-label,
.ca-lp-main .lp-section-label,
.ca-lp-main .lp-profile-label {
    font-size: var(--fs-small);
    line-height: 1.4;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.ca-lp-main .hero-desc,
.ca-lp-main .hero-desc-responsive,
.ca-lp-main .lp-result-ribbon p,
.ca-lp-main .lp-profile-lead,
.ca-lp-main .lp-profile-points,
.ca-lp-main .lp-office-info dd,
.ca-lp-main .lp-form-lead,
.ca-lp-main .lp-condition-note,
.ca-lp-main .lp-cta-note,
.ca-lp-main .lp-visual-note,
.ca-lp-main .trust-card p,
.ca-lp-main .trust-fact-card p,
.ca-lp-main .lp-faq-item p,
.ca-lp-main .service-text p,
.ca-lp-main ul.cond-list li {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-body);
    font-weight: var(--fw-body);
}

.ca-lp-main .pain-text,
.ca-lp-main .hero-features,
.ca-lp-main .btn-cta,
.ca-lp-main .lp-price-link a,
.ca-lp-main .voice-name,
.ca-lp-main .lp-profile-role,
.ca-lp-main .lp-office-info dt {
    letter-spacing: var(--ls-heading);
    font-weight: 700;
}

.ca-lp-main .lp-privacy-note,
.ca-lp-main .price-sub,
.ca-lp-main .voice-role {
    font-size: var(--fs-small);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-body);
}

.ca-lp-main .final-msg {
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
    letter-spacing: var(--ls-body);
    font-weight: var(--fw-body) !important;
}

#canvas-wrapper-ichiki-pack table.cform th,
#canvas-wrapper-ichiki-pack table.cform td,
#canvas-wrapper-ichiki-pack table.cform input,
#canvas-wrapper-ichiki-pack table.cform select,
#canvas-wrapper-ichiki-pack table.cform textarea {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-body);
}

#canvas-wrapper-ichiki-pack table.cform th {
    font-weight: 700;
}

#canvas-wrapper-ichiki-pack table.cform td label {
    line-height: var(--lh-body) !important;
    letter-spacing: var(--ls-body);
}

/* Local visual-flow pass: use the lowtax-style natural paper field instead of hard section bands. */
.ca-lp-main {
    --lp-flow-yellow: #fff8d6;
    --lp-flow-paper: #fffef9;
    --lp-flow-ivory: #fffdf4;
    --lp-flow-green: #f1f8f2;
    --lp-flow-green-deep: #eaf4ed;
    --lp-visual-teal: #0b6f7a;
    --lp-visual-teal-dark: #07545f;
    --lp-visual-gold: #e7c800;
    --lp-visual-leaf: #6faa5e;
    --lp-visual-copper: #c98265;
    --lp-flow-line: rgba(11, 111, 122, 0.13);
    --lp-flow-line-warm: rgba(201, 130, 101, 0.18);
    --lp-flow-shadow: 0 12px 28px rgba(32, 70, 64, 0.075);
    --lp-flow-shadow-soft: 0 8px 18px rgba(32, 70, 64, 0.045);
    background: var(--lp-flow-paper) !important;
}

.ca-lp-main section {
    padding-top: clamp(58px, 7vw, 82px);
    padding-bottom: clamp(58px, 7vw, 82px);
    box-shadow: inset 0 1px 0 rgba(49, 93, 58, 0.035);
}

.ca-lp-main .section-hero {
    background: linear-gradient(180deg, #fff9d8 0%, #fffdf0 72%, var(--lp-flow-paper) 100%) !important;
}

.ca-lp-main .section-hero-visual-led .hero-container {
    gap: 32px !important;
}

.ca-lp-main .section-hero-visual-led .hero-title-responsive {
    color: #143b42 !important;
    font-family: "UD デジタル 教科書体 N", "UD デジタル 教科書体 NP", "BIZ UDP明朝 Medium", "Noto Serif JP", serif !important;
    font-size: 2.35rem !important;
    font-weight: 700 !important;
    line-height: 1.24 !important;
    letter-spacing: 0 !important;
    max-width: 460px;
}

.ca-lp-main .section-hero-visual-led .hero-title-line {
    display: block;
}

.ca-lp-main .hero-title {
    color: #143b42 !important;
}

@media (min-width: 1024px) {
    .ca-lp-main .section-hero-visual-led .hero-content {
        flex-basis: 450px !important;
    }

    .ca-lp-main .section-hero-visual-led .hero-visual {
        display: flex !important;
        justify-content: flex-end !important;
        flex-basis: 600px !important;
    }

    .ca-lp-main .section-hero-visual-led .hero-mainvisual-frame {
        width: min(100%, 580px) !important;
        max-width: 580px !important;
    }
}

.ca-lp-main .hero-desc,
.ca-lp-main .hero-desc-responsive {
    color: #4a5f5c !important;
}

.ca-lp-main .hero-mainvisual-frame {
    background: #fffef9 !important;
    box-shadow: 0 16px 38px rgba(11, 111, 122, 0.13) !important;
}

.ca-lp-main .hero-mainvisual-image {
    display: block;
    width: 100%;
    height: auto;
}

.ca-lp-main .btn-cta {
    background: linear-gradient(180deg, #2f9a7e 0%, #247b68 100%) !important;
    box-shadow: 0 12px 26px rgba(11, 111, 122, 0.22) !important;
}

.ca-lp-main .btn-cta:hover {
    background: linear-gradient(180deg, #278d78 0%, #1e6e60 100%) !important;
}

.ca-lp-main .check-icon {
    color: var(--lp-visual-leaf) !important;
}

.ca-lp-main .hero-features {
    color: #24412f !important;
}

.ca-lp-main .section-pain {
    background: var(--lp-flow-paper) !important;
    padding-bottom: clamp(44px, 5vw, 60px) !important;
}

.ca-lp-main .section-problem {
    background: linear-gradient(180deg, rgba(255, 254, 249, 0.92) 0%, #ffffff 42%, var(--lp-flow-ivory) 100%) !important;
    padding-top: clamp(26px, 4vw, 40px) !important;
}

.ca-lp-main .section-offer.section-service,
.ca-lp-main .section-price-detail,
.ca-lp-main .section-conditions {
    background: var(--lp-flow-ivory) !important;
}

.ca-lp-main .section-flow {
    background: #fffdf8 !important;
    border-top: 1px solid rgba(180, 136, 19, 0.08);
    border-bottom: 1px solid rgba(49, 93, 58, 0.08);
}

.ca-lp-main .ticket-board {
    border: 1px solid rgba(11, 111, 122, 0.12) !important;
    background: #ffffff !important;
    box-shadow: 0 16px 34px rgba(32, 70, 64, 0.06) !important;
}

.ca-lp-main .ticket-header {
    background: linear-gradient(180deg, #fffef9 0%, #f6fbf8 100%) !important;
    color: #243b38 !important;
}

.ca-lp-main .ticket-title {
    color: var(--lp-visual-teal-dark) !important;
}

.ca-lp-main .ticket-title-area p {
    color: #4a5f5c !important;
}

.ca-lp-main .ticket-tag {
    background: rgba(11, 111, 122, 0.08) !important;
    border-color: rgba(11, 111, 122, 0.12) !important;
    color: var(--lp-visual-teal-dark) !important;
}

.ca-lp-main .ticket-tag span {
    color: var(--lp-visual-gold) !important;
}

.ca-lp-main .price-ticket-outer {
    background: #ffffff !important;
    border-color: rgba(11, 111, 122, 0.08) !important;
    box-shadow: 0 16px 34px rgba(11, 111, 122, 0.11) !important;
}

.ca-lp-main .price-ticket-inner {
    background: #fffef9 !important;
    border-color: rgba(11, 111, 122, 0.18) !important;
}

.ca-lp-main .price-label {
    background: rgba(11, 111, 122, 0.1) !important;
    color: var(--lp-visual-teal-dark) !important;
}

.ca-lp-main .price-number {
    color: var(--lp-visual-teal) !important;
}

.ca-lp-main .price-unit,
.ca-lp-main .price-sub {
    color: #243b38 !important;
}

.ca-lp-main .ticket-divider {
    border-top-color: rgba(11, 111, 122, 0.12) !important;
}

.ca-lp-main .badge-gold {
    background: rgba(231, 200, 0, 0.14) !important;
    color: #5f5430 !important;
}

.ca-lp-main .dot-pulse {
    background-color: var(--lp-visual-gold) !important;
}

.ca-lp-main .lp-price-detail-body {
    border-top: 1px solid rgba(11, 111, 122, 0.08) !important;
}

.ca-lp-main .lp-condition-note {
    background: rgba(255, 255, 255, 0.86) !important;
    border-color: rgba(11, 111, 122, 0.13) !important;
    color: #4a5f5c !important;
    box-shadow: 0 8px 18px rgba(32, 70, 64, 0.035) !important;
}

.ca-lp-main .section-trust-facts {
    background: linear-gradient(180deg, var(--lp-flow-ivory) 0%, var(--lp-flow-green) 100%) !important;
}

.ca-lp-main .section-pricing,
.ca-lp-main .section-faq {
    background: linear-gradient(180deg, #f7faf4 0%, var(--lp-flow-green) 100%) !important;
}

.ca-lp-main .section-profiles {
    background: linear-gradient(180deg, var(--lp-flow-green) 0%, #ffffff 72%, #ffffff 100%) !important;
    padding-top: clamp(66px, 8vw, 92px) !important;
}

.ca-lp-main .section-office {
    background: #ffffff !important;
    padding-top: clamp(34px, 5vw, 48px) !important;
    padding-bottom: clamp(48px, 6vw, 64px) !important;
}

.ca-lp-main .section-final {
    background: var(--lp-flow-green-deep) !important;
    border-top: 0 !important;
    padding-top: clamp(56px, 7vw, 74px) !important;
    padding-bottom: clamp(52px, 7vw, 70px) !important;
}

.ca-lp-main .section-contact {
    background: linear-gradient(180deg, var(--lp-flow-green-deep) 0%, #ffffff 44%, #ffffff 100%) !important;
    padding-top: clamp(52px, 7vw, 74px) !important;
}

.ca-lp-main .pain-item,
.ca-lp-main .lp-problem-box,
.ca-lp-main .lp-service-panel,
.ca-lp-main .lp-result-ribbon,
.ca-lp-main .lp-ticket-card,
.ca-lp-main .lp-conditions-card,
.ca-lp-main .trust-fact-card,
.ca-lp-main .p-card,
.ca-lp-main .lp-faq-item,
.ca-lp-main .lp-profile-panel,
.ca-lp-main .lp-office-card,
.ca-lp-main .lp-contact-form-wrap {
    border: 1px solid var(--lp-flow-line) !important;
    border-radius: 14px !important;
    box-shadow: var(--lp-flow-shadow-soft) !important;
}

.ca-lp-main .lp-service-panel,
.ca-lp-main .lp-profile-panel,
.ca-lp-main .lp-office-card,
.ca-lp-main .lp-contact-form-wrap {
    box-shadow: var(--lp-flow-shadow) !important;
}

.ca-lp-main .lp-flow-item {
    background: #ffffff !important;
    border-color: rgba(49, 93, 58, 0.13) !important;
    border-left-color: rgba(111, 170, 94, 0.34) !important;
    box-shadow: 0 12px 28px rgba(41, 50, 43, 0.055) !important;
}

.ca-lp-main .lp-flow-number {
    color: var(--lp-visual-copper) !important;
}

.ca-lp-main .pain-item,
.ca-lp-main .lp-problem-box,
.ca-lp-main .lp-result-ribbon,
.ca-lp-main .trust-fact-card,
.ca-lp-main .lp-conditions-card,
.ca-lp-main .lp-faq-item,
.ca-lp-main .p-card {
    background: rgba(255, 255, 255, 0.96) !important;
}

.ca-lp-main .lp-problem-band-title {
    background-color: #fffdf7 !important;
    border-color: rgba(11, 111, 122, 0.12) !important;
    color: var(--lp-visual-teal-dark) !important;
}

.ca-lp-main .lp-result-ribbon {
    border-color: var(--lp-flow-line-warm) !important;
}

.ca-lp-main .lp-result-ribbon p,
.ca-lp-main .note-box,
.ca-lp-main .lp-service-note,
.ca-lp-main .condition-alert {
    background: #fffdf7 !important;
    border-color: var(--lp-flow-line-warm) !important;
    box-shadow: 0 6px 16px rgba(154, 63, 47, 0.045) !important;
}

.ca-lp-main .lp-result-ribbon::after {
    opacity: 0.28 !important;
}

.ca-lp-main .section-title::after {
    width: 68px !important;
    border-bottom-color: rgba(231, 200, 0, 0.58) !important;
}

.ca-lp-main .pain-item h3,
.ca-lp-main .lp-flow-item h3,
.ca-lp-main .trust-fact-card h3,
.ca-lp-main .p-card h3,
.ca-lp-main .lp-faq-item h3,
.ca-lp-main .lp-profile-name {
    color: var(--lp-visual-teal-dark) !important;
}

.ca-lp-main .badge-hero,
.ca-lp-main .lp-section-label,
.ca-lp-main .price-label,
.ca-lp-main .trust-fact-label,
.ca-lp-main .ticket-tag {
    box-shadow: none !important;
    letter-spacing: 0.08em;
}

.ca-lp-main .trust-fact-label,
.ca-lp-main .p-head,
.ca-lp-main .price-label {
    opacity: 0.92;
}

.ca-lp-main .lp-section-label,
.ca-lp-main .trust-fact-label,
.ca-lp-main .price-label {
    background: rgba(11, 111, 122, 0.09) !important;
    color: var(--lp-visual-teal-dark) !important;
}

.ca-lp-main .final-msg,
.ca-lp-main .final-msg p {
    color: var(--lp-visual-teal-dark) !important;
}

.ca-lp-main .section-final .container {
    max-width: 800px;
}

.ca-lp-main .final-msg {
    max-width: 800px;
    margin-right: auto !important;
    margin-left: auto !important;
}

@media (max-width: 767px) {
    .ca-lp-main .section-final {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .ca-lp-main .section-final .container {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 767px) {
    .ca-lp-main section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .ca-lp-main .section-pain {
        padding-bottom: 38px !important;
    }

    .ca-lp-main .section-problem {
        padding-top: 18px !important;
    }

    .ca-lp-main .section-profiles,
    .ca-lp-main .section-office,
    .ca-lp-main .section-contact {
        padding-top: 44px !important;
    }

    .ca-lp-main .pain-item,
    .ca-lp-main .lp-problem-box,
    .ca-lp-main .lp-service-panel,
    .ca-lp-main .lp-result-ribbon,
    .ca-lp-main .lp-ticket-card,
    .ca-lp-main .lp-conditions-card,
    .ca-lp-main .trust-fact-card,
    .ca-lp-main .p-card,
    .ca-lp-main .lp-faq-item,
    .ca-lp-main .lp-profile-panel,
    .ca-lp-main .lp-office-card,
    .ca-lp-main .lp-contact-form-wrap {
        border-radius: 12px !important;
        box-shadow: 0 8px 18px rgba(41, 50, 43, 0.045) !important;
    }
}

#canvas-wrapper-ichiki-pack[data-lp-variant="lp-b-second-opinion"] .section-hero-visual-led .lp-cta-note-disclaimer {
    text-align: left;
}
