.tab_area {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tab_box {
    text-align: center;
    padding-bottom: 5px;
}

.tab_input {
    cursor: pointer;
}

.tab_text {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    align-items: center;
    padding-left: 5px;
    user-select: none;
}

.search_products_input {
    width: calc( 100% - 30px );
    border: none;
    outline: none;
}

.select_doc_btn_txt {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    margin-left: 20px;
}

.show_model {
    padding-left: 5px;
    background: #e8e8e8;
    min-height: 50px
}

.search_products_options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.option_pull_down_title, .option_pull_down_txt {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    user-select: none;
}

.option_box {
    padding: 0px;
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    user-select: none;
}

.option_pulldown {
    cursor: pointer;
    height: 40px;
    padding: 0px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E3E5E8;
    margin-bottom: 12px;
}

.option_pulldown:focus{
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.search_products_submit {
    padding-top: 15px;
}

.submit_btn {
    padding: 0px;
}

.hidden {
    visibility: hidden;
}

.display_none {
    display:none;
}

.search_prod_res_area {
    padding-top: 0px;
}

.select_doc_area {
    padding-top: 15px;
}

.model_link{
    margin-bottom: 10px;
}

.model_link_txt:link{
    color: black;
    text-decoration: none;
}

.model_link_txt{
    cursor: pointer;
    user-select: none;
}

.model_link_txt span:hover {
    text-decoration: underline;
}

.model_link_txt span:active {
    color: blue;
    text-decoration: none;
    opacity: none;
}

.model_link_txt_selected {
    color:blue;
    text-decoration: underline;
}

.search_input {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid #E3E5E8;
    height: 40px;
    padding: 0px;
    background: #FFFFFF;
    border-radius: 4px;
}

.search_input_shadow{
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.search_icon{
    width: 18x;
    height: 18px;
    -webkit-user-drag: none;
    margin-right: 3px;
    margin-left: 5px;
    margin-top: 11px;
}

.button-style-white {
        background: #FFFFFF;
        border: 1px solid #5282E0;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
        border-radius: 4px;
        font-family: 'Noto Sans JP';
        font-style: normal;
        font-weight: 700;
        line-height: 125%;
        align-items: center;
        text-align: center;
        color: #0041C0;
        font-size: 14px;
        height: 44px;
}

.button-style-white:hover {
    color: #FFFFFF;
}

.button-style-white:disabled {
    background: #FFFFFF;
    color: #0041C0;
}

.search_error_messge {
    font-family: 'Noto Sans JP';
    font-style: normal;
    color: #ff0000;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    font-size: 16px;
    min-height: 45px;
}

.page_title {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    align-items: center;
    color: #000000;
    margin: 30px 0 5px;
}

.sub_title {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    align-items: center;
    color: #000000;
    user-select: none;
}

.style_sub_title {
    padding-top: 15px;
}

.style_option_title {
    padding-top: 0px;
}

.document_bottom {
    margin-bottom: 10px;
}

input[type=radio] {
    width: 18px;
    height: 18px;
}

.document {
    width : 40px;
    height : 40px;
}

.btn_style {
    background: #0041C0;
}

.modal-fullscreen{
	width:100vw;
	max-width:none;
	height:100%;
	margin:0;
}
.modal-fullscreen .modal-content{
	height:100%;
	border:0;
	border-radius:0;
}
.modal-fullscreen .modal-header{
	border-radius:0;
    padding:0;
}
.modal-fullscreen .modal-body{
	overflow-y:auto;
}
.modal-fullscreen .modal-footer{
	border-radius:0;
}

@media (max-width: 992px){
    .document {
        height: 30px;
        width: 30px;
    }
}

/* 768px以下のフォントサイズ */
@media (max-width: 767px) {
    .search_error_messge{
        font-size: 14px;
    }

    .page_title{
        margin-top: 20px;
    }

    .document {
        height: 20px;
        width: 20px;
    }

    .show_model {
        max-height: 340px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .search_input {
        height: 36px;
    }

    .option_pulldown {
        height: 36px;
    }

    .button-style-white {
        height: 32px;
    }

    .search_icon{
        margin-top: 9px;
    }
}
