@charset "UTF-8";
.body-class {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
 }

a{
    text-decoration: none;
}

.a_dec{
    color: #1e90ff;
}

.a_dec:hover{
    color: #ff4500;
}

.a_convert{
    color: #ffd900;
}

.a_convert:hover{
    color: #1e90ff;
}

.a_bread{
    color: #1e90ff;
    padding: 5px 5px;
    border-radius: 10px;
    font-size: 14px;
}

.a_bread:hover{
    background-color: #1e90ff1a;
}

.icon_red{
    color: #dc143c;
}

.icon_red:hover{
    color: #20b2aa;
}

.icon_blue{
    color: #3e62ad;
}

.icon_blue:hover{
    color: #20b2aa;
}

.btn_reset{
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-family: inherid;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.font_bold{
    font-weight: bold;
}

.font_12{
    font-size: 14px;
}

.font_18{
    font-size: 18px;
}

.font_40{
    font-size: 40px;
}

.font_gray{
    color: #797979;
    font-weight: bold;
}

.align_left{
    text-align: left;
}

.operate_ol{
    list-style-type: decimal;
}

.flex_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flex_box_30{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.bl_center{
    text-align: center;
    padding: 0 20px;
}

.bl_left{
    display: inline-block;
    text-align: left;
}

.align_right{
    text-align: right;
}

.possible_msg{
    width: fit-content;
    max-width: 100%;
    display: inline-block;
    padding: 0.5em 1em;
    color: #696969;
    border: 10px solid;
    border-image: linear-gradient(to right, rgba(187, 255, 239, 1)) 1;
}

.form_wrap{
    position: relative;
    width: min(92%, 1166px);
    margin: auto;
}

.form_wrap .cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.ver_align_m{
    vertical-align: middle;
}

.pad_right_10{
    padding-right: 10px;
}

.mar_0{
    margin: 0;
}

.mar_top_10{
    margin-top: 10px;
}

.mar_top_20{
    margin-top: 20px;
}

.mar_right_10{
    margin-right: 10px;
}

.mar_bottom_10{
    margin-bottom: 10px;
}

.mar_bottom_20{
    margin-bottom: 20px;
}

.mar_left_10{
    margin-left: 10px;
}

.ol_h1{
    margin: 10px 0;
}

.ol_ul{
    list-style: none;
    margin: 10px 0;
}

.ol_form__item{
    padding: 0;
/*    border-bottom: 1px dashed #ccc;*/
}

.border_b0{
    border-bottom: 0px;
}

.form__ttl{
    display: inline-block;
    margin: 8px 20px 5px 0px;
    font-weight: bold;
    text-align: left;
}

fieldset{
    border: none;
    margin: 0;
}

.ol_legend{
    padding: 0;
}

legend.form__ttl{
    margin-bottom: 5px;
    transform: translateY(1.5em);
}

@media screen and (max-width: 768px){
    legend.form__ttl{
        transform: translateY(0);
    }
}

.radioList{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0px;
}

.checkList{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding-left: 0px;

}

/*セレクトボックス*/
.ol_select {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    padding: 10px 30px 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.ol_selectWrap {
    position: relative;
    display: block;
    width: 200px;
    max-width: 100%;
}
.ol_selectWrap::after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    pointer-events: none;
}

.inlineBlock {
    display: flex;
    align-items: center;
}

.inlineBlock label {
    padding: 0 0.5em;
}

/* ラジオボタン・チェックボックス */
.ol_radio,
.ol_checkbox{
    opacity: 0;
    position: absolute;
    vertical-align:middle;
}

.ol_radio:focus + span,
.ol_checkbox:focus + span{
    outline: none;
}

.ol_radio + span,
.ol_checkbox + span{
    display: inline-block;
    position: relative;
    margin: 0.5em 2em 0.5em 0.5em;
    padding: 0.3em 0.3em 0.3em 2em;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
}
    
/* ラジオボタン */
.ol_radio + span::before{
    content: "";
    position: absolute;
    top: 0em;
    left: 0;
    width: 1.375em;
    height: 1.375em;
    border: 1px solid #999;
    border-radius: 50%;
    line-height: 1;
    background: #fff;
}

.ol_radio + span::after{
    content: "";
    display: none;
}

.ol_radio:checked + span::after{
    display: block;
    position: absolute;
    top: 0.25em;
    left: 0.25em;
    width: 1em;
    height: 1em;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: #3d98b4;
    line-height: 1;
}

/*チェックボック*/
.ol_checkbox + span:before {
    position: absolute;
    top: 0.1em;
    left: 0;
    content: "";
    width: 1.25em;
    height: 1.25em;
    border: 1px solid #999;
    background: #fff;
    line-height: 1;
    vertical-align: middle;
}

.ol_checkbox + span:after {
    content: "";
    display: none;
}

.ol_checkbox:checked + span:after {
    display: block;
    position: absolute;
    top: 0em;
    left: 0.4em;
    width: 0.5em;
    height: 1em;
    content: "";
    border-bottom: 3px solid #3D98B4;
    border-right: 3px solid #3D98B4;
    transform: rotate(45deg);
}

.ol_text {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 50px;
    padding: 10px 20px 8px 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1) inset;
    font-size: 16px;
}

.ol_number{
    width: 5rem;
    padding: 10px 0px 8px 20px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1) inset;
    font-size: 16px;
}

.ol_number::-webkit-inner-spin-button,
.ol_number::-webkit-outer-spin-button {
    opacity: 1;
}

.file_btn_wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn_wrapper{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

/* ファイルアップロード */
.form_file_body{
    width: 85%;
    margin: 0 auto 20px;
}

.pdf_comment{
    margin: auto;
    color: #d3381c;
    font-weight: bold;
}

.form_file_body .upload__icon{
    font-size: 2rem;
}

.file_comment_one{
    margin: 7px 0px;
    text-align: center;
}

.file_comment_two{
    display: inline-block;
    text-align: center;
}

.ol_file{
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.fileUpload{
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 5px 20px;
    background: #3e62ad;
    color: #fff;
    font-weight: bold;
    border: 3px solid #3e62ad;
    border-radius: 10px;
    cursor: pointer;
}

.fileUpload:focus,
.fileUpload:hover{
    background-color: #fff8dc;
    border-color: #3e62ad;
    color: #3e62ad;
}

.form__row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0px;
    gap: 20px;
}

.selectBtn{
    display: inline-block;
    width: 300px;
    max-width: 100%;
    padding: 5px 0px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    background-color: #fff8dc;
    border: 3px solid #3e62ad;
    border-radius: 20px;
    text-align: center;
    color: #3e62ad;
    cursor: pointer;
    transition: .25s;
    outline: none;
    margin: 10px;
}

.selectBtn:focus,
.selectBtn:hover{
    background-color: #3e62ad;
    border-color: #3e62ad;
    color: #fff;
}

.ol_hr{
    border:solid #f5deb380 5px;
    margin-bottom: 10px;
}

@media screen and (min-width: 598px){
    .fileUpload{
        height: 160px;
    }
}

@media screen and (min-width: 768px){
    .ol_form__item{
        padding: 0;
        display: flex;
        align-items: center;
    }

    
    .form__ttl{
        float: left;
        width: 25%;
        text-align: right;
    }

    
    .form__body{
        width: 75%;
    }
    
    legend.form__ttl{
         transform: translateY(0);
    }
}

/****************
 Header & Footer
*****************/
.ol_a_dec{
    color: #222222;
    text-decoration: none;
}

.ol_a_dec:hover{
    color: #00bfff;
}

.ol_header{
    height: 90px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
    margin-bottom: 20px;
}

.ol_w-container{
    width: min(92%, 1166px);
    margin: auto;
    position: relative;
}

.ol_header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.ol_brand{
    color: #000;
}

.ol_brand:hover{
    color: #20b2aa;
}

.ol_nav_ul{
    display: flex;
    align-items: center;
    gap: 25px;
    color: #707070;
    list-style: none;
}

.ol_coin{
    display: inline-block;
    background-color: #fef4f4;
    color: #eb629e;
    font-size: 1rem;
    padding:5px 10px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
}

.ol_coin:link{
    color: #eb629e;
    background-color: #fef4f4;
}

.ol_coin:visited{
    color: #eb629e;
    background-color: #fef4f4;
}

.ol_coin:hover{
    color: #00bfff;
    background-color: #00bfff1a;
}

/* ナビゲーションボタン */
.ol_navbtn{
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: #aaaaaa;
    font-size: 30px;
    display: none;
}

/* フッター */
.footer_wrap{
    background-color: #f5deb333;
}

.footer_ol{
    padding: 50px 0;
/*    background-color: #f5deb380;*/
    color: #707070;
    font-size: 13px;
}

.footer_ol-container{
    display: grid;
    gap: 20px;
    justify-items: center;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
}

.footer_ol-site{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer_ol-container > *:not(.footer_ol-sns){
    justify-self: start;
}

.footer_ol-container > .footer_ol-sns {
    grid-column: 2;
    grid-row: 1/3;
    justify-self: end;
    align-self: start;
}

.footer_ol-container ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_ol-menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* 言語ドロップダウン */
.lang_dec:hover{
    color: #00bfff;
    cursor: pointer;
}
.drop_wrap {
    display: block;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
 
.drop_item {
    position: relative;
}

.drop_child {
    display: none;
    width: 100px;
    max-width: 100%;
    position: absolute;
    top: 30px;
    left: 0px;
    list-style: none;
    margin: 0px;
    padding: 0px;
    border: 1px solid #e0ffff;
}

.drop_lang{
    background-color: #fff;
    padding: 7px 10px;
}

.pad_btm0{
    padding-bottom: 0px;
}

.drop_lang a{
    text-decoration: none;
}

.index_10{
    z-index: 10;
}

.list_check{
    list-style-type: none;
    position: relative;
    padding: 0.5em 0.5em 0.5em 2em;
}

.list_check.done{
    background: #e0ffff;
}

.list_check.done::before{
    content: "";
    position: absolute;
    border-color: #00bfff;
    border-style: solid;
    border-width: 0 0.3em 0.25em 0;
    height: 1em;
    top: 1.3em;
    left: 0.6em;
    margin-top: -1em;
    transform: rotate(45deg);
    width: 0.5em;
}

.current.done::before{
    content: "";
    position: absolute;
    border-color: #00bfff;
    border-style: solid;
    border-width: 0 0.3em 0.25em 0;
    height: 1em;
    top: 1.3em;
    left: 0.6em;
    margin-top: -1em;
    transform: rotate(45deg);
    width: 0.5em;
}

/* モバイル */
@media screen and (max-width: 1031px){
    .ol_nav{
        position: fixed;
        inset: 0 -100% 0 100%;
        z-index: 100;
        background-color: #4e483ae6;
        transition: transform 0.3s;
    }

    .ol_a_dec{
        color: #fff;
    }

    .ol_navbtn{
        display: block;
    }

    .ol_open .ol_navbtn{
        z-index: 110;
        color: #ffffff;
        position: absolute;
        left: 19px;
    }

    .ol_navbtn .fa-bars{
        display: block;
    }

    .ol_open .ol_navbtn .fa-bars{
        display: none;
    }

    .ol_navbtn .fa-times{
        display: none;
    }

    .ol_open .ol_navbtn .fa-times{
        display: block;
    }

    .ol_open .ol_nav{
        transform: translate(-100%, 0);
    }

    .ol_open body{
        position: fixed;
        overflow: hidden;
    }

    .ol_nav_ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 40px;
        color: #ffffff;
        padding: 0px;
    }

    .ol_coin{
    background-color: #fff;
    }

    .footer_ol-container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer_ol-menu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .footer_ol-container > .footer_ol-sns{
        align-self: center;
    }

}

/* クレジットを購入 */
.purchase_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 500px;
    max-width: 100%;
    padding: 5px 0px;
    background-color:#fef4f4;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #e95295e6;
    font-size: clamp(16px, calc(12px + 1vw), 24px);
    transition: .25s;
    margin: 20px auto 10px;
}

.purchase_btn.page{
    width: 85%;
}

.goto_purchase{
    display: inline-block;
    width: 150px;
    max-width: 100%;
    padding: 2px 0px;
    background-color:#e95295e6;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fef4f4;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    cursor: pointer;
    font-weight: bold;
}

.goto_purchase:hover{
    background-color: #f5fcff;
    color: #e95295e6;
}

.goto_purchase.reverse {
    min-width: 14rem;
    background-color: #00bfff;
    padding: 0.6rem 0;
    margin: 0;
}

.goto_purchase.reverse:hover {
    color: #00bfff;
    background-color: #f5fcff;
}


/** 変換結果のモーダル **/
.overlay_result{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 80%;
    height:60%;
    display: none;
    background: rgba(245,252,255);
    border: solid 1px #0f5cd6;
}

.overlay_result_down{
    background: #007bbb;
    font-family: sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    border: solid 2px transparent;
    margin-top: 30px;
    text-decoration: none;
    cursor: pointer;
}

.overlay_result_down:visited{
    color: #fff;
}

.overlay_result_down:hover{
    border: solid 2px #007bbb;
    background: #fff;
    color: #007bbb;
}

.result_icon {
    color: #b22222;
    font-size: 30px;
    float: right;
    margin: 20px 20px 0 0;
    cursor: pointer;
}

.result_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 50px;
}

.reader_result{
    padding: 0px 20px;
    text-align: center;
}

.reader_result_msg{
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bbb;
}


.reader_result iframe{
    width: 500px;
    max-width: 100%;
    height: 300px;
}

.result_text{
    color: #b22222;
    font-family: sans-serif;
    font-weight: bold;
    margin: 0 20px 0 20px;
    text-shadow:
           2px 2px 0px #fff, -2px -2px 0px #fff,
          -2px 2px 0px #fff,  2px -2px 0px #fff,
           2px 0px 0px #fff, -2px  0px 0px #fff,
           0px 2px 0px #fff,  0px -2px 0px #fff;
}

@media screen and (min-width: 847px){
    .reader_result iframe{
        width: 600px;
        height: 300px;
    }
}

/* ログイン
------------------------*/
.login_form_wrap{
    width: 400px;
    max-width: 90%;
    margin: 30px auto;
}

.online_login_form {
    background: #ebf6f7;
    border-radius: 6px;
    text-align: center;
    padding: 40px;
}

.online_login_form > h2 {
    color: #007bbb;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    margin-bottom: 20px;
}

.online_login_input{
    background: #fff;
    font-weight: bold;
    display: block;
    width: 280px;
    max-width: 100%;
    padding: 15px;
    margin: 0 auto 10px;
    outline: none;
    border-radius: 6px;
    border: #f6f7d0;
    font-size: 16px;
}

.online_login_input:focus{
    background: #fff;
    color: brown;
}

.online_login_btn{
    position: relative;
    display: block;
    margin: 1rem auto;
    padding: 1rem 1.5rem;
    width: 300px;
    max-width: 100%;
    font-size: 1.2em;
    background: #ffe873;
    border-radius: 6px;
    color: #7c5341;
    cursor: pointer;
    border: #ffe873;
    outline: none;
}

.online_login_btn.return{
    background: #20b2aa80;
    color: #fff;
}

.online_login_btn:hover{
    background: #ffd900;
    font-weight: bold;
}

.online_login_btn.return:hover{
    background: #20b2aa;
}

.online_login_btn:active{
    top: 3px;
    box-shadow: none;
}

.online_login_form.pass {
    margin:30px auto 30px;
    background: #ebf6f7;
    border-radius: 6px;
    width: 347px;
    max-width: 100%;
    text-align: center;
    padding: 40px;
}

.online_login_input.pass{
    background: #fff;
    font-weight: bold;
    display: block;
    width: 317px;
    max-width: 100%;
    padding: 15px;
    margin: 0 auto 10px;
    outline: none;
    border-radius: 6px;
    border: #f6f7d0;
    font-size: 16px;
}

.login_pass{
    display: inline-block;
    word-break: break-all;
    text-decoration: none;
    color: #1e90ff;
    cursor: pointer;
}

.login_pass:hover{
    color: #ff4500;
}

/* 送信ボタンエリア */
.login_btnArea {
    text-align: center;
    margin: 3rem 0;
}

.login_btnArea .register_dec1{
    display: block;
    font-size: 14px;
}

.login_btnArea .register_dec2{
    font-weight: bold;
    font-size: 20px;
}

.login_submitBtn {
    -webkit-appearance: none;
    appearance: none;
    width: 90%;
    max-width: 300px;
    margin: 0;
    padding: 15px;
    border: 0;
    border-radius: 50px;
    background: #3e62ad;
    color: #fff;
    cursor: pointer;
    transition: opacity .3s;
    font-size: 16px;
}
.login_submitBtn:hover {
    background: #89c3eb;
}

/* ユーザー登録
-------------------------------*/
.reader_reg a{
    display: inline-block;
    word-break: break-all;
    text-decoration: none;
    cursor: pointer;
}

.reader_reg a:hover{
    color: #ff4500;
}

.reader_reg .address_auto{
    background-color: transparent;
    border: none;
    outline: none;
    text-align: center;
    display: inline-block;
    margin-left: 30px;
    padding: 0px 15px 0px 15px;
    color: #4169e1;
    font-size: 15px;
    text-decoration: none;
    background-color:#fafad2;
    cursor: pointer;
    border-radius: 30px;
}

.reader_reg .address_auto:hover{
    background-color:#87cefa;
    color: #fafad2;
}

.reader_reg.w-container{
    width: min(92%, 970px);
    margin: auto;
    position: relative;
}

.reader_reg .bl_center{
    text-align: center;
}

.reader_reg .bl_left{
    width: 60%;
    display: inline-block;
    text-align: left;
}

.reader_reg ul{
    list-style: none;
}

.reader_reg .label-required{
    background-color: #dc143c;
    font-size: 0.7em;
    color: #fff;
    padding: 2px 5px 3px 4px;
    margin-left: 1em;
    border-radius: 3px;
    vertical-align: top;
}

.reader_reg .label-any{
    background-color: #3d98b4;
    font-size: 0.7em;
    color: #fff;
    padding: 2px 5px 3px 4px;
    margin-left: 1em;
    border-radius: 3px;
}

.reader_reg .form__item{
    padding: 20px 0;
    border-bottom: 1px dashed #ccc;
}

.reader_reg .form__ttl{
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 5px;
    font-weight: bold;
}

.reader_reg fieldset{
    border: none;
}

.reader_reg .legend.form__ttl{
    margin-bottom: 5px;
    transform: translateY(1.5em);
}

.reader_reg .radioList{
    display: flex;
    align-items: center;
    padding: 0px;
}

/*セレクトボックス*/
.reader_reg select {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    padding: 10px 30px 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.reader_reg .selectWrap {
    position: relative;
    display: block;
}
.reader_reg .selectWrap::after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    pointer-events: none;
}

.reader_reg .inlineBlock {
    display: flex;
    align-items: center;
}

.reader_reg .inlineBlock label {
    padding: 0 0.5em;
}

/* テキストフィールド, Emailフィールド, パスワードフィールド */
.reader_reg input[type="text"],
.reader_reg input[type="email"],
.reader_reg input[type="password"],
.reader_reg select{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 300px;
    padding: 10px 20px 8px 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1) inset;
    font-size: 16px;
}

/* チェックボックス */
.reader_reg input[type="checkbox"]{
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
}

.zip_flex{
    display: flex;
    gap: 20px;
}

/* 同意エリア */
.acceptArea {
    width: 80%;
    margin: 30px auto 0px;
    padding: 30px;
    border: 1px solid #ccc;
}
.acceptArea__txt {
    margin-bottom: 10px;
}
.acceptArea__check {
    display: block;
    text-align: center;
}

/* 送信ボタンエリア */
.btnArea {
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.submitBtn {
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    max-width: 100%;
    margin: 0;
    padding: 15px;
    border: 0;
    border-radius: 50px;
    background: #3D98B4;
    color: #fff;
    cursor: pointer;
    transition: opacity .3s;
    font-size: 16px;
}
.submitBtn:hover {
    background: #87cefa;
}

.submitBtn.return{
    width: 100px;
    text-align: center;
}

@media screen and (min-width: 768px){
    .reader_reg .form__item::after{
        content: "";
        display: block;
        clear: both;
    }
    
    .reader_reg .form__ttl{
        float: left;
        width: 30%;
        text-align: right;
        padding-right: 30px;
    }
    
    .reader_reg .form__body{
        width: 70%;
        margin-left: 30%;
    }

    .reader_reg legend.form__ttl{
         transform: translateY(0);
    }
    
    .note_deco{
        margin-left: 55px;
    }

    .input_field{
        padding-top: 10px;
    }
}

/****************
 My Page
*****************/
.my_w-container{
    width: min(92%, 720px);
    margin: 0 auto;
    position: relative;
}

.my_w-container.convert{
    width: min(92%, 900px);
    margin-bottom: 50px;
}

.my_title {
    color: #1e90ff99;
    font-weight: bold;
    font-size: clamp(18px, calc(12px + 1.5vw), 30px);
    min-height: 0vw;
    text-align: center;
}

.my_title.color_gray{
    color: #696969;
}

.my_sub_title{
    font-size: clamp(16px, calc(12px + 1vw), 24px);
    min-height: 0vw;
    font-weight: bold;
    margin-top: 20px;
}

.my_sub_title.color_red{
    color: #dc143c;
}

.my_sub_title.color_gray{
    color: #696969;
}

.my_user_info{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bold{
    font-weight: bold;
}

.update_btn{
    border: none;
    outline: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px 0px 15px;
    color: #fafad2;
    font-size: 15px;
    text-decoration: none;
    background-color:#87cefa;
    cursor: pointer;
    border-radius: 30px;
    font-weight: bold;
}

.update_btn:hover{
    background-color:#fafad2;
    color: #87cefa;
}

.table_operation{
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
}

.document_download{
    border: none;
    outline: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f5cd6;
    background-color: transparent;
    cursor: pointer;
}

.document_download:hover{
    color: #87cefa;
}

.document_download:disabled{
    color: #8f8e8e;
    opacity: 0.5;
}

.document_delete{
    border: none;
    outline: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
}

.history_btn{
    border: none;
    outline: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px 0px 15px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    background-color:#007bbb;
    cursor: pointer;
    border-radius: 30px;
    font-weight: bold;
}

.history_btn.conversion{
    background-color: #2ca9e1;
}

.history_btn:hover{
    background-color:#fafad2;
    color: #2ca9e1;
}

/** 購入のモーダル **/
.overlay_purchase{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 80%;
    height:60%;
    display: none;
    background: rgba(245,252,255);
    border: solid 1px #0f5cd6;
}

.overlay_purchase_go{
    background: #007bbb;
    font-family: sans-serif;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    font-weight: bold;
    border: solid 2px transparent;
    margin-top: 30px;
    padding: 5px 15px 5px;
    text-decoration: none;
    cursor: pointer;
}

.overlay_purchase_go.cancel{
    background: #dc143c;
    padding: 3px 10px 3px;
    font-size: 0.8rem;
}

.overlay_purchase_go:visited{
    color: #fff;
}

.overlay_purchase_go:hover{
    border: solid 2px #007bbb;
    background: #fff;
    color: #007bbb;
}

.overlay_purchase_go.cancel:hover{
    border: solid 2px #dc143c;
    background: #fff;
    color: #dc143c;
}

.result_icon {
    color: #b22222;
    font-size: 30px;
    float: right;
    margin: 20px 20px 0 0;
    cursor: pointer;
}

.purchase_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.purchase_text{
    color: #696969;
    font-family: sans-serif;
    font-weight: bold;
    margin: 0 20px 0 20px;
    text-shadow:
           2px 2px 0px #fff, -2px -2px 0px #fff,
          -2px 2px 0px #fff,  2px -2px 0px #fff,
           2px 0px 0px #fff, -2px  0px 0px #fff,
           0px 2px 0px #fff,  0px -2px 0px #fff;
}

.purchase_text.big{
    color: #e95295e6;
    font-size: 20px;
    margin-bottom: 20px;
}

/* 購入履歴 */
.bl_vertTable{
    width: 100%;
    border: 1px solid #ddd;
    margin: 0 auto;
}

.bl_vertTable table{
    width: 100%;
    text-align: center;
    table-layout: fixed;
}

.bl_vertTable thead tr{
    background-color: #efefef;
}

.bl_vertTable th{
    padding: 15px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    vertical-align: middle;
    background:#007bbb;
    color: #fff;
}

.bl_vertTable.conversion th{
    background: #2ca9e1;
}

.bl_vertTable td{
    padding: 15px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.bl_vertTable tr:nth-child(even){
    background: #007bbb1a;
}

.bl_vertTable.conversion tr:nth-child(even){
    background: #2ca9e11a;
}

.bl_vertTable th:last-child,
.bl_vertTable td:last-child{
    border-right-width: 0;
}

.bl_vertTable tbody tr:last-child td{
    border-bottom-width: 0;
}

.table_item{
    display: inline-block;
    text-align: left;
}

/* 変換履歴 */
.bl_cardUnit{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-template-rows: auto;
    margin-bottom: -30px;
}

.bl_card{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    margin: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 0 15px 15px 15px;
}

.bl_card_ttl{
    margin: 15px 0px 5px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 2;
}

.bl_card_txt{
    border-top: 1px solid #a9a9a9;
/*    border-bottom: 1px solid #a9a9a9;*/
    margin: 10px 0 10px;
    padding: 10px 0 10px;
    color: #000;
    line-height: 2;
}

.bl_card_del{
    border-top: 1px solid #a9a9a9;
}

/* 登録確認アコーディオン */
.my_accordion {
    border: 1px solid #87cefa;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.my_accordion summary.el_heading {
    padding: 1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    background-color: #87cefa;
    color: #fafad2;
    font-weight: bold;
    border-bottom: 1px solid #87cefa;
}

.my_accordion summary.el_heading::-webkit-details-marker {
    display: none;
}

/* 開閉アイコンの追加（元のデザインに合わせて調整） */
.my_accordion summary.el_heading::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fafad2;
    border-bottom: 2px solid #fafad2;
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* 開いているときのアイコン */
.my_accordion[open] summary.el_heading::after {
    transform: translateY(-25%) rotate(-135deg);
}

.my_accordion .bl_content {
    padding: 1rem;
    animation: slideDown 0.3s ease-out;
}

/* アニメーション効果（オプション） */
.my_accordion .bl_content {
    animation: slideDown 0.3s ease-out;
}

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

.accordion_item1{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    padding: 0.5em;
    align-items: center;
    gap: 0.5em;
}

.accordion_item2{
    width: 30%;
    text-align: right;
}


/* ヘルパークラス */
.hp_bg-gray {
    background-color: #f8f9fa;
}

.hp_bg-white {
    background-color: #fff;
}

/* クレジットを購入 */
.my_purchase_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 10px 0px;
    background-color:#fef4f4;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #e95295e6;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    text-shadow:
        0.2px 0.6px 0px #fef4f4, -0.2px -0.6px 0px #f5b1aa,
        -0.2px 0.6px 0px #f5b1aa, 0.2px -0.6px 0px #fef4f4,
        0.2px 0px 0px #fef4f4, -0.2px 0px 0px #f5b1aa,
        0px 0.6px 0px #fef4f4, 0px -0.6px 0px #fef4f4;
    margin-top: 30px;
}

.my_purchase_count{
    font-size: clamp(16px, calc(12px + 1vw), 24px);
    font-weight: bold;
}

.my_goto_purchase{
    display: inline-block;
    width: 250px;
    max-width: 100%;
    padding: 2px 0px;
    margin-left: 20px;
    background-color:#e95295e6;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fef4f4;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    margin-right: 10px;
    text-shadow:
        0.2px 0.6px 0px #fef4f4, -0.2px -0.6px 0px #f5b1aa,
        -0.2px 0.6px 0px #f5b1aa, 0.2px -0.6px 0px #fef4f4,
        0.2px 0px 0px #fef4f4, -0.2px 0px 0px #f5b1aa,
        0px 0.6px 0px #fef4f4, 0px -0.6px 0px #fef4f4;
}
.my_goto_purchase:hover{
    background-color: #f5fcff;
    color: #e95295e6;
    cursor: pointer;
}

/* 退会エリア */
.deleteArea {
    margin: 30px auto 30px;
    padding: 0px 30px 30px;
    border: 1px solid #dc143c1a;
    background-color:#dc143c0a;
}
.deleteArea__txt {
    color: #dc143c;
    margin-bottom: 10px;
}
.delete__check {
    margin: 0 auto;
}

.go_delete{
    display: block;
    width: auto;
    margin-left: 20px;
    background-color:#dc143c;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    margin: 0 auto;
    text-align: center;
}

.doc{
    width: 60px;
    float: right;
    font-size: 0.8rem;
    color: #dc143c;
    background-color: #fff;
    padding-top: 10px;
}

.go_delete:hover{
    background-color: #fff;
    border-color: #dc143c;
    color: #dc143c;
    cursor: pointer;
}

.doc:hover{
    color: #fff;
    background-color: #dc143c;
}

/* パンくずリスト */
.ol_bread{
    margin-top: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.breadcrumb {
    padding: 5px 10px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .3rem;
  color: #777;
}

@media screen and (max-width: 720px){
    .bl_vertTable{
        border-right-width: 0;
        overflow-x: auto;
    }

    .bl_vertTable table{
        width: auto;
        min-width: 100%;
    }

    .bl_vertTable th,
    .bl_vertTable td{
        white-space: nowrap;
    }

    .bl_vertTable th:last-child,
    .bl_vertTable td:last-child{
        border-right-width: 1px;
    }
}

.document-card__info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.document-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: bold;
}
.document-card__badge--completed {
    background: #d4edda;
    color: #155724;
}

.document-card__badge--processing {
    background: #cce5ff;
    color: #004085;
}

.document-card__badge--failed {
    background: #f8d7da;
    color: #721c24;
}

.footer_ol-copy{
    margin-top: 20px;
    text-align: center;
}

.flex_box_10 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.flex_license {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}
