:root {
  --c-mobile-bg: #fffdf5;
}

.l-header__img {
  width: 100%;
  max-width: 240px;
}

.l-content-container {
    background-color: #FFFDF5;
}

.l-form-wrappar {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 1156px;
    padding: 24px 20px;
    margin-inline: auto;
    flex-wrap: wrap;
}

.l-form-left {
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding-top: 16px;
}

.l-form-left__heading {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    font-size: 36px;
    font-weight: 700;
}

.l-form-left__heading-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.l-form-left__heading-balloon {
    font-size: 24px;
    color: #fff;
    background-color: #EF6A04;
    padding: 8px 16px;
    border-radius: 9999px;
    position: relative;    
}

.l-form-left__heading-balloon::after {
    content: '';
    width: 16px;
    height: 16px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-color: #EF6A04;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.l-form-left__heading-strong {
    font-weight: 700;
    color: #EF6A04;
}

.l-form-right {
    background-color: #fff;
    padding: 32px 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 436px;
    max-width: 100%;
    flex-shrink: 0;
}

.l-form-right__heading {
    font-size: 20px;
    font-weight: 700;
    color: #EF6A04;
}

.l-footer {
    background-color: #FFC83E;
    color: #333;
}

@media (max-width: 460px) {
    .l-form-wrappar {
        padding-inline: 16px;
    }

    .l-form-left {
        gap: 24px;
    }

    .l-form-left__heading {
        gap: 16px;
        font-size: 32px;
    }

    .l-form-left__heading-balloon {
        font-size: 20px;
    }

    .l-form-right {
        padding: 24px 16px;
    }
    
    .l-footer__inner {
        justify-content: center;
    }

    .l-footer__copy {
        margin-left: 0;
    }
}

.c-privacy {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 8px;
}

.c-privacy__logo {
    flex-shrink: 0;
}

.c-privacy__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
}

.c-privacy__text {
    font-size: 12px;
}

.c-privacy__link {
    font-size: 12px;
    color: #006CD8;
    text-decoration: underline;
}

@media (max-width: 460px) {
    .c-privacy__logo {
        width: 68px;
    }
}

@media (min-width: 461px) {
    .sp-only {
        display: none !important;
    }
}

@media (max-width: 460px) {
    .sp-none {
        display: none !important;
    }
}