/**
 * Credit Form New - Mobile Styles
 * NJ-92156
 * Route: /register/creditform_new
 */
.header{
    height:6.4rem;
}

.creditform_new_page {
    background: #fff;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    color: #333;
    padding: 3rem 3rem 4rem;
    line-height: 1.4;
}

.creditform_subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.creditform_subtitle_text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    text-align: left;
    line-height: 1.5;
}

.creditform_divider {
    border-top: 0.1rem solid #e5e5e5;
    width: 100%;
}

.creditform_heading {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    line-height: 1.5;
}

.creditform_step {
    font-size: 1.2rem;
    color: #555;
    font-weight: normal;
}

.creditform_title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.creditform_section_title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.premium_plan_card {
    background: #fff;
    border: 0.2rem solid #eee;
    border-radius: 2.4rem;
    padding: 3rem 2rem 2rem;
    margin-bottom: 4rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium_plan_card:hover{
    border-color: #f1890e;
}

.premium_plan_card.selected {
    border-color: #f1890e;
    box-shadow: 0 0 1.6rem rgba(0,0,0,0.1);
}

.plan_offer_badge {
    position: absolute;
    top: -1.7rem;
    left: 1.8rem;
    background: #f1890e;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    line-height: 1.4;
}

.plan_name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.plan_price {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    margin-bottom: 1.6rem;
}

.plan_price_amount {
    font-size: 3.2rem;
    font-weight: bold;
    color: #333;
    line-height: 3.2rem;
}

.plan_price_period {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.4;
    padding-bottom: 0.2rem;
}

.plan_details {
    border-top: 0.1rem solid #e5e5e5;
    padding-top: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.plan_detail_item {
    display: flex;
    gap: 0.8rem;
    align-items: baseline;
}

.plan_detail_icon {
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
}

/* Plan detail checkmark - default grey */
.premium_plan_card .plan_detail_item img.check-icon {
    filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(489%) hue-rotate(164deg) brightness(93%) contrast(88%);
}

/* Plan detail checkmark - orange when selected */
.premium_plan_card.selected .plan_detail_item img.check-icon {
    filter: brightness(0) saturate(100%) invert(58%) sepia(81%) saturate(2210%) hue-rotate(359deg) brightness(99%) contrast(91%);
}

.plan_detail_text {
    flex: 1;
}

.plan_detail_title {
    font-size: 1.6rem;
    color: #5f686f;
    line-height: 1.4;
}

.premium_plan_card.selected .plan_detail_title {
    color: #333;
}

.plan_detail_desc {
    font-size: 1.4rem;
    color: #8b9ba8;
    line-height: 1.4;
    margin-top: 0.2rem;
}

.special_offer_box {
    background: rgba(241,137,14,0.08);
    border-radius: 1.6rem;
    padding: 1.6rem 1.6rem 1.6rem 0.8rem;
    margin-top: 1.6rem;
}


.special_offer_item {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.special_offer_item:last-child {
    margin-bottom: 0;
}

.special_offer_icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}

.special_offer_text {
    font-size: 1.6rem;
    line-height: 1.4;
    color:#5F686F;
}

.premium_plan_card.selected .special_offer_text {
    color: #333;
}

.special_offer_highlight {
    color: #f1890e;
}

.coupon_link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #00acee;
    font-size: 1.6rem;
    text-decoration: none;
    margin-top: 4rem;
}

.coupon_link:hover {
    text-decoration: underline;
}

.payment_coupon_link_container {
    display: none;
    text-align: center;
    margin-bottom: 4rem;
    animation: slideDown 300ms ease-in-out;
}

.payment_coupon_link_container.visible {
    display: block;
}

.payment_coupon_link_container button.coupon_link {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 4rem 0 0;
    cursor: pointer;
    text-decoration: underline;
}

.payment_coupon_link_container button.coupon_link img {
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.payment_coupon_link_container button.coupon_link.active img {
    transform: rotate(270deg);
}

.page-payment-v2 .payment-v2-page-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-payment-v2 .payment-v2-page-content.active {
    display: block;
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-method-form {
    display: none;
}

.payment-method-form.visible {
    display: block;
}

.payment_method_section {
    margin: 4rem 0;
}

.payment_method_heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.payment_method_container {
    background: #fff;
    border: 0.1rem solid #e0e0e0;
    border-radius: 2rem;
    box-shadow: 0 0.1rem 0.4rem rgba(0,0,0,0.04);
    overflow: hidden;
}

.payment_option {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 1.2rem 1.6rem 1.2rem 1.6rem;
    border-bottom: 0.1rem solid #e5e5e5;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.payment_option:hover {
    background-color: #f9f9f9;
}

.payment_option:last-child {
    border-bottom: none;
}

/* Hide actual radio input but keep it functional */
.payment_option input[type="radio"],
.payment_option_wrapper input[type="radio"]:not(.worldpay_card_radio) {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

/* Custom radio button visual */
.payment_radio {
    width: 2rem;
    height: 2rem;
    border: 0.2rem solid #999;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}

/* Radio button checked state */
input[type="radio"]:checked ~ .payment_radio {
    border-color: #f1890e;
}

input[type="radio"]:checked ~ .payment_radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    transform: translate(-50%, -50%);
    background: #f1890e;
    border-radius: 50%;
}

.payment_icon {
    width: min-content;
    height: 3.2rem;
    width: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment_label {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}

/* WorldPay and AFTEE Form Visibility */
#worldpay-card-form,
#aftee-form {
    display: none;
}

#worldpay-card-form.visible,
#aftee-form.visible {
    display: block;
}

.aftee_notice_block {
    background: #f5f5f5;
    color: #333;
    padding: 1.6rem;
}

.aftee_notice_image {
    margin: 0 0 1.6rem;
    text-align: center;
}

.aftee_notice_image img {
    display: block;
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
}

.aftee_notice_text {
    margin: 0;
    color: #5f686f;
    font-size: 1.4rem;
    line-height: 1.6;
}

.aftee_notice_text a {
    color: #00acee;
    text-decoration: underline;
}

/* WorldPay Card Selector Styles */
.worldpay_card_selector_wrapper {
    padding: 1.6rem;
}

.worldpay_card_type_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.2rem;
}

.worldpay_card_type_item {
    margin: 0;
    padding: 0;
    width: 49%;
}

.worldpay_card_label {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem;
    background: #fff;
    border: 0.2rem solid #e0e0e0;
    border-radius: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.worldpay_card_label:hover {
    border-color: #f1890e;
    background: #fff8f0;
}

/* Hide default radio button */
.worldpay_card_radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

/* Custom radio button visual */
.radio_visual {
    width: 2rem;
    height: 2rem;
    border: 0.2rem solid #999;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
    display: inline-block;
}

/* Radio button checked state */
.worldpay_card_radio:checked + .radio_visual {
    border-color: #f1890e;
    border-width: 0.2rem;
}

.worldpay_card_radio:checked + .radio_visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    transform: translate(-50%, -50%);
    background: #f1890e;
    border-radius: 50%;
}

/* Fallback: Add via JavaScript or use data attribute */
.worldpay_card_label.checked {
    border-color: #f1890e;
    background: #fff8f0;
}

.payment_creditform_change__new_page .worldpay_card_radio {
    position: relative;
    opacity: 1;
    width: 2rem;
    height: 2rem;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0.2rem solid #CCCCCC;
    border-radius: 50%;
    background: #FFFFFF;
    flex-shrink: 0;
}

.payment_creditform_change__new_page .worldpay_card_radio:checked {
    border-color: #f1890e;
    background: #f1890e;
    box-shadow: inset 0 0 0 0.4rem #FFFFFF;
}

/* Card logos container */
.worldpay_card_logos {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

/* Individual card brand logo */
.card_brand_logo {
    height: 2.4rem;
    width: auto;
    object-fit: contain;
}

.card_inputs {
    padding: 1.6rem;
    border-bottom: 0.1rem solid #e5e5e5;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    max-height: 0;
    padding: 0 1.6rem;
}

.card_inputs.active {
    max-height: 100rem;
    padding: 1.6rem 1.6rem 1.6rem;
    opacity: 1;
}

.card_field {
    margin-bottom: 1.6rem;
}

.card_field input{
    border-color:#E0E0E0;
}

.card_field:last-child {
    margin-bottom: 0;
}

.card_label_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.card_label {
    font-size: 1.4rem;
    font-weight: bold;
    color: #5f686f;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.card_label .required_asterisk::after{
    content: '*';
    color: #D91C0B;
    margin-left: .2rem;
}

.card_brands {
    display: flex;
    gap: 0.6rem;
}

.card_brand_img {
    width: 2.8rem;
    height: 2rem;
    object-fit: contain;
}

.card_input {
    width: 100%;
    padding: 1.4rem;
    border: 0.1rem solid #e0e0e0;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.card_input:focus {
    outline: none;
    border-color: #f1890e;
}

.card_input.error {
    border-color: #ff0000;
    background-color: #fff5f5;
}

.card_input::placeholder {
    color: #999;
}

.card_error_message {
    display: none;
    font-size: 1rem;
    color: #ff0000;
    margin-top: 0.4rem;
    line-height: 1.4;
    font-weight: 500;
}

.card_error_message.show {
    display: block;
}

.card_fields_row {
    display: flex;
    gap: 1.4rem;
}

.card_field_half {
    flex: 1;
}

.cvv_field_wrapper {
    position: relative;
}

.cvv_info_icon {
    position: absolute;
    right: 1.4rem;
    top: 1.2rem;
    width: 2rem;
    height: 2rem;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: help;
}

.payment_details_section {
    margin-bottom: 4rem;
    display: none;
}

.payment_details_section.visible {
    display: block;
}

.payment_details_container {
    background: #fff;
    border: 0.1rem solid #e0e0e0;
    border-radius: 1.2rem;
    padding: 1.6rem;
}

.payment_detail_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.payment_detail_label {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}

.payment_detail_value {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: right;
}

.trial_badge {
    background: rgba(241,137,14,0.1);
    opacity: 0.9;
    padding: 0.8rem 1.6rem;
    border-radius: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.6rem;
}

.trial_text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #f1890e;
}

.payment_timeline {
    margin-bottom: 1.6rem;
    position: relative;
}

.timeline_connector {
    position: absolute;
    left: 0.7rem;
    top: 1.1rem;
    width: 0.2rem;
    height: 5.1rem;
    background: #f1890e;
}

.timeline_item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.timeline_icon {
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline_content {
    flex: 1;
}

.timeline_date {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.timeline_desc {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.4;
}

.payment_divider {
    height: 0.1rem;
    background: #e5e5e5;
    margin: 1.6rem 0;
}

.payment_method_summary {
    margin-bottom: 1.6rem;
}

.payment_method_title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.4rem;
}

.payment_method_selected {
    font-size: 1.6rem;
    color: #5f686f;
}

.total_payment_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total_label {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}

.total_amount {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}

.terms_section {
    margin-top: 2rem;
}

.terms_content {
    display: none;
    color: #5f686f;
    font-size: 1.4rem;
}

.terms_content p {
    margin: 0;
}

.terms_content a {
    color: #00acee;
    text-decoration: underline;
}
.terms_text {
    font-size: 1.4rem;
    color: #5f686f;
    line-height: 1.5;
}

.terms_link {
    color: #00acee;
    text-decoration: underline;
}

.terms_link:hover {
    text-decoration: none;
}

.terms_highlight {
    color: #f1890e;
}

.terms_notice {
    list-style: none;
    padding: 0;
}

.terms_notice li {
    position: relative;
    padding-left: 1.2rem;
}

.terms_notice li:before {
    content: "※";
    position: absolute;
    left: 0;
}

.terms_notice li p {
    margin: 0;
}

.terms_note {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 1.4rem;
    color: #5f686f;
    line-height: 1.5;
}

.submit_button {
    background: #f1890e;
    color: #fff;
    font-size: 2rem;
    font-weight: normal;
    border-radius: 0.4rem;
    border: none;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    text-align: center;
    height:5rem;
    line-height: 5rem;
    margin: 0 auto;
    transition: background-color 0.2s ease;
}

#paypal-button {
    display: none; /* Hidden by default, shown by JavaScript when PayPal is selected */
    margin: 0 auto;
}

#paypal-button-container {
    min-height: 4.1rem;
}

.submit_button.paypal_button {
    width: 37.5rem;
    max-width: 100%;
    background: transparent;
    border: none;
}

.submit_button.paypal_button svg {
    width: 100%;
    height: 100%;
}

.submit_button.paypal_button:hover,
.submit_button.paypal_button:active {
    background: transparent;
}

.submit_button:hover {
    background: #d97a0c;
}

.submit_button:active {
    background: #c06a0a;
}

.submit_button:disabled,
.submit_button.disabled {
    background: #F4F4F4;
    cursor: not-allowed;
    color:#CCC;
    pointer-events: none;
}

/* Loading state */
.submit_button.loading {
    position: relative;
    color: transparent;
}

.submit_button.loading::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 50%;
    left: 50%;
    margin-left: -1rem;
    margin-top: -1rem;
    border: 0.3rem solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error messages */
.error_message {
    color: #ff0000;
    font-size: 1.2rem;
    margin-top: 0.4rem;
    display: none;
}

.error_message.visible {
    display: block;
}

/* Hidden class */
.hidden {
    display: none;
}

/* Contract Information Page Specific Styles */
.current_plan_badge {
    background: #f1890e;
}

.error_container {
    border-left: 0.4rem solid #d32f2f;
}

.error_title {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.error_description {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.instruction_block {
    background: #f8f8f8;
    padding: 1.6rem;
    border-radius: 0.8rem;
    margin-bottom: 1.2rem;
}

.instruction_block:last-child {
    margin-bottom: 0;
}

.instruction_title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.instruction_text {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

.payment_section {
    margin-top: 3rem;
}

.registered_card {
    border-bottom: 0.1rem solid #e5e5e5;
    padding-bottom: 1.2rem;
}

.card_info_wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.card_brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card_number {
    font-family: 'Courier New', monospace;
    color: #666;
}

/* Corporate Standard Plan Card */
.corporate_plan_card {
    background: white;
    border: 0.2rem solid #f1890e;
    border-radius: 2.4rem;
    padding: 3rem 2rem 2rem;
    position: relative;
    box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.corporate_plan_name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 1.6rem;
}

.corporate_plan_details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1.7rem;
    border-top: 0.1rem solid #e5e5e5;
}

.corporate_detail_item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.corporate_detail_icon {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
}

/* Corporate checkmark - grey when not selected */
.corporate_plan_card .corporate_detail_item img.check-icon {
   filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(489%) hue-rotate(164deg) brightness(93%) contrast(88%);
}

/* Corporate checkmark - orange when selected */
.corporate_plan_card.selected .corporate_detail_item img.check-icon {
    filter: brightness(0) saturate(100%) invert(58%) sepia(81%) saturate(2210%) hue-rotate(359deg) brightness(99%) contrast(91%);
}

.corporate_detail_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #333;
    flex: 1;
}

/* Corporate Payment Notice */
.corporate_notice_box {
    background: #fff;
    border-radius: 2.4rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.corporate_notice_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.corporate_contact_button {
    background: #f1890e;
    color: #fff;
    font-size: 2rem;
    font-weight: normal;
    padding: 1.5rem 0;
    border-radius: 0.4rem;
    border: none;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    text-align: center;
    line-height: normal;
    margin: 0 auto;
    transition: background-color 0.2s ease;
}

.corporate_contact_button:hover {
    background: #00ACEE;
    color: #fff;
}

.corporate_contact_button:active {
    background: #0099d6;
}

/* Error Details Section (Managing Members with Failed Payments) */
.error_details_section {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.error_detail_block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1.6rem;
}

.error_detail_block.border_bottom {
    border-bottom: 0.1rem solid #eee;
}

.error_detail_title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.error_detail_title.red_title {
    color: #d91c0b;
}

.error_detail_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    line-height: 1.4;
    color: #333;
}

.error_detail_text p {
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
}

.error_detail_text p:last-child {
    margin-bottom: 0;
}

/* Back Link */
.back_link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #00acee;
    text-decoration: underline;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 2rem;
}

.back_arrow {
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    font-weight: normal;
}

.back_text {
    text-decoration: underline;
}

/* FAQ Section */
.faq_section {
    margin-top: 8rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.faq_heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2.08rem;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    margin: 0;
}

.faq_container {
    background: white;
    border: 0.1rem solid #e0e0e0;
    border-radius: 1.2rem;
    padding: 1.6rem;
}

.faq_item {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.faq_item:nth-child(n+2){
    border-top: 1px solid #EDEDED;
    padding: 1rem 0;
}

.faq_question,
.faq_answer {
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.faq_question {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    color: #333;
}

.faq_q_label {
    white-space: nowrap;
    flex-shrink: 0;
}

.faq_q_text {
    flex: 1;
}

.faq_answer {
    color: #5f686f;
}

.faq_a_label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.faq_a_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    flex: 1;
}

.faq_link_container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.faq_link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #00acee;
    text-decoration: underline;
    white-space: nowrap;
    cursor: pointer;
}

.m_t_20 {
    margin-top: 2rem;
}

.m_t_40 {
    margin-top: 4rem;
}

.m_b_40 {
    margin-bottom: 4rem;
}

/* Display utility classes */
.d_none {
    display: none;
}

.d_block {
    display: block;
}

.d_i_block {
    display: inline-block;
}

/* Grey text modifier */
.grey_text {
    color: #5f686f;
}

/* CVV field wrapper */
.cvv_field_wrapper {
    position: relative;
}

.cvv_info_icon {
    position: absolute;
    right: 1.4rem;
    top: 1.2rem;
    cursor:pointer;
}

/* Payment period suffix */
.payment_period_suffix {
    font-size: 1.6rem;
    font-weight: normal;
    color: #333;
}

