body {
    margin: 0;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.hero {
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 0px auto;
}

.hero-image {
    width: 100%;
    display: block;
    height: auto;
}

.hero-card-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    font-weight: 700;
    line-height: 1.6;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
    color: white;
    max-width: 420px;
}

.hero-card-top p {
    margin: 0;
    font-size: 18px;
    color: white;
    text-shadow:
        0 2px 0 #51b859,
        1.4px 1.4px 0 #51b859,
        2px 0 0 #51b859,
        1.4px -1.4px 0 #51b859,
        0 -2px 0 #51b859,
        -1.4px -1.4px 0 #51b859,
        -2px 0 0 #51b859,
        -1.4px 1.4px 0 #51b859;
}

.hero-cta {
    position: absolute;
    left: 20px;
    bottom: 100px;
    display: inline-flex;
    align-items: center;
}

.hero-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 10px 16px;
    background-color: #ffffff;
    color: #1a7f37;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
    border: 2px solid #e4f3e8;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        border-color 0.12s ease;
}

.hero-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
    border-color: #bfe7c6;
}

.hero-cta-text {
    white-space: nowrap;
    font-size: 15px;
}

.hero-cta-arrow {
    font-size: 18px;
    line-height: 1;
}

.hero-cta-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.section {
    padding: 30px 0;
}

.section-gray-background {
    background-color: #f9f9f9 !important;
}

.section-container {
    max-width: 1280px;
    margin: 0px auto;
}

.section-container-title-key-message {
    text-align: center;
    color: #1d7c31;
    margin-top: 0;
}

.section-container-title-sub-message {
    text-align: center;
    color: #4d4d4d;
}

.strong-point-card {
    margin: 28px 50px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: 28px 32px;
}

.strong-point-copy h3 {
    margin: 0 0 12px;
    color: #1d7c31;
}

.strong-point-copy p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    color: #4d4d4d;
}

.strong-point-copy .strong-point-note {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 13px;
    color: #6f6f6f;
}

.strong-point-image {
    width: 320px;
    flex-shrink: 0;
}

.strong-point-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.price-basic {
    margin-bottom: 50px;
}

.price-title-sub-message {
    text-align: center;
    margin: 0;
    color: #4d4d4d;
}

.price-card-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    align-items: stretch;
    justify-items: center;
}

.price-card {
    background-color: #ffffff;
    border-radius: 26px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 22px 20px;
    max-width: 400px;
}

.price-card-image {
    background: linear-gradient(180deg, #f7f7f7 0%, #ededed 100%);
    border-radius: 18px;
    padding: 14px;
}

.price-card-image img {
    width: 100%;
    height: 220px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dcdcdc;
}

.price-card-name {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: #3a3a3a;
}

.price-card-description {
    margin: 0;
    color: #4d4d4d;
    line-height: 1.8;
    font-size: 15px;
}

.price-card-price {
    margin: 0 0 auto 0;
    color: #1d7c31;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-card-price-currency {
    font-size: 15px;
}

.price-card-price-value {
    font-size: 24px;
    letter-spacing: 0.6px;
}

.price-card-price-tax {
    font-size: 15px;
}

.contact-section {
    padding: 36px 0 60px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.contact-option {
    border-radius: 12px;
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-option-heading {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-option-subheading {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
}

.contact-option-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #ffffff;
    color: #0f6b30;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.08);
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease;
}

.contact-option-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.16);
}

.contact-option-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
}

.contact-option-mail {
    background-color: #c3cf00;
}

.contact-option-line {
    background-color: #50b95a;
}

.contact-message {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: #4b4b4b;
}

.contact-message-lead {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.contact-message-line {
    color: #00b900;
}

.contact-message-free {
    color: #e53935;
}

.contact-message p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
}

.before-after-section {
    padding: 40px 0 64px;
    background-color: #ffffff;
}

.before-after-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    padding: 0 14px;
}

.before-after-title-key-message {
    margin: 0;
    color: #1d7c31;
}

.before-after-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.before-after-card {
    background-color: #ffffff;
    border-radius: 28px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    padding: 22px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.before-after-frames {
    display: grid;
    gap: 12px;
}

.before-after-frame {
    position: relative;
    margin: 0;
}

.before-after-badge {
    position: absolute;
    top: 10px;
    left: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
}

.before-after-badge.before {
    background-color: #b3b3b3;
}

.before-after-badge.after {
    background-color: #f27f7f;
}

.before-after-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #bfbfbf;
    display: block;
    box-sizing: border-box;
}

.before-after-description {
    margin: 0;
    color: #4d4d4d;
    line-height: 1.7;
    font-size: 15px;
}

.before-after-link {
    margin-top: auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid #ef3f35;
    color: #ef3f35;
    font-weight: 800;
    text-decoration: none;
    font-size: 15px;
    min-width: 150px;
    transition:
        background-color 0.16s ease,
        color 0.16s ease,
        box-shadow 0.16s ease;
}

.before-after-link:hover {
    background-color: #ef3f35;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(239, 63, 53, 0.16);
}

.faq {
    margin-top: 30px;
}

.faq-list {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #ededed;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition:
        box-shadow 0.16s ease,
        transform 0.16s ease;
}

.faq-item:hover {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border: none;
    background: transparent;
    font-size: 17px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: left;
    cursor: pointer;
}

.faq-item.is-open .faq-question {
    background-color: #f8fdf8;
    border-bottom: 1px solid #eef3ee;
}

.faq-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
}

.faq-toggle-icon::before {
    content: "▶";
    color: #169c3a;
    font-weight: 800;
    font-size: 15px;
}

.faq-item.is-open .faq-toggle-icon::before {
    content: "▼";
}

.faq-question-body {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.faq-question-text {
    line-height: 1.6;
    display: block;
}

.faq-letter {
    color: #169c3a;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.faq-answer {
    padding: 0 20px 18px 52px;
    color: #4d4d4d;
    line-height: 1.8;
    font-size: 15px;
    background-color: #ffffff;
}

.faq-answer-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.faq-answer-text p {
    margin: 0;
}

.faq-answer-text p + p {
    margin-top: 6px;
}

@media (max-width: 960px) {
    .hero-card-top {
        padding: 8px 9px;
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .hero-cta {
        left: 12px;
        bottom: 20px;
    }

    .hero {
        aspect-ratio: 3 / 4;
    }

    .hero-image {
        height: 100%;
        object-fit: cover;
    }

    .section {
        margin: 32px 0 48px;
    }

    .strong-point-card {
        flex-direction: column;
        align-items: flex-start;
        margin: 28px 10px;
    }

    .strong-point-image {
        width: 100%;
    }

    .section-container {
        padding: 0 14px;
    }

    .price-card-list {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-option {
        text-align: center;
        margin: 0 20px;
    }

    .faq-list {
        padding: 0 10px 10px;
    }

    .faq-question {
        padding: 16px;
        font-size: 16px;
        gap: 10px;
    }

    .faq-answer {
        padding: 0 16px 16px 46px;
    }
}
