/* --- Global Settings & Reset --- */
:root {
    --color-primary: #0067ed;
    --color-dark-blue: #253fc3;
    --color-background-light: #f4f8ff;
    --color-background-dark: #212a3a;
    --color-text-primary: #333333;
    --color-text-white: #ffffff;
    --font-family-base: 'Inter', sans-serif;
    --font-family-heading: 'DM Sans', sans-serif;
    --gradient-red: linear-gradient(90deg, #ff7302, #fc0275);
    --gradient-blue: linear-gradient(90deg, #6752da, #0f3bb8, #0071e7);
    --gradient-button: linear-gradient(90deg, #e44d26 0%, #f16529 100%); /* Placeholder Gradient */
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family-base);
    color: var(--color-text-primary);
    line-height: 1.6;
    background-color: #f0f0f0;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.sp-only { display: block; }
@media (min-width: 769px) {
        .sp-only {
                display: none;
    }
}

.pc-only { display: none; }
    @media (min-width: 769px) {
        .pc-only {
                display: block;
    }
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.yellow-line {
    text-decoration-line: underline;
    text-decoration-color: #ffea0b;
    text-decoration-thickness: 6.4px;
    text-underline-offset: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 20px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}
.btn:hover { opacity: 0.8; }
.btn--primary {
    background: var(--gradient-red);
    color: var(--color-text-white);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 71, 126, 0.4);
}

/* --- General Section Styling --- */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}
@media (min-width: 769px) {
    .section-title {
        font-size: 44.8px;
    }
}
@media (max-width: 769px) {
    .section-title {
        font-size: 7.5vw;
    }
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
}
@media (max-width: 769px) {
    .section-subtitle {
        font-size: 3.5vw;
    }
}
.section-title--blue {
    font-size: 7.3vw;
    font-weight: 700;
    color: var(--color-dark-blue);
    text-align: center;
    margin-bottom: 24px;
}
@media (min-width: 769px) {
    .section-title--blue {
        font-size: 28px;
    }
}
/* --- Header --- */
.header {
    background-color: var(--color-text-white);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.header .container {
    padding-left: 20px;
    text-align: left;
}
.header__logo {
    height: 30px;
}
.header-logo__txt {
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    letter-spacing: -0.01em;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    color: var(--color-text-white);
    text-align: center;
}
@media (min-width: 769px) {
    .hero__container {
        display: flex;
        align-items: center;
        gap: 6%;
        padding-bottom: 120px;
        text-align: left;
    }
}
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero-bg-sp.png') center/cover no-repeat;
    z-index: -1;
}
@media (min-width: 769px) {
    .hero__bg {
        background: url('../img/hero-bg.png') center/cover no-repeat;
    }
}

.hero__text-content {
    margin-top: -10px;
    padding-top: 35px;
    text-align: center;
}
@media (min-width: 769px) {
    .hero__text-content {
        padding-top: 40px;
        flex: 1;
    }
}

.hero__sub-heading {
    font-size: 5vw;
    font-weight: 700;
}
@media (min-width: 769px) {
    .hero__sub-heading {
        font-size: clamp(22px, 3vw, 28px);
    }
}

.hero__sub-heading--highlight {
    color: #fff671;
}
.hero__heading {
    font-family: var(--font-family-heading);
    font-size: 14vw;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 3px 4px 12px rgba(0,0,0,0.1);
    position: relative;
}
@media (min-width: 769px) {
    .hero__heading {
        margin: 0 0 16px;
        font-size: 90px;
    }
}
.hero__heading-small {
    font-size: clamp(60px, 7vw, 90px);
    position: relative;
}
@media (min-width: 769px) {
    .hero__heading-small{
        font-size: clamp(50px, 6vw, 70px);
    }
}
.hero__heading-small:after {
    content: "";
    width: 45px;
    height: 45px;
    background-image: url('../img/ico-search.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: -7.5vw;
    bottom: 0px;
}
@media (min-width: 769px) {
    .hero__heading-small:after {
        width: 68px;
        height: 68px;
        right: -57px;
        bottom: 0px;
    }
}
.hero__features-2column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}
.hero__feature-item {
    width: 42vw;
    display: inline-block;
    padding: 5px 24px;
    color: var(--color-primary);
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(
        to right,
        #fefed9 0%,
        #f9f950 10%,
        #fbf12e 70%,
        #f6e306 95%,
        #e5d304 100%
    );
    white-space: nowrap;
}
@media (min-width: 769px) {
    .hero__feature-item {
        width: 200px;
    }
}
.hero__features > .hero__feature-item {
    width: 250px;
}
.hero__img {
    width: 86%;
    margin: 30px auto 0;
}
.hero__form-chooser {
    height: 30vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    margin: 40px 0 0;
}
@media (min-width: 769px) {
    .hero__form-chooser {
        width: 38%;
        min-width: 425px;
        gap: 50px;
        justify-content: center;
        margin: 1rem 0;
    }
}
.hero__form-chooser.is-hidden {
  display: none !important;
}
.hero__cta {
    width: 75%;
    margin-inline: auto;
}
@media (min-width: 769px) {
    .hero__cta {
        width: 100%;
    }
}
@media (max-width: 769px) {
    .hero__cta {
        width: 90%;
        white-space: nowrap;
    }
}

/* --- wrapper collapsed --- */
.hero__form-wrapper.is-collapsed {
    display: none;
}
.hero__form-wrapper {
    margin-top: 1rem;
}
.hero__form-wrapper {
    width: 90%;
    margin-inline: auto;
    margin-top: 40px;
    padding-bottom: 100px;
}
@media (min-width: 769px) {
    .hero__form-wrapper {
        flex: 1;
        max-width: 440px;
        padding-bottom: 0;
    }
}


/* --- Diagnostic Form --- */
.diag-form {
    width: 100%;
    min-height: 664px;
    background: var(--color-text-white);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.diag-form__inner {
    padding: 30px 25px 20px;
}
.diag-form__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    padding: 10px 0;
    border-radius: 25px 25px 0 0;
    background: var(--gradient-red);
}
.diag-form {
  --tab-bg: #f8fafc;
  --tab-fg: #0f172a;
  --tab-bd: #cbd5e1;
  --tab-active-bg: #2563eb;
  --tab-active-fg: #fff;
  --tab-active-bd: #2563eb;
  --tab-hover-bg: #e2e8f0;
}

.diag-form__tabs{
    display:flex;
    align-items: flex-end;
    justify-content: center;
    gap:20px;
    margin:.5rem 0 1rem;
    border-bottom: 1px solid var(--tab-bd);
}

.diag-form__tab{
    appearance:none;
    margin-bottom: -1px;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
    font-size: clamp(10px, 1.4vw, 14px);
    color:var(--tab-fg);
    background:var(--tab-bg);
    border:1px solid var(--tab-bd);
    transition:.15s ease;
    cursor:pointer;
}
.diag-form__tab:hover{
    background:var(--tab-hover-bg);
}

.diag-form__tab.is-active{
    font-size: clamp(12px, 1.8vw, 18px);
    color: #fff;
    border-color: var(--gradient-red);
    background: var(--gradient-red);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--gradient-red) 35%, transparent);
}

.is-hidden{ display:none !important; }

.form-group {
    margin-bottom: 16px;
}
.form-label__row {
    display: flex;
    justify-content: space-between;
}
.form-group__label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}
.form-group__required {
    height: 20px;
    background-color: #fe472f;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 7px;
    margin-left: 8px;
    vertical-align: middle;
}
.form-group__input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
}
.form-group__name-fields {
    display: flex;
    gap: 10px;
}
@media (min-width: 769px) {
    .form-group__name-fields {
        flex-direction: row;
    }
}

.diag-form__submit {
    width: 70%;
    display: block;
    margin: 24px auto 0;
    padding: 16px;
    border: none;
    border-radius: 30px;
    background: var(--gradient-red);
    color: var(--color-text-white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

/* --- Intro Section --- */
.content__area {
    width: 100%;
    max-width: 900px;
    margin: -60px auto 0;
    border-radius: 50px 50px 0 0;
}
@media (min-width: 769px) {
    .content__area {
        margin: -60px auto 0;
    }
}
@media (max-width: 769px) {
    .content__area {
        margin: 0 auto;
    }
}

.intro {
    padding: 30px 0 15px;
    background-color: #fff;
    border-radius: 30px 30px 0 0;
}
@media (min-width: 769px) {
    .intro {
        padding: 60px 60px 45px;
        border-radius: 50px 50px 0 0;
    }
}

.intro__cards {
}
@media (min-width: 769px) {
    .intro__cards {
        
    }
}
.intro-card {
    width: 95%;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(90deg, #fbfcff, #d9e8f6);;
    border-radius: 0 16px 16px 0;
    box-shadow: 4.6px 6.6px 6px 0 rgba(0, 0, 0, 0.04);
    text-align: left;
    position: relative;
}
@media (min-width: 769px) {
    .intro-card {
        width: 85%;
        display: flex;
        flex: 1;
        flex-direction: column;
        margin-bottom: 0;
        padding: 30px 60px 24px 40px;
        border-radius: 16px;
    }
    .intro-card:nth-child(2) {
        margin-top: 30px;
        margin-left: 15%;
        padding-left: 5px;
    }
}
.intro-card.infro-bland::after {
    content: "";
    width: 28vw;
    height: 40vw;
    background-image: url(../img/intro-01.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (min-width: 769px) {
    .intro-card.infro-bland::after {
        content: none;
    }
}
.intro-card.intro-needs {
    margin-left: 5%;
    border-radius: 16px 0 0 16px;
}
@media (min-width: 769px) {
    .intro-card.intro-needs {
        margin-left: 15%;
        border-radius: 16px;
    }
}
.intro-card.intro-needs::after {
    content: "";
    width: 34vw;
    height: 41vw;
    background-image: url(../img/intro-02.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 20px;
    left: 0;
}
@media (min-width: 769px) {
    .intro-card.intro-needs::after {
        content: none;
    }
}
.intro-card__title {
    font-size: 5.4vw;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}
@media (min-width: 769px) {
    .intro-card__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}
@media (max-width: 769px) {
    .intro-card__title {
        font-size: 5.2vw;
    }
}
.intro-card__body {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}
@media (min-width: 769px) {
    .intro-card__body {
        text-align: left;
        flex-grow: 1;
        align-items: center;
    }
}
.intro-card.intro-needs .intro-card__body {
    width: 65%;
    margin-left: 35%;
    justify-content: flex-end;
}
@media (min-width: 769px) {
    .intro-card.intro-needs .intro-card__body {
        width: 100%;
        margin-left: 0;
    }
}
.intro-card.infro-bland .intro-card__txt-box {
    width: 80%;
}
.intro-card__image {
    width: 30%;
    height: fit-content;
    margin: 0 auto;
}
@media (min-width: 769px) {
    .intro-card__image {
        width: 100%;
        max-width: 150px;
        margin: 0 auto -30px;
    }
}
.intro-card__text {
    width: 90%;
    font-size: 15px;
    line-height: 1.8;
}
@media (min-width: 769px) {
    .intro-card__text {
        width: 100%;
    }
}

/* --- Prompts Section --- */
.prompts {
    background-color: var(--color-background-light);
}
.prompts .container {
    width: 90%;
    padding: 30px 0 105px;
}
@media (min-width: 769px) {
    .prompts .container {
        width: 100%;
        max-width: 650px;
        margin-inline: auto;
        padding: 45px 0 105px;
    }
}
.prompts__description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
}
@media (max-width: 769px) {
    .prompts__description {
        font-size: 3.5vw;
    }
}
.prompt-item {
    display: flex;
    align-items: center;
    height: 65px;
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1.8px 3.6px 11px 1px rgba(0, 0, 0, 0.04);
}
.prompt-item__number {
    width: 14vw;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 6.5vw;
    font-weight: bold;
    color: #fff;
    background-color: #253fc3;
    border-radius: 10px 0 0 10px;
}
@media (min-width: 769px) {
    .prompt-item__number {
        width: 76.8px;
        font-size: 35px;
    }
}
.prompt-item__title {
    width: 30vw;
    padding-left: 3vw;
    font-size: 3vw;
    font-weight: bold;
    color: #253fc3;
    text-align: left;
}
@media (min-width: 769px) {
    .prompt-item__title {
        width: 160px;
        padding-left: 30px;
        font-size: 16px;
    }
}
.prompt-item__example {
    width: 45vw;
    font-size: 2.8vw;
    color: #717171;
    text-align: left;
}
@media (min-width: 769px) {
    .prompt-item__example {
        width: auto;
        font-size: 16px;
    }
}

/* --- Reports Section --- */
.reports {
    background: linear-gradient(90deg, #00a8ff, #0083f8, #0047de);
    text-align: center;
}
.reports .container {
    max-width: 770px;
    padding-block: 60px;
}
.reports-ttl {
    margin-bottom: 15px;
    font-size: 8vw;
    font-weight: bold;
    color: #fff;
    position: relative;
}
@media (min-width: 769px) {
    .reports-ttl {
        font-size: 44.8px;
        line-height: 1.4;
    }
}
.reports-ttl::before {
    content: "";
    width: 35vw;
    height: 40vw;
    background-image: url(../img/report-head-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0vw;
    top: -140px;
}
@media (min-width: 769px) {
    .reports-ttl::before {
        width: 160px;
        height: 190px;
        left: -20px;
        top: -100px;
    }
}
.reports__description {
    color: var(--color-text-white);
    margin-bottom: 40px;
}
@media (max-width: 769px) {
    .reports__description {
        font-size: 3.5vw;
    }
}
.reports__images {
    width: 80%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 769px) {
    .reports__images {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
.reports__images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- Flow Section --- */
.flow {
    background-color: #dfedfa;
    text-align: center;
}
.flow .container {
    padding-block: 40px;
}
@media (min-width: 769px) {
    .flow .container {
        max-width: 770px;
        padding-block: 60px;
    }
}
.flow__steps {
    width: 90%;
    margin: 35px auto;
    position: relative;
}
@media (min-width: 769px) {
    .flow__steps {
        width: 100%;
        max-width: 650px;
        margin-inline: auto;
    }
}

.flow__steps::after {
    content: "";
    width: 1px;
    height: 450px;
    background-image: url(../img/flow-line.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    left: 70px;
    z-index: 0;
}
.flow-step {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    z-index: 100;
}
@media (min-width: 769px) {
    .flow-step {
        gap: 30px;
    }
}
.flow-image {
    width: 140px;
    height: 140px;
}
.flow-step__title {
    font-size: 5vw;
    font-weight: bold;
}
@media (min-width: 769px) {
    .flow-step__title {
        font-size: 26.88px;
    }
}
.flow-step__number {
    font-size: 4.5vw;
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
}
@media (min-width: 769px) {
    .flow-step__number {
        margin-bottom: 5px;
        font-size: 1.6em
    }
}
.flow__notes {
    width: 90%;
    margin-top: 40px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 769px) {
    .flow__notes {
        width: 100%;
        flex-direction: row;
        gap: 40px;
    }
}

.flow-note {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
}
@media (min-width: 769px) {
    .flow-note {
        flex: 1;
    }
}

.flow-note.bg-yellow {
    background-color: #feffe6;
}
.flow-note__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}
.flow__description, .flow-note__text {
    font-size: 15px;
    line-height: 1.8;
}
.flow .btn {
    width: 80%;
    margin-top: 30px;
    font-size: 4.5vw;
    position: relative;
}
.flow .btn:hover {
    color: #fff;
}
@media (min-width: 769px) {
    .flow .btn {
        width: 384px;
        margin-top: 40px;
        font-size: 22.4px;
    }
}
.flow .btn::after {
    content: "";
    width: 7px;
    height: 13px;
    background-image: url(../img/ico-arrow.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- Features Section --- */
.features {
    background-color: #dfedfa;
    text-align: center;
    color: var(--color-text-white);
}
@media (min-width: 769px) {
    .features .container {
        max-width: 650px;
        margin-inline: auto;
        padding-block: 50px 60px;
    }
}
.features-inner {
    padding-bottom: 60px;
    background-color: var(--color-primary);
    border-radius: 25px 25px 0 0;
}
@media (min-width: 769px) {
    .features-inner {
        padding-bottom: 0;
        border-radius: 50px 50px 0 0;
    }
}
.features-ttl {
    margin-bottom: 10px;
    padding-top: 40px;
    padding-left: 5%;
    font-size: 5vw;
    font-weight: bold;
    text-align: left;
    line-height: 45px;
}
@media (min-width: 769px) {
    .features-ttl {
        margin-bottom: 35px;
        padding-top: 0;
        padding-left: 0;
        font-size: 23px;
        text-align: center;
        line-height: 50px;
    }
}
.features__description {
    padding-left: 5%;
    text-align: left;
}
@media (min-width: 769px) {
    .features__description {
        padding-left: 0;
        text-align: center;
    }
}
.features-ttl__gradient {
    background: linear-gradient(180deg, #fff, #fff, #fff262);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 8.4vw;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 769px) {
    .features-ttl__gradient {
        font-size: 50px;
    }
}
.features__list {
    width: 90%;
    margin-top: 25px;
    margin-inline: auto;
    padding: 34px 5vw 25px;
    background-color: #fff;
    border-radius: 30px;
    position: relative;
}
@media (min-width: 769px) {
    .features__list {
        width: 100%;
        margin-top: 35px;
        padding: 34px 45px 30px;
    }
}
.features__list::before {
    content: "";
    width: 18vw;
    height: 31.5vw;
    background-image: url(../img/notes-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -90px;
    right: 2vw;
    z-index: 0;
}
@media (min-width: 769px) {
    .features__list::before {
        width: 92px;
        height: 160px;
        top: -105px;
        right: 20px;
    }
}
.features__list-ttl {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    color: var(--color-text-primary);
}
.features__list-ttl-small {
    font-size: 23px;
}
.feature-item {
    margin-bottom: 15px;
    padding-block: 30px;
    background-color: #edf4fa;
    border-radius: 20px;
}
.feature-item__title {
    font-size: 23px;
    font-weight: bold;
}
@media (max-width: 769px) {
    .feature-item__title {
        font-size: 5.4vw;
    }
}
.feature-item__text {
    color: var(--color-text-primary);
}
@media (max-width: 769px) {
    .feature-item__text {
        font-size: 3.2vw;
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--color-background-dark);
    color: var(--color-text-white);
    padding: 60px 0 0;
    font-size: 14px;
}
.footer__content {
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 769px) {
    .footer__content {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
}

.footer__info {
    text-align: left;
}
.footer__logo {
    height: 40px;
    margin-bottom: 16px;
}
.footer__links {
    text-align: left;
}
@media (min-width: 769px) {
    .footer__links {
        display: flex;
        gap: 60px;
    }
}

.footer__link-group {
    margin-bottom: 30px;
}
.footer__link-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
@media (min-width: 769px) {
    .footer__link-title {
        margin-bottom: 16px;
    }
}
.footer__link {
    color: var(--color-text-white);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: opacity 0.3s;
}
@media (min-width: 769px) {
    .footer__link {
        margin-bottom: 12px;
    }
}
.footer__link:hover { opacity: 0.8; }
.footer__copyright {
    width: 90%;
    margin-top: 20px;
    margin-inline: auto;
    padding-block: 10px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #fff;
}
@media (min-width: 769px) {
    .footer__copyright {
        width: 100%;
    }
}

/* --- Hubspot Form --- */
.hsfc-FieldLabel__RequiredIndicator {
    display: none!important;
}
.hsfc-Step__Content {
    padding-top: 10px !important;
}
/* panels */
.is-hidden { display: none !important; }

/* HubSpotフォームの横幅崩れ対策（必要に応じて） */
.hs-form-slot form { width: 100% !important; }
