/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: #000;
}

/* フォーム専用ヘッダー：LPヘッダーのブランド列のみ（ロゴ＋タグライン、CTAなし） */
.form-simple-header {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.form-simple-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 40px 32px;
    box-sizing: border-box;
}
.form-simple-header__brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.form-simple-header__logo-link {
    display: block;
    flex-shrink: 0;
    width: 136px;
    line-height: 0;
}
.form-simple-header__logo {
    display: block;
    width: 136px;
    height: auto;
    max-width: 100%;
}
.form-simple-header__divider {
    width: 1px;
    height: 30px;
    background: #ffffff;
    flex-shrink: 0;
}
.form-simple-header__tagline {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 280px;
}

.form-simple-header__logo-link:focus-visible {
    outline: 2px solid #fccd73;
    outline-offset: 4px;
}

/* フッター：黒帯・中央・白文字コピーライトのみ */
.form-simple-footer {
    background: #000000;
    color: #ffffff;
    padding: 22px 20px 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.form-simple-footer__copy {
    margin: 0;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .form-simple-header__inner {
        padding: 18px 16px 20px;
    }
    .form-simple-header__brand {
        gap: 14px;
    }
    .form-simple-header__logo-link {
        width: 112px;
    }
    .form-simple-header__logo {
        width: 112px;
    }
    .form-simple-header__divider {
        height: 26px;
    }
    .form-simple-header__tagline {
        font-size: 12px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .form-simple-header__inner {
        padding: 14px 12px 16px;
    }
    .form-simple-header__brand {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .form-simple-header__logo-link {
        width: 92px;
    }
    .form-simple-header__logo {
        width: 92px;
    }
    .form-simple-header__divider {
        height: 22px;
    }
    .form-simple-header__tagline {
        font-size: 9px;
        letter-spacing: 0.02em;
        line-height: 1.35;
        max-width: none;
        flex: 1;
        min-width: 0;
    }
    .form-simple-footer {
        font-size: 10px;
        padding: 18px 14px 24px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#form_wrap {
    font-size: 16px;
    padding: 70px 20px;
    background-color: #EDEBEB;
}

.p16.m_bold {
    font-size: 26px;
    font-weight: 600;
    padding: 20px 20px 50px;
    text-align: center;
}
#form_wrap .check input , #form_wrap .radio input {
    margin-right: 5px;
}
#form_wrap .contact_txt {
    text-align: left;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
#form_wrap .contact_txt--note {
    margin-top: 1rem;
    margin-bottom: 0;
    color: #757575;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
#form_wrap .footer_bottom {
    padding-bottom: 20px !important;
}
#form_wrap h3 {
    text-align: center;
    margin-bottom: 20px;
}
.form .input-wrap label .optional {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

/* media query : mobile
---------------------------------------------*/
@media screen and (max-width: 768px) {
    .sp_mr {
        margin-top: 10px !important;
    }
    .form {
        width: auto;
        box-sizing: border-box;
    }
    .form .title {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100vw;
        height: 220px;
        text-align: center;
        margin: 0 calc(50% - 50vw) 50px;
        background-color: rgba(255, 255, 255, 0.6);
    }
    .form .title h2 {
        font-size: 1.9rem;
        margin-bottom: 0;
    }
    .form .input-wrap {
        padding-bottom: 25px;
        margin-bottom: 20px;
        border-bottom: 1px solid #e3e3e3;
    }
    .form .input-wrap:first-of-type {
        padding-top: 20px;
        border-top: none;
        border-bottom: 1px solid #e3e3e3;
    }
    .form .input-wrap label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: justify;
        width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    .form .input-wrap label .required {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 21px;
        font-size: 0.8rem;
        color: #fff;
        padding: 3px 7px;
        background-color: #d00303;
        border-radius: 2px;
    }
    .form .input-wrap div.input {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        flex-direction: column;
    }
    .form .input-wrap div.input input::placeholder {
        font-size: 1rem;
    }
    .form .input-wrap div.input > input,
    .form .input-wrap div.input > textarea {
        width: 100%;
        font-size: 1rem;
        padding: 15px;
        box-sizing: border-box;
    }
    .form .input-wrap div.input div {
        display: flex;
        justify-content: left;
    }
    .form .privacy_02 .input-wrap div.input div {
        width: 100% !important;
    }
    .form .input-wrap div.input select {
        width: 70%;
        font-size: 1rem;
        padding: 15px;
        box-sizing: border-box;
    }
    .form .input-wrap div.input select option {
        padding: 3px 7px;
    }
    .form .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 280px;
        min-height: 52px;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 0;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid #a38447 !important;
        background: linear-gradient(180deg, #ffd680 0%, #fccd73 100%) !important;
        color: #212121 !important;
        transition: filter 0.2s ease, transform 0.15s ease;
    }

    .form input[type="submit"].button:hover {
        filter: brightness(1.06);
        cursor: pointer;
    }

    .form .button.button--secondary {
        background-color: rgba(33, 33, 33, 0.95) !important;
        border: 1px solid #fccd73 !important;
        color: #fccd73 !important;
    }
    .form .button.button--secondary:hover {
        filter: brightness(1.12);
    }

    .form dl.confirm {
        grid-template-columns: 1fr;
        margin-top: 8px;
    }
    .form dl.confirm dt {
        padding: 18px 0 6px;
        border-bottom: none;
    }
    .form dl.confirm dd {
        padding: 0 0 16px;
        border-bottom: 1px solid #e3e3e3;
    }
    .form dl.confirm dt:first-of-type {
        border-top: 1px solid #e3e3e3;
        padding-top: 16px;
    }
    .form .form-submit_button {
        margin-top: 40px;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        max-width: 100%;
    }
    .form p.form-submit_button .button {
        width: 100%;
        max-width: 280px;
    }
    dd {
        margin-inline-start: 0 !important;
    }

    .form.complete .content {
        max-width: 780px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    } 
    .form .return_button {
        margin-top: 40px;
    }
    .form .return_button a {
        color: #fff;
    }
}

/* media query : desktop
---------------------------------------------*/
@media screen and (min-width: 769px) {
    .form {
        margin: 0 auto;
    }
    .form .input-wrap {
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
        align-items: start;
        column-gap: 0;
        padding-bottom: 25px;
        margin-bottom: 25px;
        border-bottom: 1px solid #e3e3e3;
    }
    .form .input-wrap:first-of-type {
        padding-top: 25px;
        border-top: none;
        border-bottom: 1px solid #e3e3e3;
    }
    .form .input-wrap label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: justify;
        width: 240px;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .form .input-wrap label .required {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 23px;
        font-size: 0.8rem;
        color: #fff;
        padding: 3px 7px;
        background-color: #d00303;
        border-radius: 2px;
    }
    .form .input-wrap div.input {
        display: block;
        min-width: 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .form .input-wrap div.input input::placeholder {
        font-size: 1rem;
    }
    .form .input-wrap div.input > input,
    .form .input-wrap div.input > textarea {
        width: 100%;
        font-size: 1rem;
        padding: 18px;
        box-sizing: border-box;
    }
    .form .input-wrap div.input div {
        display: flex;
    }
    .form .privacy_02 .input-wrap div.input div  {
        width: 100%;
        align-items: center;
    }
    .form .input-wrap div.input select {
        width: 33.33%;
        font-size: 1rem;
        padding: 18px;
        box-sizing: border-box;
    }
    .form .input-wrap div.input select option {
        padding: 3px 7px;
    }
    .form .button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 220px;
        max-width: 320px;
        min-height: 52px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 0;
        border: 1px solid #a38447 !important;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        background: linear-gradient(180deg, #ffd680 0%, #fccd73 100%) !important;
        color: #212121 !important;
        transition: filter 0.2s ease, transform 0.15s ease;
    }
    .form input[type="submit"].button:hover {
        filter: brightness(1.06);
        cursor: pointer;
    }

    .form .button.button--secondary {
        background-color: rgba(33, 33, 33, 0.95) !important;
        border: 1px solid #fccd73 !important;
        color: #fccd73 !important;
    }
    .form .button.button--secondary:hover {
        filter: brightness(1.12);
    }

    .form .form-submit_button {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: 16px;
        max-width: 720px;
        margin: 50px auto 0;
    }

    .form dl.confirm {
        margin-top: 32px;
    }
    .form dl.confirm dt,
    .form dl.confirm dd {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .form.complete .content {
        max-width: 780px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    } 
    .form .return_button {
        margin-top: 50px;
    }
    .form .return_button a {
        color: #fff;
    }
}


input[type="submit"] {
    border: 0;
    box-shadow: 0;
}
input[type="button"] {
    border: 0;
    box-shadow: 0;
}
.form div.validation-error {
    display: block;
    color: #d00303;
    text-align: justify;
    padding-left: 10px;
}
.form .error-message {
    background-color: #efefef;
    color: #d00303;
}
#form_wrap input , #form_wrap textarea , #form_wrap select {
    border: 1px solid #2E2722;
}

#form_wrap .btn {
    border: 1px solid #a38447;
    border-radius: 0;
    color: #212121;
    background: linear-gradient(180deg, #ffd680 0%, #fccd73 100%);
    margin: 3rem auto 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    min-height: 52px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    transition: filter 0.2s ease;
    box-sizing: border-box;
}
/* 完了ページ：トップへ戻るボタンを中央に */
p.form-complete__btn-wrap {
    text-align: center;
    margin: 0;
    padding: 0;
}
#form_wrap .btn:hover {
    color: #212121;
    filter: brightness(1.06);
}

/* Header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #000000;
}

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 50px;
    height: 109px;
    gap: 20px;
}

.header-logo img {
    width: 140px;
    height: 24px;
}

.header-banner {
    background: linear-gradient(270deg, rgba(37, 92, 11, 1) 64%, rgba(7, 8, 34, 1) 100%);
    padding: 0 50px 0 30px;
    display: flex;
    align-items: center;
    height: 100%;
    width: auto;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header-banner:hover {
    opacity: 0.9;
}

.banner-content {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
}

.banner-badge {
    border-radius: 5px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.362;
    color: #FFFFFF;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    color: #FFFFFF;
}

.banner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.banner-link::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../../images/arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.banner-link:hover::after,
.header-banner:hover .banner-link::after {
    transform: translateX(5px);
}

/* シンプルヘッダーは非固定のため #main にオフセット不要 */
#main {
    padding-top: 0;
    background-color: #000;
    position: relative;
}

/* Form page hero — コンパクト（FVほどの高さは不要） */
.form-hero {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 28px 20px 32px;
    box-sizing: border-box;
    background-color: #0a0a0a;
    background-image: linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    text-align: center;
    border-bottom: 1px solid rgba(252, 205, 115, 0.35);
}

.form-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.form-hero-premium {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #fccd73;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.form-hero-name {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(24px, 2.6vw, 32px);
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.form-hero-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.55;
    font-weight: 500;
}

/* Form container */
.sec_contact {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 70px 0;
}

.wrap,
.contact_wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

}

/* 確認画面：dt/dd をグリッドで整列（flex だと列幅が崩れやすい） */
.form dl.confirm {
    display: grid;
    grid-template-columns: minmax(132px, 28%) 1fr;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.form dl.confirm dt,
.form dl.confirm dd {
    margin: 0;
    box-sizing: border-box;
}
.form dl.confirm dt {
    display: block;
    width: auto;
    font-weight: 700;
    color: #333;
    padding: 16px 12px 16px 0;
    border-bottom: 1px solid #e3e3e3;
    align-self: start;
}
.form dl.confirm dd {
    width: auto;
    margin-inline-start: 0 !important;
    padding: 16px 0 16px 16px;
    border-bottom: 1px solid #e3e3e3;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.65;
}
.form dl.confirm dt:first-of-type {
    border-top: 1px solid #e3e3e3;
}

.privacy_01 , .privacy_02 {
    text-align: justify;
    padding-bottom: 1rem;
}
.privacy_wrap {
    text-align: justify;
}

/* 個人情報同意（説明＋チェックを1ブロックに整理） */
.privacy-block {
    margin-top: 2rem;
    padding: 1.25rem 1rem 1.35rem;
    background: #f5f4f3;
    border: 1px solid #e0dedc;
    border-radius: 4px;
    text-align: left;
}
.privacy-block__title {
    font-size: 1rem;
    font-weight: 700;
    color: #212121;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.privacy-block__title .required {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    padding: 2px 8px;
    background-color: #c62828;
    border-radius: 2px;
}
.privacy-block__lead {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #333;
    margin: 0 0 1rem 0;
}
.privacy-block__agree {
    padding-top: 0.25rem;
}
.privacy-block__label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.55;
    color: #212121;
}
.privacy-block__label input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #a38447;
}
.privacy-block__label-text {
    flex: 1;
    min-width: 0;
}
.privacy-block__agree .validation-error {
    width: 100%;
    margin-top: 0.5rem;
    padding-left: 0;
}

.btn_wrap {
    margin-top: 2rem;
    text-align: center;
}

.privacy-notice {
    font-size: 18px;
    line-height: 1.75;
    padding: 28px 0 20px;
    border-bottom: 1px solid #000000;
    color: #000000;
    text-align: center;
}
/* リード文：ヒーロー見出しより小さく（.p16.m_bold 単体より詳細度で上書き） */
p.p16.m_bold.form-lead {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 20px 40px;
    text-align: center;
    color: #424242;
}
.form-lead-tel {
    color: #a38447;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.form-lead-tel:hover {
    color: #fccd73;
}
.privacy-link {
    color: #a38447;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.privacy-link:hover {
    color: #7a6638;
}
.privacy_wrap .p14.p_left {
    padding-top: 40px;
    max-height: 400px;
    overflow-y: auto;
    margin: 20px 0;
    background-color: #fff;
}
.privacy_wrap .privacy-section {
    margin-bottom: 1.5rem;
    padding: 0 20px;
}
.privacy_wrap .privacy-section strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.privacy_wrap .privacy-section > div {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}
.privacy_wrap .privacy-section ol {
    margin: 0.8rem 0 0.8rem 1.5rem;
    padding: 0;
}
.privacy_wrap .privacy-section ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}
.error-message {
    list-style: none;
    padding: 1rem;
}
h2 {
    color: #D3962D;
    display: block;
    line-height: 0;
    font-size: 30px;
}

.input-wrap button, .input-wrap input, .input-wrap select, .input-wrap textarea {
    background-color: #fff !important;
}

/* Footer / Copyright Styles */
.copyright {
    width: 100%;
    background-color: #000000;
    padding: 50px 100px;
}

.copyright-content {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.copyright-logo {
    margin-bottom: 10px;
}

.copyright-logo img {
    width: 140px;
    height: 24px;
}

.copyright-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.copyright-company {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.copyright-description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: left;
    max-width: 1200px;
}

.copyright-address,
.copyright-contact,
.copyright-hours {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.copyright-contact {
    font-weight: 700;
    font-size: 30px;
}

.copyright-hours {
    font-size: 17px;
}

.copyright-year {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

/* Header Responsive Styles */
@media (max-width: 1000px) {
    .banner-badge {
        font-size: 13px;
    }
    .form-hero {
        padding: 24px 18px 28px;
    }
    .form-hero-name {
        font-size: clamp(22px, 4.2vw, 28px);
    }
    .form-hero-text {
        font-size: 12px;
    }
    p.p16.m_bold.form-lead {
        font-size: 14px;
        padding-bottom: 36px;
    }

    .banner-text {
        font-size: 18px;
    }

    .copyright-company {
        font-size: 20px;
    }

    .copyright-description {
        font-size: 13px;
    }

    .copyright-address,
    .copyright-contact,
    .copyright-hours {
        font-size: 18px;
    }

    .copyright-hours {
        font-size: 15px;
    }

    .copyright-year {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 0 0 20px;
    }
    .header-banner {
        padding: 10px 20px;
    }

    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .banner-text {
        font-size: 16px;
    }

    .form-hero {
        padding: 22px 16px 26px;
    }
    .form-hero-name {
        font-size: clamp(20px, 5vw, 24px);
    }
    .form-hero-text {
        font-size: 12px;
    }

    .p16.m_bold:not(.form-lead) {
        font-size: 18px;
    }
    p.p16.m_bold.form-lead {
        font-size: 14px;
        padding: 6px 16px 32px;
    }

    .sec_contact {
        padding: 30px 0;
    }

    #form_wrap {
        padding: 30px 20px;
    }

    #form_wrap .contact_txt {
        font-size: 13px;
    }

    #form_wrap .contact_txt--note {
        font-size: 11px;
    }

    .privacy-notice {
        font-size: 18px;
    }

}

@media (max-width: 510px) {
    .banner-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0 0 20px;
        flex-wrap: nowrap;
        gap: 8px;
        height: 60px;
    }

    .header-logo img {
        width: 80px;
        height: auto;
        flex-shrink: 0;
    }

    .header-banner {
        display: flex;
        padding: 6px 0 0 20px;
        min-width: 0;
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
        padding-right: 20px;
    }

    .banner-badge {
        font-size: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .banner-text {
        font-size: 11px;
        white-space: nowrap;
        flex: 1;
        min-width: 0;
        width: 100%;
    }
    
    .banner-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        max-width: 100%;
        padding-right: 0;
    }
    
    .banner-link::after {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    #main {
        padding-top: 0;
    }

    .form-hero {
        padding: 20px 14px 24px;
    }
    .form-hero-premium {
        font-size: 10px;
    }
    .form-hero-name {
        font-size: 21px;
    }
    .form-hero-text {
        font-size: 11px;
    }
    p.p16.m_bold.form-lead {
        font-size: 13px;
        line-height: 1.7;
        padding: 4px 14px 28px;
    }

    .copyright {
        padding: 30px 20px;
    }
}

/* Responsive line break classes */
br.br-480 {
    display: none;
}

@media (max-width: 480px) {
    br.br-480 {
        display: block;
    }
}

br.br-no-480 {
    display: block;
}

@media (max-width: 480px) {
    br.br-no-480 {
        display: none;
    }
}