body{
    width: 100%;
    height: 100%;
    background: rgba(243, 243, 243, 1);
}

#main_page{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 1080px;
}

/* apl_reclip_page --ここから----------------------------------------- */
#apl_reclip_page{
    position: relative;
    display: flex;
    flex-direction: column;
}

.apl_titlebar{
    display: flex;
    height: 32px;
    background: #F3F3F3;
}

.apl_title{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 8px 0px 12px;
    gap: 16px;
}

.apl_title_text{
    font-family: 'Yu Gothic UI';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.8956);
}

.apl_reclip_body{
    display: flex;
}

.apl_reclip_left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 208px;
    /* height: 90vh; */
    background: #F3F3F3;
}

.menu_list_selected{
    position: absolute;
    left: 5px;
    right: 5px;
    top: 3px;
    bottom: 3px;
    background: rgba(0, 0, 0, 0.0373);
    border: 1px solid rgba(0, 0, 0, 0.0373);
    border-radius: 3px;
}

.menu{
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.3614);
    gap:10px;
}

.menu_selector{
    width: 3px;
    height: 16px;
    border-radius: 999px;
    background: #005FB8;
}

.menu_icon{
    font-family: 'Segoe Fluent Icons';
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.3614);
    border-radius: 2px;
}

.menu_text{
    font-family: 'Yu Gothic UI';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.3614);
}

.smaphobkup_area{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 226px;
    width: 208;
}

.smaphobkup_button{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;/*140px;*/
    height: 96px; /*136px;*/
    padding: 20px;
    gap: 10px;
    background: rgba(249, 249, 249, 0.3);
    border-radius: 8px;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(0, 0, 0, 0.0578) 90.58%, rgba(0, 0, 0, 0.1622) 100%);
    border-image-slice: 1;
}

.smaphobkup_button_img{
    width: 56px;
    height: 56px;
    filter: opacity(20%);
}

.smaphobkup_button_text{
    width: 100px;
    height: 32px;
    font-family: 'Yu Gothic UI';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.3614);
    border-radius: 2px;
}

.apl_reclip_center{
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-height: 800px; /*ガタツキ対策で仮の調整*/
    background: rgb(255, 255, 255, 0.5);
    padding: 36px;
    border-top-left-radius: 7px;
}

.recommend_header{
    display: flex;
    align-items: center;
    gap: 16px;
    width: 406.5px;
    height: 36px;
    font-family: 'Yu Gothic UI';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.8956);
}

.recommend_category{
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    /* gap: 16px; */
    width: 762px;
}

.category_box{
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.category_img{
    width: 208px;
    /* height: 156px; */
    background: rgba(0, 0, 0, 0.0241);
    border-radius: 6px; /*4px; captionがはみ出して見えるので調整 */
    box-sizing: border-box; /* 枠を含めてサイズを計算 */
    /* padding: 3px; */
}

.category_caption_text{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 208px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0px 0px 8px 8px;
    bottom: 0px;
    color: white;
    pointer-events: none; /*クリックを有効にするため必要*/
 }

.recommend_category img.selected {
    outline: 2px solid rgba(0, 95, 184, 1);
    /* outline-offset: 3px;      枠と画像の間隔 */
    outline-offset: 6px;
    border-radius: 6px;
}

/* SVGをボタンの外枠に合わせる */
.border_anim_category_box {
    position: absolute;
    width: calc(100% + 24px);   /* 横幅を+24px */
    height: calc(100% + 24px);  /* 高さを+24px */
    top: -12px;    /* 上に12pxずらす */
    left: -12px;   /* 左に12pxずらす */
    pointer-events: none;
}

.animate_category_box {
    animation: drawBorder_category_box 3s ease-in-out infinite;
}

@keyframes drawBorder_category_box {
    0%   { stroke-dashoffset: 728; opacity: 1; }
    50%  { stroke-dashoffset: 0;   opacity: 1; }
    100% { stroke-dashoffset: -728; opacity: 0; }
}

.recommend_img_area_header{
    display: flex;
    justify-content: space-between;
}

.recommend_category_caption{
    display: flex;
    align-items: center;
}

#recommend_category_caption_text{
    height: 28px;
    font-family: 'Yu Gothic UI';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.8956);
}

#auto_select_button{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px 10px;
    width: 96px; /*128px-16px-16px;*/
    height: 20px; /*38px-8px-10px;*/
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    /* border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(0, 0, 0, 0.0578) 90.58%, rgba(0, 0, 0, 0.1622) 100%);
    border-image-slice: 1; */
    cursor: pointer;
}

.auto_select_button_text{
    font-family: 'Yu Gothic UI';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-feature-settings: 'rclt' off;
    color: rgba(0, 0, 0, 0.8956);
    border-radius: 2px;
}

#recommend_image_table {
    display: flex;
    flex-wrap: wrap;         /* 折り返しを有効にする */
    justify-content: flex-start;
    gap: 8px;               /* セル間の余白 */
}

.image_cell {
    position: relative;
    width: 140px;            /* 固定幅で並べる */
    flex-grow: 0;
    flex-shrink: 0;
}

.image_cell img {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
}

.apl_reclip_right{
    /* position: relative; */
    width: 274px;
    /* background: #000000; */
    /* border-radius: 24px; */
    background: rgb(255, 255, 255, 0.5);
}

.AIBasketBackground{
    width: 274px;
    height: 800px;/*ざっくりAIBasket内のコンテンツの高さは30 + (110*6) + 50 = 740*//*95%;*/
    border-radius: 24px;
}

.AIBasket_area{
    position: relative;
        border-radius: 24px;
    /* padding-top: 31px;
    padding-bottom: 31px; */
    margin-top: 31px;
    margin-bottom: 31px;
}


.AIBasket{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 243px;
    height: 600px; 
    left: 16px;
    top: 26px;
    color: black;
}

.AIBasket_header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.empty_basket_text{
    height: 20px;
    font-family: 'Yu Gothic UI';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-feature-settings: 'fina' on, 'init' on;
    color: #000000;
}

.AIBasket_header_icon{
    font-family: 'Segoe Fluent Icons';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.85);
}

.AIBasket_header_text{
    height: 28px;
    font-family: 'Yu Gothic UI';
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.85);
}

#AIBasket_image_table{
    display: flex;
    align-items: center;
    height: 100%;
}

.empty_basket_notice{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 242px;
    gap: 9px;
}

.empty_basket_icon{
    width: 32.5px;
    height: 32.5px;
}

/* .start_make_movie_button_area{
    position: fixed;
    bottom: 100px;
    padding-left: 31px;
} */

.start_make_movie_button_area{
    position: absolute;
    bottom: 20px;
    padding-left: 31px;
}

#start_make_movie_button{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 11px 6px;
}

.border_anim_btn{
    width: 188px;
    height: 32px;
    border-radius: 3px;

    /* 影を追加 */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.border_anim_btn.disabled{
    background: rgba(249, 249, 249, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.0578);
    pointer-events: none; /* ←クリック無効化 */
}
.border_anim_btn.enabled{
    background: rgba(255, 255, 255, 0.9);
    /* border-image-source: linear-gradient(180deg, rgba(0, 0, 0, 0.0578) 90.58%, rgba(0, 0, 0, 0.1622) 100%); */
    /* border-image-slice: 1; */
    cursor: pointer;
}

.start_make_movie_button_text{
    font-family: 'Yu Gothic UI';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-feature-settings: 'rclt' off;
    color: rgba(0, 0, 0, 0.8956);
    border-radius: 2px;
}

/* SVGをボタンの外枠に合わせる */
.border_anim {
    position: absolute;
    width: calc(100% + 10px);   /* 横幅を+10px */
    height: calc(100% + 10px);  /* 高さを+10px */
    top: -5px;    /* 上に5pxずらす */
    left: -5px;   /* 左に5pxずらす */
    pointer-events: none;
}

.animate {
    animation: drawBorder 3s ease-in-out infinite;
}

@keyframes drawBorder {
    0%   { stroke-dashoffset: 430; opacity: 1; }
    50%  { stroke-dashoffset: 0;   opacity: 1; }
    100% { stroke-dashoffset: -430; opacity: 0; }
}

#trial_point1{
    position: absolute;
    left: 90px;
    top: 344px;
    gap: 32px;
}

#trial_point2{
    position: absolute;
    left: 695px;
    top: 369px;
    gap: 32px;
}

.point_block{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 42px;
    gap: 16px;

    box-sizing: border-box;
    background: #FFFFFF;
    border: 4px solid #1A1A1A;
    border-radius: 24px;
}

.point_title{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    min-width: 252px;
    height: 45px;
    /* left: 139px; */
    top: -35px; /*-19px;*/
    background: #333333;
    border-radius: 99px;
}

.point_title_text{
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

.point_text{
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    width: 430px;
    color: #4D4D4D;
}

.operation_ui_area{
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 244px;
    bottom: 17px;
    gap:20px;
}

.search_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F3F3F3;
    border: 1px solid rgba(0, 0, 0, 0.0578);
    border-radius: 6px;
    padding: 0px 8px;
    gap: 4px;
    width: 477px; /*493-8-8px;*/
    height: 42px; /*44-1-1px;*/
}

.search_box_text{
    font-family: 'Yu Gothic UI';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'rclt' off;
    color: rgba(0, 0, 0, 0.3614);
    border-radius: 2px;
}

.operation_btn_table{
    display: flex;
    align-items: center;
    /* width: 120px; */
    height: 40px;
    background: #F3F3F3;
    border-radius: 6px;
}

.operation_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

/* apl_reclip_page  --ここまで----------------------------------------- */

/* apl_pd_page  --ここから----------------------------------------- */
#apl_pd_page{
    position: relative;
    display: flex;
    flex-direction: column;
}

.apl_pd_body{
    display: flex;
}

.theme_image_table{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin: 34px;
}

.theme_image_table_title{
    position: absolute;
    top: -30px;
    width: 140px;
}

.theme_image_table_title_text{
    font-family: 'Noto Sans JP';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #4D4D4D;
}

.theme_image_box{
    position: relative;
    cursor: pointer;
}
.theme_image_box.disabled{
    cursor: not-allowed;
    pointer-events: none;
}

.theme_img{
    width: 140px;
    height: 140px;
}

.theme_image_table img.selected {
    outline: 2px solid rgba(0, 95, 184, 1);
    outline-offset: 3px;      /* 枠と画像の間隔 */
}

/* SVGをボタンの外枠に合わせる */
.border_anim_theme_image_box{
    position: absolute;
    width: calc(100% + 20px);   /* 横幅を+20px */
    height: calc(100% + 20px);  /* 高さを+20px */
    top: -10px;    /* 上に10pxずらす */
    left: -10px;   /* 左に10pxずらす */
    pointer-events: none;
}

.animate_theme_image_box {
    animation: drawBorder_theme_image_box 3s ease-in-out infinite;
}

@keyframes drawBorder_theme_image_box {
    0%   { stroke-dashoffset: 560; opacity: 1; }
    50%  { stroke-dashoffset: 0;   opacity: 1; }
    100% { stroke-dashoffset: -560; opacity: 0; }
}

.apl_pd_center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    /* width: 100%; */
    height: 848px; /*1048px-50-50-100px;*/
    background: rgb(255, 255, 255, 0.5);
    gap: 20px;
    padding-top: 50px;
}

#movie_preview_img_area{
    position: relative;
    background: #B9B9B9;
    border-radius: 8px;
}

.movie_preview_img{
    height: 628px;
    border-radius: 8px;
}

#movie_scene_table{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    opacity: 0.5;
    margin: 0 30px 0 30px;
}

.movie_scene_image_cell {
    position: relative;
    width: 126px;            /* 固定幅で並べる */
    flex-grow: 0;
    flex-shrink: 0;
}

.movie_scene_image_cell img {
    display: block;
    width: 100%;
}

.output_movie_button_area{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

#output_movie_button{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1px;
    margin: 20px;
    border-radius: 4px;
}

.output_movie_button_text{
    font-family: 'Yu Gothic UI';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-feature-settings: 'rclt' off;
    color: rgba(0, 0, 0, 0.8956);
    border-radius: 2px;
}

#trial_point3{
    position: absolute;
    left: 230px;
    top: 82px;
    gap: 32px;
}

#progress_circle_wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央に配置 */
}

.progress_circle {
   border: 6px solid transparent; /*2px solid transparent;*/
    border-top-color: #005FB8;
    border-radius: 99px;
    width: 64px;
    height: 64px;
    animation: spin 1s linear infinite;
}

@keyframes spin{
    to { transform: rotate(360deg); }
}
/* apl_pd_page --ここまで----------------------------------------- */

/* apl_introduction_page --ここから----------------------------------------- */
#apl_introduction_page{
    display: flex;
    flex-direction: column;
    /* max-height: 1080px; */
    gap: 100px;
    position: relative;
}

.apl_introduction_titlebar{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 1920px;;
    height: 72px;
    background: #000000;
}

.apl_introduction_title_text{
    height: 65px;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 54px;
    line-height: 65px;
    letter-spacing: 3px;
    color: #FFFFFF;
}

.apl_introduction_body{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    margin-bottom: 30px;
}

.apl_introduction_detail_area{
    display: flex;
    gap: 50px;
}

.apl_introduction_detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}
/* .apl_introduction_detail_left{
    display: flex;
    flex-direction: column;
    align-items: center;
} */

.apl_introduction_detail_caption{
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 39px;
    line-height: 47px;
    text-align: center;
    letter-spacing: 3px;
    color: #000000;
}

.apl_introduction_detail_left_img{
    width: 468px;
    height: 402px;
}

.apl_introduction_detail_right_img{
    width: 588px;
    height: 379px;
}

.soft_page_link_text{
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: right;
    letter-spacing: 1px;
    text-decoration-line: underline;
    color: #000000;
    cursor: pointer;
}

.soft_page_link_text:hover{
    font-weight: bold;
}

.tryfmv_page_link_button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 27px;
    gap: 12px;
    background: #424242;
    border-radius: 4px;
    cursor: pointer;
}

.tryfmv_page_link_button:hover{
   background-color:rgba(0, 0, 0, 0.7);

}

.tryfmv_page_link_button_text{
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 1px;
    color: #FFFFFF;
}

/* apl_introduction_page　--ここまで----------------------------------------- */

.pc_bottom_disp1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.pc_botm_disp2{
    color: #4a4a4a;
    font-family: "Noto Sans CJK JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin-left: 5px;
}

.pc_botm_disp3{
    color: #4a4a4a;
    font-family: "Noto Sans CJK JP";
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin-left: 5px;
    text-align: center;
    height: 30px;
}

.pc_botm_disp4{
    color: #F3F3F3;
    font-family: "Noto Sans CJK JP";
    font-size: 1px;
    text-align: center;
}

#dialog_mask{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10;
}

#initial_dialog{ 
    display: flex;
    flex-direction: column;
    height: 762px;
    background: #F3F3F3;
    border-radius: 7px;
}

.initial_dialog_header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 1440px;
    height: 72px;
    background: #000000;
    border-radius: 7px 7px 0px 0px;
}

.initial_dialog_header_text{
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 3px;
    color: #FFFFFF;  
}

.initial_dialog_header_icon{
    width: 60px;
    height: 60px;
}

.initial_dialog_body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-around;
    height: 100%;
}

.initial_dialog_body_caption{
    font-family: 'Noto Sans CJK JP';
    font-weight: 500;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #000000;
}

.initial_dialog_body_content{
    display: flex;
    align-items: center;
    gap: 42px;
}

.initial_dialog_body_content_dtail{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 345px;
    height: 369px;
    background: #FFFFFF;
    border-radius: 18px;
}

.initial_dialog_body_content_dtail_text{
    position: absolute;
    top: 30px;
    gap: 4px;
    font-family: 'Noto Sans CJK JP';
    font-weight: 400;
    font-size: 18px;
    line-height: 12px;
    color: #000000;
}

.initial_dialog_body_content_dtail_feature_img{
    width: 234px;
    height: 234px;
}

.initial_dialog_body_content_dtail_feature_text{
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #4D4D4D;
}

.initial_dialog_body_notice{
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #4D4D4D; 
}

.initial_dialog_body_button_area{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.initial_dialog_body_button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 44px;
    background: rgba(21, 21, 21, 0.8);
    border-radius: 4px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    margin-right: 36px;
    cursor: pointer;
}

.initial_dialog_body_button_text{
    font-family: 'Noto Sans JP';
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
}

#movie_dialog{ 
    position: relative;
    display: flex;
    /* width: 1196px; */
    /* height: 897px; */
    background: rgba(185, 185, 185, 1);
    border-radius: 8px;
}

#video_play_icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央に補正 */
    pointer-events: none;
}

.videoplayer_control_area{
    position: absolute;
    bottom: 5px;
    height: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.videoplayer_controls{
    display: flex;
    align-items: center;
    width: 1163px;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 27px;
}

#play_toggle_button{
    width: 27px;
    height: 27px;
    font-family: 'Segoe Fluent Icons';
    font-weight: 400;
    font-size: 30px;
    line-height: 18px;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    margin-left: 15px;
    cursor: pointer;
}

.progress_bar_area{
    margin-left: 15px;
    margin-right: 15px;
    width: 100%;
}

#progress_bar{
    /* デフォルト UI を消す（Safari では必須） */
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #ccc; /* JS で上書きされる */
    border-radius: 2px;
    cursor: pointer;
}

/* TRACK（スライダーの線） Chrome / Edge / Safari */
#progress_bar::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent; /* JS で描画するので透明 */
    border-radius: 2px;
}
/* TRACK（スライダーの線） Firefox */
#progress_bar::-moz-range-track {
    height: 8px;
    background: transparent; /* JS で描画するので透明 */
    border-radius: 2px;
}

/* THUMB（つまみ） Chrome / Edge / Safari */
#progress_bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #005598;       /* 内側の青 */
    box-shadow: 0 0 0 5px white;    /* 外側の白い円を疑似的に作る */
    cursor: pointer;
    margin-top: -4px;            /* Safari で thumb を線の中央に合わせる */
}
/* THUMB（つまみ） Firefox */
#progress_bar::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #005598;
    border-radius: 50%;
    box-shadow: 0 0 0 5px white;
    cursor: pointer;
}

#trial_point4{
    position: absolute;
    right: -250px;
    bottom: 189px;
    gap: 32px;
    z-index: 15;
}

#next_button{
    right: -230px; /*-250px;*/
    bottom: -10px;
}

#return_button{
    right: 48px;
    bottom: 10px; /*54px;*/
}

.circle_button{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 6px;
    width: 84px; /*144-30-30px;*/
    height: 84px; /*144-30-30px;*/
    /* right: -250px;
    bottom: -10px;     */
    /* right: 48px;
    bottom: 54px; */

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), #000000;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    border-radius: 300px;
    cursor:pointer;
    /* z-index: 15; */
}

.circle_button:hover{
   background-color:rgba(0, 0, 0, 0.7);

}

.circle_button_area{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 22.5px 15px;
    border-radius: 300px;
    gap: 10px;
}

.circle_button_icon{
    font-family: 'Segoe Fluent Icons';
    font-weight: 400;
    font-size: 67px;
    line-height: 67px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.circle_button_text{
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    width: 99px;
    color: #FFFFFF;
}

