@charset "Shift_JIS";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* Shift_JISで保存してください*/
:root {
    /* 基本フォント */
    --font-family-default: 'Noto Sans JP';
 
    /* フォントサイズ */
    --font-size-XXXL: 36px;
    --font-size-XXL:  30px;
    --font-size-XL:   40px;
    --font-size-L:    32px;
    --font-size-ML:   28px;
    --font-size-ML2:  24px;
    --font-size-M:    20px;
    --font-size-M2:   18px;
    --font-size-MS:   18px;
    --font-size-MS2:  16px;
    --font-size-S:    14px;
    --font-size-XS:   14px;
    --font-size-XXS:  12px;
 
    /* サービス全体で使用するメインカラー */
    --color_main: #0091AB;
 
    /* サービス全体で使用するアクセントカラー */
    --color_accent_primary: #FFFA8B;
    --color_accent_secondary: #B3F5F3;
 
    /* テキストに使用するカラー */
    --color_txt_primary: #424242;
    --color_txt_secondary: #006E81;
    --color_txt_tertiary: #757575;
    --color_txt_quaternary: #2F4858;
    --color_txt_quinary: #9E9E9E;
    --color_txt_behind_dark: #FFF;
    --color_txt_error: #F44336;
 
    /* 背景に使用するカラー */
    --color_bg_gradation: linear-gradient(96deg, #FFFA86 12.62%, rgba(255, 250, 134, 0.65) 31.84%, rgba(196, 255, 174, 0.50) 51.05%, rgba(179, 245, 243, 0.65) 70.27%, #B3F5F3 89.48%);
    --color_bg_primary: #FFF;
    --color_bg_secondary: #E5FBFF;
    --color_bg_tertiary: #0091AB;
    --color_bg_quaternary: rgba(255, 255, 255, 0.70);
    --color_bg_popup_scrim: rgba(0, 0, 0, 0.15);
    --color_bg_attention: #FFFDDC;
 
    /* 線に使用するカラー */
    --color_border_primary: #EEEEEE;
    --color_border_secondary: #BDBDBD;
    --color_border_tertiary: #0091AB;
    --color_border_quaternary: #E0E0E0;
    --color_border_quinary: #A9D2D9;
    --color_border_gradation: linear-gradient(96deg, #FFFA86 12.62%, rgba(255, 250, 134, 0.65) 31.84%, rgba(196, 255, 174, 0.50) 51.05%, rgba(179, 245, 243, 0.65) 70.27%, #B3F5F3 89.48%);
    --color_border_attention: #F2EC61;
 
    /* テキストフィールドに使用するカラー */
    --color-txtfield_error_bg: rgba(244, 67, 54, 0.10);
    --color-txtfield_error_border: #F44336;
    --color-txtfield_error_txt: #424242;
    --color-txtfield_error_icon: #757575;

    /* 文字サイズ崩れ防止 */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* フォントサイズ */
.font-size-XXXL {
    font-size: var(--font-size-XXXL, 36px) !important;
}

.font-size-XXL {
    font-size: var(--font-size-XXL, 30px) !important;
}

.font-size-XL {
    font-size: var(--font-size-XL, 40px) !important;
}

.font-size-L {
    font-size: var(--font-size-L, 32px) !important;
}

.font-size-ML {
    font-size: var(--font-size-ML, 28px) !important;
}

.font-size-ML2 {
    font-size: var(--font-size-ML2, 24px) !important;
}

.font-size-M {
    font-size: var(--font-size-M, 20px) !important;
}

.font-size-M2 {
    font-size: var(--font-size-M2, 18px) !important;
}

.font-size-MS {
    font-size: var(--font-size-MS, 18px) !important;
}

.font-size-MS2 {
    font-size: var(--font-size-MS2, 16px) !important;
}

.font-size-S {
    font-size: var(--font-size-S, 14px) !important;
}

.font-size-XS {
    font-size: var(--font-size-XS, 14px) !important;
}

.font-size-XXS {
    font-size: var(--font-size-XXS, 12px) !important;
}

/* テキストに使用するカラー */
.color_txt_primary {
    color: var(--color_txt_primary, #424242) !important;
}

.color_txt_secondary {
    color: var(--color_txt_secondary, #006E81) !important;
}

.color_txt_tertiary {
    color: var(--color_txt_tertiary, #757575) !important;
}

.color_txt_quaternary {
    color: var(--color_txt_quaternary, #2F4858) !important;
}

.color_txt_quinary {
    color: var(--color_txt_quinary, #9E9E9E) !important;
}

.color_txt_behind_dark {
    color: var(--color_txt_behind_dark, #FFF) !important;
}

.color_txt_error {
    color: var(--color_txt_error, #F44336) !important;
}

/* 背景に使用するカラー */
.color_bg_gradation {
    background: var(--color_bg_gradation) !important;
}

.color_bg_primary {
    background-color: var(--color_bg_primary, #FFF) !important;
}

.color_bg_secondary {
    background-color: var(--color_bg_secondary, #E5FBFF) !important;
}

.color_bg_tertiary {
    background-color: var(--color_bg_tertiary, #0091AB) !important;
}

.color_bg_quaternary {
    background-color: var(--color_bg_quaternary, rgba(255, 255, 255, 0.70)) !important;
}

.color_bg_popup_scrim {
    background-color: var(--color_bg_popup_scrim, rgba(0, 0, 0, 0.15)) !important;
}

.color_bg_attention {
    background-color: var(--color_bg_attention, #FFFDDC) !important;
}

/* 線に使用するカラー */
.color_border_primary {
    border-color: var(--color_border_primary, #EEE) !important;
}

.color_border_secondary {
    border-color: var(--color_border_secondary, #BDBDBD) !important;
}

.color_border_tertiary {
    border-color: var(--color_border_tertiary, #0091AB) !important;
}

.color_border_quaternary {
    border-color: var(--color_border_quaternary, #E0E0E0) !important;
}

.color_border_quinary {
    border-color: var(--color_border_quinary, #A9D2D9) !important;
}

.color_border_gradation {
    border-image: var(--color_border_gradation) !important;
    border-image-slice: 1 !important;
}

.color_border_attention {
    border-color: var(--color_border_attention, #F2EC61) !important;
}

.displayon {
    display: block;
}

.displayoff {
    display: none !important;
}

.pc_only {
    display: block;
}

/* コンテナ */
html {
    font-family: var(--font-family-default, "Noto Sans JP");
    font-style: normal;
}

*, *::before, *::after {
    font-family: inherit;
}

body {
    margin: 0;
}

.container_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    justify-content: center;
}

.container_single {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    width: 976px;
    box-sizing: border-box;
}

.container_basic_info {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid var(--color_border_secondary, #BDBDBD);
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_tertiary, #757575);
    font-size: var(--font-size-S, 12px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 15.6px */
    box-sizing: border-box;
}

.container_basic_info_2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_tertiary, #757575);
    font-size: var(--font-size-S, 12px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 15.6px */
    box-sizing: border-box;
}

.container_border {
    border-radius: var(--Corner-radius-radius_XL, 24px);
    box-shadow: 0 2px 10px 0 #E6EDF2;
}

/* タイポグラフィー */
.txt_title_1_bold,
.txt_title_2_bold,
.txt_body_1_bold,
.txt_body_2_bold,
.txt_body_3_bold,
.txt_body_4_bold,
.txt_body_4_regular,
.txt_body_5_bold,
.txt_body_5_bold2,
.txt_body_5_regular,
.txt_body_6_wls_bold,
.txt_body_6_bold,
.txt_body_6_medium,
.txt_body_6_regular,
.txt_body_7_regular,
.txt_btn_1_bold,
.txt_btn_2_bold,
.txt_btn_3_bold,
.txt_btn_4_bold,
.txt_btn_4_medium,
.txt_btn_5_bold,
.txt_btn_6_medium,
.txt_btn_7_bold,
.txt_others_1_wls_regular,
.txt_others_1_wls_bold,
.txt_others_2_wls_regular {
    color: #252525;
}

.txt_title_1_bold {
    font-size: var(--font-size-L, 32px);;
    font-weight: 700;
    line-height: 130%; /* 41.6px */
}

.txt_title_2_bold {
    font-size: var(--font-size-M, 20px);;
    font-weight: 700;
    line-height: 130%; /* 26px */
}

.txt_body_1_bold {
    font-size: var(--font-size-XXXL, 36px);
    font-weight: 700;
    line-height: 130%; /* 46.8px */
}

.txt_body_2_bold {
    font-size: var(--font-size-XL, 40px);;
    font-weight: 700;
    line-height: 130%; /* 52px */
}

.txt_body_3_bold {
    font-size: var(--font-size-ML, 28px);;
    font-weight: 700;
    line-height: 130%; /* 36.4px */
}

.txt_body_4_bold {
    font-size: var(--font-size-M, 20px);
    font-weight: 700;
    line-height: 130%; /* 26px */
}

.txt_body_4_regular {
    font-size: var(--font-size-M2, 18px);
    font-weight: 400;
    line-height: 130%; /* 23.4px */
}

.txt_body_5_bold {
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.txt_body_5_bold2 {
    font-size: var(--font-size-MS2, 16px);
    font-weight: 700;
    line-height: 130%; /* 20.8px */
}

.txt_body_5_regular {
    font-size: var(--font-size-MS2, 16px);
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}

.txt_body_6_wls_bold {
    font-size: var(--font-size-S, 14px);
    font-weight: 700;
    line-height: 130%; /* 18.2px */
}

.txt_body_6_bold {
    font-size: var(--font-size-S, 14px);
    font-weight: 700;
    line-height: 120%; /* 16.8px */
}

.txt_body_6_medium {
    font-size: var(--font-size-S, 14px);
    font-weight: 500;
    line-height: 130%; /* 18.2px */
}

.txt_body_6_regular {
    font-size: var(--font-size-S, 14px);
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.txt_body_7_regular {
    font-size: var(--font-size-XXS, 12px);
    font-weight: 400;
    line-height: 130%; /* 15.6px */
}

.txt_btn_1_bold {
    font-size: var(--font-size-XXL, 30px);
    font-weight: 700;
    line-height: 130%; /* 42px */
}

.txt_btn_2_bold {
    font-size: var(--font-size-ML2, 24px);
    font-weight: 700;
    line-height: 130%; /* 33.6px */
}
 
.txt_btn_3_bold {
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.txt_btn_4_bold {
    font-size: var(--font-size-MS2, 16px);
    font-weight: 700;
    line-height: 130%; /* 20.8px */
}

.txt_btn_4_medium {
    font-size: var(--font-size-MS2, 16px);
    font-weight: 500;
    line-height: 130%; /* 20.8px */
}

.txt_btn_5_bold {
    font-size: var(--font-size-S, 14px);
    font-weight: 700;
    line-height: 130%; /* 18.2px */
}

.txt_btn_6_medium {
    font-size: var(--font-size-XS, 14px);
    font-weight: 500;
    line-height: 130%; /* 18.2px */
}

.txt_btn_7_bold {
    font-size: var(--font-size-XXS, 12px);
    font-weight: 700;
    line-height: 130%; /* 15.6px */
}

.txt_others_1_wls_regular {
    font-size: var(--font-size-MS, 18px);
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.txt_others_1_wls_bold {
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 150%; /* 27px */
}

.txt_others_2_wls_regular {
    font-size: var(--font-size-S, 14px);
    font-weight: 400;
    line-height: 150%; /* 21px */
}

/* コンポーネント */
/* タブ */
.tab_radio {
    display: none;
}

.tab_titles {
    display: flex;
    align-items: stretch;
}

.tab_content {
    display: none;
}

.tab_content_active {
    display: block;
}

.tab_label {
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: var(--font-size-MS2, 14px);
    font-weight: 700;
    line-height: 130%; /* 18.2px */
    color: var(--color_txt_tertiary, #757575);
    border-bottom: 2px solid var(--color_border_primary, #EEE);
    cursor: pointer;
}

.tab_radio:checked + label {
    border-bottom: 2px solid #006E81;
    color: var(--color_txt_secondary, #006E81);
    cursor: default;
}

.tab_active,
.tab_inactive {
    display: inline-flex;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: var(--font-size-MS2, 14px);
    font-weight: 700;
    line-height: 130%; /* 18.2px */
}

.tab_active {
    border-bottom: 2px solid #006E81;
    color: var(--color_txt_secondary, #006E81);
    cursor: pointer;
}

.tab_inactive {
    color: var(--color_txt_tertiary, #757575);
    border-bottom: 1px solid var(--color_border_primary, #EEE);
}

.circle_cnt_red {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 24px;
    background: #F44336;
    color: var(--color_txt_behind_dark, #FFF);
    text-align: center;
    font-size: 8px;
    font-weight: 700;
    line-height: 130%; /* 10.4px */
}

/* テキストボタン */
.btn_lg_primary,
.btn_lg_primary_disable,
.btn_lg_secondary,
.btn_lg_secondary_disable,
.btn_lg_in_typing {
    display: flex;
    width: 476px;
    height: 56px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 24px;
    text-align: center;
    font-size: var(--font-size-M2, 18px);
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    cursor: pointer;
}
 
.btn_lg_primary {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_tertiary, #0091AB);
    color: var(--color_txt_behind_dark, #FFF);
}
 
.btn_lg_primary:hover {
    opacity: 0.7;
}
 
.btn_lg_primary_disable {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: #E0E0E0;
    color: var(--color_txt_behind_dark, #FFF);
    cursor: auto;
}
 
.btn_lg_secondary {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_secondary, #006E81);
}
 
.btn_lg_secondary:hover {
    opacity: 0.7;
}
 
.btn_lg_secondary_disable {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: var(--color_bg_primary, #FFF);
    color: #E0E0E0;
    cursor: auto;
}
 
.btn_lg_in_typing {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_secondary);
    color: var(--color_txt_secondary, #006E81);
    cursor: pointer;
}
 
.btn_lg_in_typing:hover {
    background-color: rgb(229, 251, 255, 0.3);
}
 
.btn_lg_primary_2l,
.btn_lg_primary_2l_disable,
.btn_lg_secondary_2l,
.btn_lg_secondary_2l_disable {
    display: flex;
    flex-direction: column;
    width: 476px;
    height: 64px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 32px;
    cursor: pointer;
}
 
.btn_lg_primary_2l {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_tertiary, #0091AB);
    color: var(--color_txt_behind_dark, #FFF);
    text-align: center;
    font-style: normal;
}
 
.btn_lg_primary_2l div:first-child,
.btn_lg_primary_2l_disable  div:first-child {
    font-size: var(--font-size-XS, 14px);
    font-weight: 500;
    line-height: 120%; /* 16.8px */
}
 
.btn_lg_primary_2l div:nth-child(2),
.btn_lg_primary_2l_disable  div:nth-child(2) {
    font-size: var(--font-size-M2, 18px);
    font-weight: 700;
    line-height: 140%; /* 25.2px */
}
 
.btn_lg_primary_2l:hover {
    opacity: 0.6;
}
 
.btn_lg_primary_2l_disable {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: #E0E0E0;
    color: var(--color_txt_behind_dark, #FFF);
    cursor: auto;
}
 
.btn_lg_secondary_2l {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_secondary, #006E81);
    text-align: center;
    font-style: normal;
}
 
.btn_lg_secondary_2l div:first-child,
.btn_lg_secondary_2l_disable div:first-child {
    font-size: var(--font-size-XS, 14px);
    font-weight: 500;
    line-height: 120%; /* 16.8px */
}
 
.btn_lg_secondary_2l div:nth-child(2),
.btn_lg_secondary_2l_disable div:nth-child(2) {
    font-size: var(--font-size-m-2, 18px);
    font-weight: 700;
    line-height: 140%; /* 25.2px */
}
 
.btn_lg_secondary_2l:hover {
    opacity: 0.7;
}
 
.btn_lg_secondary_2l_disable {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: var(--color_bg_primary, #FFF);
    color: #E0E0E0;
    cursor: auto;
}

.btn_md_primary,
.btn_md_primary_disable,
.btn_md_secondary,
.btn_md_secondary_disable {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-width: 476px;
    height: 56px;
    padding: 0 24px;
    border-radius: 32px;
    text-align: center;
    font-size: var(--font-size-MS2, 16px);
    font-weight: 700;
    line-height: 130%;
    cursor: pointer;
}

.btn_md_primary {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_tertiary, #0091AB);
    color: var(--color_txt_behind_dark, #FFF);
}
 
.btn_md_primary:hover {
    opacity: 0.7;
}

.btn_md_primary_disable {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: var(--color_border_quaternary, #E0E0E0);
    color: var(--color_txt_behind_dark, #FFF);
    cursor: auto;
}
 
.btn_md_secondary {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_secondary, #006E81);
}
 
.btn_md_secondary:hover {
    opacity: 0.7;
}
 
.btn_md_secondary_disable {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: var(--color_bg_primary, #FFF);
    color: var(--color_border_quaternary, #E0E0E0);
    cursor: auto;
}
 
.btn_sm_primary,
.btn_sm_secondary,
.btn_sm_tertiary,
.btn_sm_quaternary,
.btn_sm_quinary {
    display: inline-flex;
    height: 36px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    border-radius: 24px;
    text-align: center;
    font-size: var(--font-size-S, 14px);
    font-weight: 700;
    line-height: 130%; /* 18.2px */
    cursor: pointer;
}
 
.btn_sm_primary {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_tertiary, #0091AB);
    color: var(--color_txt_behind_dark, #FFF);
}
 
.btn_sm_primary:hover {
    opacity: 0.7;
}
 
.btn_sm_secondary {
    border: 1px solid #006E81;
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_secondary, #006E81);
}
 
.btn_sm_secondary:hover {
    opacity: 0.7;
}
 
.btn_sm_tertiary {
    border: 1px solid #757575;
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_tertiary, #757575);
}
 
.btn_sm_tertiary:hover {
    opacity: 0.7;
}
 
.btn_sm_quaternary {
    padding: 8px 20px 8px 16px;
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
    color: var(--color_txt_tertiary, #757575);
}
 
.btn_sm_quaternary:hover {
    opacity: 0.7;
}
 
/* チェックボックス */
.chk_md,
.chk_sm {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
 
    margin: 0;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    cursor: pointer;
}
 
.chk_md {
    width: 44px;
    height: 44px;
}
 
.chk_md:hover {
    background: #F5F5F5;
}
 
.chk_md::after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url("../images/chk_md.svg") no-repeat center / contain;
}
 
.chk_md:checked::after {
    background-image: url("../images/chk_md_checked.svg");
}

.chk_md.error:checked::after {
    background-image: url("../images/chk_md_checked.svg");
}

.chk_md.error::after {
    background: url("../images/chk_md_error.svg") no-repeat center / contain;
}

.chk_sm {
    width: 32px;
    height: 32px;
}
 
.chk_sm:hover {
    background: #F5F5F5;
}
 
.chk_sm::after {
    content: "";
    display: block;
    width: 23.273px;
    height: 23.273px;
    background: url("../images/chk_sm.svg") no-repeat center / contain;
}
 
.chk_sm:checked::after {
    background-image: url("../images/chk_sm_checked.svg");
}
 
.chk_with_textarea {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
 
.chk_with_textarea:has(input:checked) .chk_bubble_unchecked {
    visibility: hidden;
}
 
.chk_border_unchecked,
.chk_border_disable {
    display: flex;
    height: 56px;
    padding: 0 20px 0 12px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    box-sizing: border-box;
    line-height: 130%;
}
 
.chk_border_unchecked {
    border: 1px solid var(--color_border_secondary, #BDBDBD);
    background: var(--color_bg_primary, #FFF);
    cursor: pointer;
    color: var(--color_txt_primary, #424242);
    font-weight: 700;
}

.chk_border_unchecked.error {
    border: 1px solid #F44336;
    background: rgba(244, 67, 54, 0.10);
}

.chk_border_unchecked.error:has(input:checked) {
    background: var(--color_bg_primary, #FFF);
}

.chk_border_unchecked:hover {
    background: #F5F5F5;
}
 
.chk_border_unchecked:has(input:checked) {
    border: 2px solid var(--color_border_tertiary, #0091AB);
}

.chk_border_unchecked.error:has(input:checked) {
    border: 2px solid var(--color_border_tertiary, #0091AB);
}

.chk_border_disable {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: var(--color_bg_primary, #FFF);
    color: #E0E0E0;
    font-weight: 700;
}
 
.chk_border_disable input:hover {
    background: var(--color_bg_primary, #FFF);
    cursor: auto;
}
 
.chk_bubble_unchecked,
.chk_bubble_disable {
    position: relative;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}
 
.chk_bubble_unchecked {
    background: #E5F4EC;
    color: var(--color_txt_secondary, #006E81);
}
 
.chk_bubble_unchecked::after {
    content: url("../images/chk_bubble_unchecked.svg");
    position: absolute;
    bottom: -0.1rem;
    left: 50%;
    transform: translateX(-50%);
    height: 12px;
    display: block;
}

.chk_bubble_unchecked.error {
    background: rgba(244, 67, 54, 0.10);
    color: var(--color_txt_error, #F44336);
}

.chk_bubble_unchecked.error::after {
    content: url("../images/chk_bubble_error.svg");
}
 
.chk_bubble_disable {
    background: #F5F5F5;
    color: var(--color_txt_behind_dark, #FFF);
}
 
.chk_bubble_disable::after {
    content: url("../images/chk_bubble_disable.svg");
    position: absolute;
    bottom: -0.1rem;
    left: 50%;
    transform: translateX(-50%);
    height: 12px;
    display: block;
}

/* チェックボックス（淡い水色)用 */
.chk_paleblue {
	width: 100%;
	border: 2px solid var(--color_border_tertiary, #0091AB);
	background-color: var(--color_bg_secondary, #E5FBFF);
	box-sizing:border-box;
	border-radius: 16px;
	gap: 32px;
	cursor: pointer;
}
.chk_paleblue.unchecked {
    border-color: var(--color_border_quaternary, #E0E0E0);
    background-color: var(--color_bg_quaternary, rgba(255, 255, 255, 0.70));
}
.chk_paleblue:hover {
    background-color: rgb(229, 251, 255, 0.3);
}

 
/* ラジオボタン */
.radio {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
 
    margin: 0;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    cursor: pointer;
 
    width: 22px;
    height: 22px;
}

.radio.error {
    fill: rgba(244, 67, 54, 0.10);
}
 
.radio:hover {
    background: #F5F5F5;
}

.radio::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("../images/radio.svg") no-repeat center / contain;
}
 
.radio:checked::after {
    background-image: url("../images/radio_checked.svg");
}

.radio.error::after {
    background: url("../images/radio_error.svg") no-repeat center / contain;
}

.radio.error:checked::after {
    background-image: url("../images/radio_checked.svg");
}

/* 複数候補がある選択ボタン */
.btn_sel_group input[type="radio"] {
    display: none;
}
 
.btn_sel_txt,
.btn_sel_txt_half,
.btn_sel_square,
.btn_sel_square_sm,
.btn_sel_square_gender {
    display: inline-block;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: 16px;
    border: 1px solid var(--color_border_secondary, #BDBDBD);
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_secondary, #006E81);
    text-align: center;
    font-weight: 700;
    cursor: pointer;
}

.btn_sel_txt {
    height: 48px;
    padding: 10px 8px;
    font-size: var(--font-size-MS2, 16px);
/*    line-height: 130%; /* 20.8px */
}

.btn_sel_txt:hover {
    background: rgba(229, 251, 255, 0.30);
}

.btn_sel_group input[type="radio"]:checked + label {
    border: 1px solid #006E81;
    background: var(--color_bg_secondary, #E5FBFF);
}

.btn_sel_txt_half {
    width: 157px;
    height: 48px;
    padding: 10px 8px;
    font-size: var(--font-size-MS2, 16px);
}

.btn_sel_txt_half:hover {
    background: rgba(229, 251, 255, 0.30);
}

.btn_sel_square {
    width: 80px;
    height: 80px;
    padding: 18px 10px;
    font-size: var(--font-size-XXL, 30px);
    line-height: 140%; /* 42px */
}

.btn_sel_square:hover {
    background: rgba(229, 251, 255, 0.30);
}

.btn_sel_square_sm {
    width: 56px;
    height: 56px;
    padding: 11px 10px;
    font-size: var(--font-size-ML2, 24px);
    line-height: 140%; /* 33.6px */
}

.btn_sel_square_sm:hover {
    background: rgba(229, 251, 255, 0.30);
}

.btn_sel_square_gender {
    width: 80px;
    height: 80px;
    padding: 28px 10px;
    font-size: var(--font-size-M2, 18px);
    line-height: 140%; /* 25.2px */
}

.btn_sel_square_gender:hover {
    background: rgba(229, 251, 255, 0.30);
}

/* 入力フォーム（Tag） */
.tag_yellow,
.tag_white {
    display: inline-block;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--color_txt_primary, #424242);
    font-size: var(--font-size-S, 12px);
    font-weight: 700;
    line-height: 130%; /* 15.6px */
}

.tag_yellow {
    background: var(--color_accent_primary, #FFFA8B);
}

.tag_white {
    background: var(--color_bg_primary, #FFF);
}

/* 入力フォーム（プルダウン選択） */
.sel_inactive,
.sel_active,
.sel_error,
.sel_disable {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: flex;
    height: 64px;
    padding: 21.5px 60px 21.5px 12px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    border-radius: 12px;
    outline: 0;
    cursor: pointer;
    text-overflow: ellipsis;
    background-color: var(--color_bg_primary, #FFF);
    background: url("../images/arrow_down.svg") no-repeat right 10px center;
    color: var(--color_txt_primary, #424242);
    font-family: var(--font-family-default, "Noto Sans JP");
    font-size: var(--font-size-MS2, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}

.sel_error {
    border: 1px solid var(--txtfield_error_border, #F44336);
    background-color: rgba(244, 67, 54, 0.10);
}

.sel_inactive:focus,
.sel_active:focus,
.sel_error:focus {
    background-color: var(--color_bg_primary, #FFF);
    background: url("../images/arrow_up.svg") no-repeat right 10px center;
    border: 1px solid var(--color_txt_tertiary, #757575);
}

.sel_disable {
    background-color: #F5F5F5;
    color: #9E9E9E;
    cursor: auto;
}

/* 入力フォーム（テキスト入力） */
.txt_inactive,
.txt_error,
.txt_disable {
    display: flex;
    height: 64px;
    padding: 8px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    border-radius: 12px;
    outline: 0;
    background-color: var(--color_bg_primary, #FFF);
    color: var(--color_txt_primary, #424242);
    font-size: var(--font-size-MS2, 16px);
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #BDBDBD;
}

::-moz-placeholder {
    color: #BDBDBD;
}

::-ms-input-placeholder {
    color: #BDBDBD;
}

::placeholder {
    color: #BDBDBD;
}

.txt_error,
.txt_inactive.txt_error {
    border: 1px solid var(--txtfield_error_border, #F44336);
    background-color: rgba(244, 67, 54, 0.10);
}

.txt_inactive:focus,
.txt_error:focus {
    border: 1px solid var(--color_txt_tertiary, #757575);
    background-color: #FFFFFF;
}

.txt_disable {
    background-color: #F5F5F5;
    color: #9E9E9E;
    cursor: auto;
}

.txt_error_msg {
    color: var(--color_txt_error, #F44336);
    font-size: var(--font-size-S, 14px);
    line-height: 130%;
    padding-top: 12px;
}

/* ラジオボタン */
.opt_sel_radio_area {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.opt_sel_radio {
    display: flex;
    padding: 21.5px 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 0; 
    border: 1px solid var(--color_border_secondary, #BDBDBD);
    background: var(--color_bg_primary, #FFF);
    overflow: hidden;
    margin-top: -1px;
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
}

.opt_sel_radio:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.opt_sel_radio:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.opt_sel_radio_label {
    color: var(--color_txt_primary, #424242);
    font-size: var(--font-size-MS2, 16px);
    font-weight: 700;
    line-height: 130%; /* 20.8px */
    cursor: pointer;
}

.opt_sel_radio:hover {
    background: rgba(229, 251, 255, 0.30);
}

.opt_sel_radio_label:hover {
    background: rgba(229, 251, 255, 0.30);
}

.opt_sel_radio_area label:has(input[type="radio"]:checked), #insurance_option_b .flex_column > label:has(input[type="radio"]:checked) {
    border: 1px solid var(--color_border_tertiary, #0091AB);
    background: var(--color_bg_secondary, #E5FBFF);
    color: var(--color_txt_secondary, #006E81);
    z-index: 9;
}
.opt_sel_radio_area label:has(input[type="radio"]:checked) span, #insurance_option_b .flex_column > label:has(input[type="radio"]:checked) span {
    color: var(--color_txt_secondary, #006E81);
}


/* ポップアップ */
.popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color_bg_popup_scrim, rgba(0, 0, 0, 0.15));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup_overlay.is_open {
    visibility: visible;
    opacity: 1;
}

.popup,
.popup_scroll {
    width: 762px;
}

.popup_header {
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 64px;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 24px 24px 0 0;
    border-bottom: 1px solid var(--color_border_quaternary, #E0E0E0);
    background: var(--color_bg_primary, #FFF);
    color: var(--color_txt_primary, #424242);
    font-size: var(--font-size-M, 20px);
    font-weight: 700;
    line-height: 130%; /* 26px */
    box-sizing: border-box;
}

.popup_close {
    cursor: pointer;
    border: none;
    min-width: 24px;
    width: 24px;
    height: 24px;
    background: url("../images/popup_close.svg") no-repeat;
}

.popup_body {
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 0 0 24px 24px;
    background: var(--color_bg_primary, #FFF);
    max-height: 736px;
    overflow: hidden;
}

.popup_container {
    padding: 40px 32px;
    overflow-y: auto;
    max-height: min(736px, 80vh - 64px);
    box-sizing: border-box;
}

.popup_scroll_container {
    padding: 40px 32px;
    overflow-y: scroll;
    max-height: min(736px, 80vh - 64px);
    box-sizing: border-box;
}

.popup_scroll_container::-webkit-scrollbar-track {
    background: transparent;
}

.popup_scroll_container::-webkit-scrollbar-button {
    display: none;
}

.popup_scroll_container::-webkit-scrollbar-thumb {
    background: 5px solid var(--color_border_quaternary, #E0E0E0);
}

.popup_btn_wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--color_border_primary, #EEE);
    margin-top: 24px;
}
.popup_btn_wrapper:has(>:nth-child(2):last-child) button {
    max-width: 230px;
}

/* プランで使用するテーブル */
.graph_plan_tbl {
    border: 1px solid var(--color_border_quaternary, #E0E0E0);
    border-radius: 24px;
}

.graph_title_lg,
.graph_plan_tbl_desc_lg,
.graph_plan_tbl_total_lg {
    display: flex;
    align-items: center;
}

.graph_title_lg_left,
.graph_title_lg_right,
.graph_plan_tbl_desc_lg_left,
.graph_plan_tbl_desc_lg_right,
.graph_plan_tbl_total_lg_left,
.graph_plan_tbl_total_lg_right {
    display: block;
    padding: 24px 40px;
    align-items: center;
    align-self: stretch;
    overflow: hidden;
    color: var(--color_txt_primary, #424242);
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.graph_title_lg_right,
.graph_plan_tbl_desc_lg_right,
.graph_plan_tbl_total_lg_right {
    border-left: 1px solid var(--color_border_quaternary, #E0E0E0);
}

.graph_title_lg_left,
.graph_title_lg_right,
.graph_plan_tbl_desc_lg_left,
.graph_plan_tbl_desc_lg_right {
    border-bottom: 1px solid var(--color_border_quaternary, #E0E0E0);
}

.graph_title_lg_left {
    background: #F5F5F5;
    width: 716px;
    min-width: 80px;
    border-radius: 24px 0 0 0;
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.graph_title_lg_right {
    background: #F5F5F5;
    width: 260px;
    border-radius: 0 24px 0 0;
    text-align: center;
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.graph_plan_tbl_desc_lg_left {
    background: var(--color_bg_primary, #FFF);
    width: 716px;
    min-width: 80px;
    font-size: var(--font-size-MS2, 16px);
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}

.graph_plan_tbl_desc_lg_right {
    background: var(--color_bg_primary, #FFF);
    width: 260px;
    text-align: right;
    font-size: var(--font-size-MS2, 16px);
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}

.graph_plan_tbl_total_lg_left {
    background: var(--color_bg_primary, #FFF);
    width: 716px;
    min-width: 80px;
    border-radius: 0 0 0 24px;
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.graph_plan_tbl_total_lg_right {
    background: var(--color_bg_primary, #FFF);
    width: 260px;
    border-radius: 0 0 24px 0;
    text-align: right;
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.insurance.error {
    background-color: var(--color-txtfield_error_bg, rgba(244, 67, 54, 0.10)) !important;
    border-color: var(--color-txtfield_error_border, #F44336) !important;
}

/* PC限定用 */
@media screen and (min-width:1024px) {
    .sp_only {
        display: none !important;
    }

    .fixed_header.border_gradation {
        border-bottom: 4px solid transparent;
        border-image: var(--color_bg_gradation, linear-gradient(96deg, #FFFA86 12.62%, rgba(255, 250, 134, 0.65) 31.84%, rgba(196, 255, 174, 0.50) 51.05%, rgba(179, 245, 243, 0.65) 70.27%, #B3F5F3 89.48%));
        border-image-slice: 1;
    }
}

/* スマホ用 */
@media screen and (max-width:1023px) {
    :root {
        /* フォントサイズ */
        --font-size-XL:   24px;
        --font-size-L:    22px;
        --font-size-ML:   20px;
        --font-size-ML2:  20px;
        --font-size-M:    16px;
        --font-size-M2:   16px;
        --font-size-MS:   14px;
        --font-size-MS2:  14px;
        --font-size-S:    12px;
        --font-size-XS:   11px;
        --font-size-XXS:  10px;
    }

    .pc_only {
        display: none !important;
    }

    .container_main {
        padding-top: 0;
        width: 100%;
    }

    .container_single {
        width: 100%;
        max-width: 832px;
        padding: 0px 16px;
   }

   .container_basic_info {
        padding: 16px;
        gap: 16px;
        border-radius: 8px;
   }
   
   .tab_label {
        display: flex;
        height: 44px;
        padding: 4px 10px;
        flex: 1 0 0;
   }

    .btn_lg_primary,
    .btn_lg_primary_disable,
    .btn_lg_secondary,
    .btn_lg_secondary_disable,
    .btn_lg_in_typing {
        max-width: 358px;
        height: 52px;
        padding: 0 8px;
        border-radius: 24px;
        font-size: var(--font-size-M2, 16px);
    }
    
    .btn_lg_primary_2l,
    .btn_lg_primary_2l_disable,
    .btn_lg_secondary_2l,
    .btn_lg_secondary_2l_disable {
        max-width: 358px;
        height: 52px;
        padding: 0 8px;
        gap: 2px;
        border-radius: 32px;
    }
    
    .btn_lg_primary_2l div:first-child,
    .btn_lg_primary_2l_disable  div:first-child,
    .btn_lg_secondary_2l div:first-child,
    .btn_lg_secondary_2l_disable div:first-child {
        font-size: var(--font-size-XS, 11px);
        font-weight: 500;
        line-height: 120%; /* 13.2px */
    }
     
    .btn_lg_primary_2l div:nth-child(2),
    .btn_lg_primary_2l_disable  div:nth-child(2),
    .btn_lg_secondary_2l div:nth-child(2),
    .btn_lg_secondary_2l_disable div:nth-child(2) {
        font-size: var(--font-size-MS2, 14px);
        font-weight: 700;
        line-height: 130%; /* 18.2px */
    }
    
    .btn_md_primary,
    .btn_md_primary_disable,
    .btn_md_secondary,
    .btn_md_secondary_disable {
        font-size: var(--font-size-MS2, 14px);
        height: 48px;
        padding: 0 8px;
        border-radius: 24px;
    }
    
    .btn_sm_primary,
    .btn_sm_secondary,
    .btn_sm_tertiary,
    .btn_sm_quaternary,
    .btn_sm_quinary {
        height: 28px;
        padding: 0 8px;
        gap: 2px;
        font-size: var(--font-size-S, 12px);
        line-height: 130%; /* 15.6px */
    }
    
    .btn_sm_quaternary {
        padding: 0px 8px 0px 6px;
    }
    
    .chk_bubble_unchecked,
    .chk_bubble_disable {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 24px;
        font-size: var(--font-size-MS, 14px);
        font-weight: 700;
        line-height: 130%; /* 18.2px */
    }

    .chk_border_unchecked,
    .chk_border_disable {
        height: 52px;
        padding: 16px 16px 16px 8px;
        font-size: var(--font-size-MS2, 14px);
    }
    
	/* コンテナ（淡い水色）用 */
	.chk_paleblue,
	.container_paleblue {
	    border-radius: 12px;
	    gap: 16px;
	    max-width: 800px;
	}

    .btn_sel_txt {
        width: 310px;
        height: 48px;
        padding: 8px;
        font-size: var(--font-size-MS2, 14px);
    }

    .btn_sel_txt_half {
        width: 143px;
        height: 48px;
        padding: 14px 10px;
        font-size: var(--font-size-MS2, 14px);
        gap: 10px;
        line-height: 130%; /* 18.2px */
    }

    .btn_sel_square {
        width: 72px;
        height:72px;
        padding: 10px;
        gap: 10px;
        font-size: var(--font-size-XXL, 30px);
        align-items: center;
        flex-shrink: 0;
        border-radius:16px;
    }

    .btn_sel_square_gender {
        width: 72px;
        height:72px;
        gap: 10px;
        padding: 22px 10px;
        font-size: var(--font-size-M2, 16px);
        line-height: 140%; /* 22.4px */
    }
    .btn_sel_square_sm {
        width: 48px;
        height:48px;
        padding: 8px;
        font-size: var(--font-size-ML2, 20px);
        line-height: 140%; /* 28px */
    }
    
    .sel_inactive,
    .sel_active,
    .sel_error,
    .sel_disable {
        width: 358px;
        height: 48px;
        padding: 15px 44px 15px 12px;
        gap: 6px;
        font-size: var(--font-size-MS2, 14px);
    }
    
    .txt_inactive,
    .txt_error,
    .txt_disable {
        width: 358px;
        height: 48px;
        padding: 16px 12px;
        gap: 8px;
        font-size: var(--font-size-MS2, 14px);
    }
    
    .txt_inactive {
        border: 1px solid var(--color_border_quaternary, #E0E0E0);
        background: var(--color_bg_primary, #FFF);
    }

    .txt_inactive:focus {
        font-size: var(--font-size-M2, 16px);
    }

    ::-webkit-input-placeholder {
        font-size: var(--font-size-MS2, 14px);
    }

    ::-moz-placeholder {
        font-size: var(--font-size-MS2, 14px);
    }
    
    ::placeholder {
        font-size: var(--font-size-MS2, 14px);
    }
    
    .txt_error_msg {
        line-height: 120%;
        padding-top: 8px;
    }

    .popup,
    .popup_scroll {
        width: 100%;
        max-width: 435px;
        margin: 0 24px;
    }

    .popup_header {
        padding: 0 16px;
        gap: 8px;
    }

    .popup_body {
        border-radius: 0 0 24px 24px;
        max-height: 464px;
    }

   .popup_container {
        padding: 24px 20px;
        gap: 20px;
        font-size: var(--font-size-MS, 14px);
        font-weight: 400;
        line-height: 150%; /* 21px */
        max-height: min(464px, 70vh - 64px);
   }

   .popup_scroll_container {
        padding: 24px 20px;
        font-size: var(--font-size-MS, 14px);
        font-weight: 400;
        line-height: 150%; /* 21px */
        max-height: min(464px, 70vh - 64px);
    }

    .popup_btn_wrapper {
        gap: 8px;
        padding-top: 16px;
    }

    .graph_plan_tbl {
        border-radius: 8px;
    }

    .graph_title_lg_left,
    .graph_title_lg_right,
    .graph_plan_tbl_desc_lg_left,
    .graph_plan_tbl_desc_lg_right,
    .graph_plan_tbl_total_lg_left,
    .graph_plan_tbl_total_lg_right {
        padding: 16px;
    }
    
    .graph_plan_tbl,
    .graph_title_lg,
    .graph_plan_tbl_desc_lg,
    .graph_plan_tbl_total_lg {
        width: 100%;
    }
    
   .graph_title_lg_left {
        width: 72%;
        gap:4px;
        font-size: var(--font-size-MS2, 14px);
        flex: 1 0 0;
        border-radius: 8px 0 0 0;
   }
   
   .graph_title_lg_right {
        width: 28%;
        gap:4px;
        font-size: var(--font-size-MS2, 14px);
        border-radius: 0 8px 0 0;
   }
    
   .graph_plan_tbl_desc_lg_left {
        width: 72%;
        gap:4px;
        padding: 12px 16px;
        font-size: var(--font-size-MS2, 14px);
        flex: 1 0 0;
   }
   
   .graph_plan_tbl_desc_lg_right {
        width: 28%;
        gap:0px;
        padding: 12px 16px;
        font-size: var(--font-size-MS2, 14px);
   }
   
   .graph_plan_tbl_total_lg_left {
        width: 72%;
        gap:4px;
        font-size: var(--font-size-MS2, 14px);
        border-radius: 0 0 0 8px;
   }
   
   .graph_plan_tbl_total_lg_right {
        width: 28%;
        gap:4px;
        font-size: var(--font-size-MS2, 14px);
        border-radius: 0 0 8px 0;
   }
    .opt_sel_radio {
        padding: 10px 16px;
    }
}

/* 共通パーツ類 */
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pd_header_ptn_a1 {                  /* パターンA・タイトルなし */
    padding-top: 121px;
}

.pd_header_ptn_a1_band {            /* パターンA・タイトルなし・帯あり */
    padding-top: 149px;
}

.pd_header_ptn_a2 {                 /* パターンA・タイトルあり */
    padding-top: 177px;
}

.pd_header_ptn_a2_band {            /* パターンA・タイトルあり・帯あり */
    padding-top: 205px;
}

.pd_header_ptn_a1_sp_a2 {           /* パターンA・PCタイトルなしSPタイトルあり */
    padding-top: 121px;
}

.pd_header_ptn_a1_sp_a2_band {      /* パターンA・PCタイトルなしSPタイトルあり・帯あり */
    padding-top: 149px;
}

.pd_footer_ptn_a1 {
    padding-bottom: 0px;
}

.pd_header_ptn_b1 {                 /* パターンB・タイトルなし */
    padding-top: 64px;
}

.pd_header_ptn_b1_band {            /* パターンB・タイトルなし・帯あり */
    padding-top: 93px;
}

.pd_header_ptn_b2 {                 /* パターンB・タイトルあり */
    padding-top: 120px;
}

.pd_header_ptn_b2_band {            /* パターンB・タイトルあり・帯あり */
    padding-top: 149px;
}

.pd_header_ptn_b1_sp_b2 {           /* パターンB・PCタイトルなしSPタイトルあり */
    padding-top: 64px;
}

.pd_header_ptn_b1_sp_b2_band {      /* パターンB・PCタイトルなしSPタイトルあり・帯あり */
    padding-top: 93px;
}

.pd_footer_ptn_b1 {
    padding-bottom: 0px;
}

.support_login_band,
.supporter_login_band,
.dairinin_login_band {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    height: 28px;
    width: 100%;
    z-index: 9999;
    background-color: #EEE;
    justify-content: center;
    align-items: center; 
    color: var(--color_txt_error, #F44336);
    font-size: var(--font-size-MS, 14px);
    font-weight: 700;
    line-height: 130%;
}

.fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color_bg_primary, #FFF);
    padding: 16px 40px 0px 40px;
    color: var(--color_txt_primary, #424242);
    box-sizing: border-box;
    z-index: 998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--color_border_primary, #EEE);
}

.fixed_header.with_band {
    top: 28px;
}

.header_help,
.header_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_help {
    height: 48px;
    width: 100%;
}

.header_title {
    height: 56px;
    width: 976px;
    padding-left: 16px;
    padding-right: 16px;
}

.header_help_right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header_title_right {
    display: flex;
    gap: 8px;
}

.header_hr {
    margin: 0px -40px;
    width: calc(100% + 80px);
    border: 1px solid var(--color_border_primary, #EEE);
}

.sl_logo {
    display: flex;
    width: 120px;
}

.icons {
    display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.btn_icon_mail {
    position: relative;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    background-color: var(--color_bg_primary, #FFF);
}

.unread_mark {
    position: absolute;
    top: 0px;
    right: 0px;
}

.navigation_top {
    width: 976px;
    height: 56px;
    background-color: var(--color_bg_primary, #FFF);
    box-sizing: border-box;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin: 0 auto;
}

.navigation_link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.navigation_item {
    display: flex;
    padding: 4px 32px 4px 24px;
    justify-content: center;
    align-items: center;
    color: var(--color_txt_primary, #424242);
    text-align: center;
    font-size: var(--font-size-MS2, 16px);
    font-weight: 700;
    line-height: 130%; /* 20.8px */
    gap: 8px;
    flex: 1 0 0;
    border-right: 1px solid var(--color_border_quaternary, #E0E0E0);
    cursor: pointer;
}

.navigation_item:first-child {
    border-left: 1px solid var(--color_border_quaternary, #E0E0E0);
}

.navigation_bottom {
    display: none;
}

.container_menu,
.container_procedure {
    display: none;
    padding: 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../images/Background-Gradation.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.container_subheader {
    display: flex;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 48px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 0 0 0 32px;
    background: var(--color_bg_gradation, linear-gradient(96deg, #FFFA86 12.62%, rgba(255, 250, 134, 0.65) 31.84%, rgba(196, 255, 174, 0.50) 51.05%, rgba(179, 245, 243, 0.65) 70.27%, #B3F5F3 89.48%));
}

.subheader_wrapper {
    width: 976px;
}

.btn_icon_quaternary {
    display: inline-flex;
    padding: 8px 8px 8px 4px;
    height: 34px;
    align-items: center;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.80);
    color: var(--color_txt_tertiary, #757575);
    font-size: var(--font-size-MS2, 14px);
    font-weight: 700;
    line-height: 130%; /* 18.2px */
    cursor: pointer;
}

.btn_icon_quaternary::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background: url("../images/arrow_left.svg") no-repeat center;
}

.subheader_back {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.subheader_title {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.subheader_title_icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.subheader_title_icon img {
    width: 36px;
    height: 36px;
    display: block;
}

.subheader_icon_question {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 3px;
    margin-left: 16px;
    justify-content: center;
    align-items: center;
    background: url("../images/question.svg") no-repeat center;
}

.stepbar_pc {
    display: flex;
    margin-left: auto;
}

.stepbar_sp {
    display: none;
}

.progress_wrapper {
    height: 72px;
    box-shadow: 0px 2px 10px 0px #D9D9D980;
    border-radius: 32px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: var(--color_bg_primary, #FFF);
}

.progress {
    width: 40px;
    height: 32px;
}

.progress_active {
    padding: 0;
    height: 56px;
    border-radius: 32px;
    background: #E5FBFF;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.progress_number {
    flex-shrink: 0;
    margin-left: 4px;
    width: 32px;
    height: 32px;
    padding-top: 5px;
    background-color: var(--color_border_quinary, #A9D2D9);
    color: var(--color_bg_primary, #FFF);
    font-size: var(--font-size-MS2, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
}

.progress_active .progress_number {
    background-color: var(--color_bg_tertiary, #0091AB);
}

.progress_last .progress_number {
    margin: 0;
    width: 48px;
    border-radius: 32px;
}

.progress_name {
    margin-left: 6px;
    max-width: 126px;
    color: #2F4858;
    font-size: var(--font-size-S, 12px);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.progress_line {
    margin: 0;
    width: 20px;
    height: 4px;
    border: none;

    background-color: var(--color_border_quinary, #A9D2D9);
    color: var(--color_bg_primary, #FFF);
}

.container_bottom_logo {
    display: flex;
    margin-top: 165px;
    padding: 16px 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
    align-self: stretch;
    border-top: 3px solid #094;
    background: var(--color_bg_primary, #FFF);
    position: static;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
}

.brandlogo {
    width: 216px;
}

.container_links {
    width: 100%;
    margin-top: 40px;
    padding: 16px 40px;
}

/* コンテナ（淡い水色）用 */
.container_paleblue{
	width: 100%;
	border: 2px solid var(--color_border_tertiary, #0091AB);
	background-color: var(--color_bg_secondary, #E5FBFF);
	box-sizing:border-box;
	border-radius: 16px;
	gap: 32px;
}

.page_close_area {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
}

.btn_close {
    display: flex;
    padding: 12px 16px 12px 8px;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.80);
    cursor: pointer;
}

.close_label {
    color: var(--color_txt_tertiary, #757575);
    text-align: center;
    font-size: var(--font-size-MS2, 16px);
    font-weight: 700;
    line-height: 130%; /* 20.8px */
    cursor: pointer;
}

.page_title_area_procedure,
.page_title_area_menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.page_title_area_procedure {
    margin-top: 48px;
}

.page_title_area_menu {
    margin-top: 40px;
}

.page_title_procedure,
.page_title_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--color_txt_primary, #424242);
    font-size: var(--font-size-M, 20px);
    font-weight: 700;
    line-height: 130%; /* 26px */
    width: 100%;
}

.menu_items {
    width: 100%;
}

.menu_items .item_link {
    text-decoration: none;
}

.menu_items .item_link:last-child .menu_item {
    border-bottom: none;
}

.menu_item {
    display: flex;
    padding: 24px 0px;
    justify-content: space-between;
    width: 100%;
    color: var(--color_txt_primary, #424242);
    gap: 16px;
    border-bottom: 1px solid var(--color_border_primary, #EEE);
    background: var(--color_bg_primary, #FFF);
    cursor: pointer;
}

.menu_item .item_main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu_item .item_title {
    font-size: var(--font-size-M2, 18px);
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.menu_item .item_desc {
    font-size: var(--font-size-S, 14px);
    font-weight: 500;
    line-height: 130%; /* 18.2px */
}

.text_decoration_none {
    color: inherit;
    text-decoration: none;
}

/* ピンク帯上のエラーメッセージ */
.error_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;/* vw */
    padding: 24px 0;
    margin: 0;
    background-color: var(--color-txtfield_error_bg, #F4433619);
}
.error_area .error_msg {
    box-sizing: border-box;
    width: 976px;
    font-family: var(--font-family-default, 'Noto Sans JP');
    font-size: var(--font-size-MS, 18px);
    font-weight: 700;
    line-height: 130%;
    color: var(--color_txt_error, #F44336);
}

/* PC限定用 */
@media screen and (min-width:1024px) {
    .color_bg_image_common_info{
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-image: url('../images/Background-Gradation.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
	    margin-bottom: -165px;
	    padding-bottom: 165px;
    }
}

@media screen and (max-width: 1023px) {
    .pd_header_ptn_a1 {                 /* パターンA・タイトルなし */
        padding-top: 49px;
    }

    .pd_header_ptn_a1_band {            /* パターンA・タイトルなし・帯あり */
        padding-top: 77px;
    }

    .pd_header_ptn_a2 {                 /* パターンA・タイトルあり */
        padding-top: 103px;
    }

    .pd_header_ptn_a2_band {            /* パターンA・タイトルあり・帯あり */
        padding-top: 131px;
    }

    .pd_header_ptn_a1_sp_a2 {           /* パターンA・PCタイトルなしSPタイトルあり */
        padding-top: 103px;
    }

    .pd_header_ptn_a1_sp_a2_band {      /* パターンA・PCタイトルなしSPタイトルあり・帯あり */
        padding-top: 131px;
    }

    .pd_footer_ptn_a1 {
        padding-bottom: 110px;
    }

    .pd_header_ptn_b1 {                 /* パターンB・タイトルなし */
        padding-top: 49px;
    }

    .pd_header_ptn_b1_band {            /* パターンB・タイトルなし・帯あり */
        padding-top: 77px;
    }

    .pd_header_ptn_b2 {                 /* パターンB・タイトルあり */
        padding-top: 103px;
    }

    .pd_header_ptn_b2_band {            /* パターンB・タイトルあり・帯あり */
        padding-top: 131px;
    }

    .pd_header_ptn_b1_sp_b2 {           /* パターンB・PCタイトルなしSPタイトルあり */
        padding-top: 103px;
    }

    .pd_header_ptn_b1_sp_b2_band {      /* パターンB・PCタイトルなしSPタイトルあり・帯あり */
        padding-top: 131px;
    }

    .pd_footer_ptn_b1 {
        padding-bottom: 0px;
    }

    .fixed_header {
        padding: 0px 16px;
        border-image: none;
        border-color: var(--color_border_primary, #EEE);
    }

    .header_help {
        height: 48px;
    }

    .header_title {
        height: 54px;
        width: 100%;
        max-width: 800px;
    }

    .header_help_right {
        gap: 8px;
    }

    .navigation_link {
        flex-grow: initial;
    }

    .navigation_top {
        display: none;
    }

    .navigation_bottom_border {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 94px;
        border-radius: 12px 12px 0px 0px;
        box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.10);
        background: var(--color_bg_gradation, linear-gradient(96deg, #FFFA86 12.62%, rgba(255, 250, 134, 0.65) 31.84%, rgba(196, 255, 174, 0.50) 51.05%, rgba(179, 245, 243, 0.65) 70.27%, #B3F5F3 89.48%)), #FFF;
    }

    .navigation_bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 87px;
        background-color: #FFF;
        padding: 4px 20px;
        color: var(--color_txt_primary, #424242);
        box-sizing: border-box;
        border-radius: 12px 12px 0px 0px;
        z-index: 998;
        display: flex;
        justify-content: center;
    }

    .navigation_bottom_inner {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 800px;
    }

    .navigation_item {
        width: 50px;
        height: 50px;
        padding: 0;
        flex-shrink: 0;
        border: none;
        color: var(--color_txt_quinary, #9E9E9E);
    }

    .navigation_item:first-child {
        border: none;
    }

    .navigation_item_inner,
    .navigation_item_inner_l6 {
        display: flex;
        width: 50px;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
        font-size: var(--font-size-XXS, 10px);
    }

    .navigation_item_inner img {
        width: 24px;
        height: 24px;
    }

    .navigation_item_inner_l6 {
        width: 60px;
    }

    .navigation_item_inner_l6 img {
        width: 24px;
        height: 24px;
    }

    .container_subheader {
        margin-bottom: 24px;
    }

    .container_bottom_logo {
        margin-top: 40px;
    }

    .subheader_wrapper {
        width: 100%;
        max-width: 832px;
    }

    .subheader_back {
        padding-left: 16px;
    }

    .subheader_title {
        padding: 0 20px;
    }

    .subheader_title_icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        margin-right: 4px;
    }

    .subheader_title_icon img {
        width: 24px;
        height: 24px;
        display: block;
    }

    .subheader_icon_question {
        width: 20px;
        height: 20px;
        padding: 2.5px;
        margin-left: 8px;
    }

    .stepbar_pc {
        display: none;
    }

    .stepbar_sp {
        display: flex;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .progress_wrapper {
        height: 56px;
        border-radius: 24px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .progress {
        width: 28px;
        height: 24px;
    }

    .progress_active {
        height: 40px;
        border-radius: 24px;
        padding: 0 8px;
    }

    .progress_number {
        flex-shrink: 0;
        margin-left: 2px;
        width: 24px;
        height: 24px;
        padding-top: 2px;
    }

    .progress_active .progress_number {
        background-color: var(--color_bg_tertiary, #0091AB);
    }

    .progress_last .progress_number {
        margin: 0;
        width: 44px;
        border-radius: 24px;
        flex-shrink: 0;
    }

    .progress_name {
        max-width: 116px;
    }

    .progress_line {
        width: 13px;
        height: 2px;
    }

    .brandlogo {
        width: 138px;
    }

    .chk_bubble_unchecked::after {
        bottom: -0.3rem;
    }

    .chk_bubble_disable::after {
        bottom: -0.3rem;
    }

    .page_close_area {
        margin-top: 24px;
    }

    .page_title_area_procedure {
        margin-top: 24px;
    }

    .page_title_area_menu {
        margin-top: 20px;
    }

    .container_links {
        margin-top: 20px;
        padding: 8px 20px;
    }

    .btn_close {
        padding: 6px 8px 6px 8px;
        gap: 4px;
        border-radius: 6px;
    }

    .menu_item {
        padding: 16px 0px;
    }

    .menu_item .item_main {
        gap: 4px;
    }

/* ピンク帯上のエラーメッセージ */
    .error_area {
        padding: 16px;
    }
    .error_area .error_msg {
        width: 100%;
        max-width: 800px;
        padding: 0;
    }
    
    .color_bg_image_common_info{
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-image: url('../images/Background-Gradation.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
	    margin-bottom: -40px;
	    padding-bottom: 40px;
    }
}

.flex_column {
    display: flex;
    flex-direction: column;
}