@charset "UTF-8";

/* =======================================
			modalBox
======================================= */
html.modalOpen,
html.modalOpen body  {
    overflow: hidden;
}
.modalBtn {

}
.modalBoxBlock {
    display: none;
}
.modalBoxBlock.is-show {
    position: relative;
    display: block;
    z-index: 150;
}
.modalBoxBg  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}
.modalBoxWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
}
.modalBoxItem {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    width: 100%;
    height: 100%;
}
.modalBoxItemWrap {
    position: relative;
    width: 800px;
    max-height: 95%;
    border-radius: 10px;

    overflow-y: auto;
}
.modalBoxItemWrap::-webkit-scrollbar {
    display:none;
}

.modalBoxHeader {
    border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    padding: 15px 30px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    background-color: #0076AA;
}
.modalBoxTitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}
.modalCloseBtn {
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("../img/btn_modal_close.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}

.modalBoxBody {
    display: block;
    width: 100%;
    padding: 30px 30px 0;
    background-color: rgba(255, 255, 255, 1);
}
.modalBoxBodyInner {
    max-height: 60vh;
    overflow-y: auto;
}
.modalInputWrap {
    padding: 0 0 20px; 

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.modalInputWrap:nth-child(n+2) {
    border-top: 1px solid #EFEFEF;
    padding: 20px 0;
}
.modalInputWrap > div {
    width: 100%;
} 
.modalInputTitle {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}
.modalInputTitleNoclick {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}
.tabListItemSelect {
    margin-left: 20px;
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    color: #0076AA;
    background-color: rgba(0, 118, 170, 0.17);
}
.modalInputList {
    margin-top: 5px;
    width: 100%;

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.modalInputInfoText {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
}
.modalInputClickList {
    display: none;
}
.modalInputClickList.is-show {
    display: block;
    width: 100%;
}
.modalInputSubList {
    margin-top: 5px;
    padding-left: 30px;
}
.modalInputTitle2 {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}
.modalInputList2 {
    margin-top: 5px;
    width: 100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.modalInputList__vcenter {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.modalInputListItme {
    margin-bottom: 5px;
}
.modalInputListItme__line4 {
    width: 25%;
}
.modalInputListItme__line5 {
    width: 20%;
}
.modalInputListItme__line160 {
    margin-right: 10px;
    width: 160px;
}
.modalInputListItme__lineAuto {
    margin-right: 10px;
}
.modalInputListItme__lineAuto:last-child {
    margin-right: 0;
}
.modalInputListItme__lineR60 {
    margin-right: 60px;
}
.modalInputListItme__lineR60:last-child {
    margin-right: 0;
}
.modalInputListItme__full {
    width: 100% !important;
}
.modalInputListItme__full2 {
    width: 100% !important;
    padding-bottom: 0;
}
.modalInputListItme__lineSub {
    margin-right: 10px;
    min-width: 20%;
}
.twoLevelsListItme {

}

.modalBoxFooter {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 15px 20px 20px;

    background-color: #EFEFEF;
}

.modalInputError {
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
    color: red;
}
.modalInputErrorText:nth-child(n+2) {
    margin-top: 5px;
}

.modalInputList__salary .modalInputListItme .inputNumber {
    width: 100%;
    border: 1px solid #CCCCCC;
    padding: 6px;
    font-size: 14px;
}

/*----------------------------------------
 _画面の横幅が750pxまで
----------------------------------------*/
@media screen and (max-width:750px) {

    /* =======================================
                modalBox
    ======================================= */
    .modalBtn {

    }
    
    .modalBoxBlock {
        display: none;
    }
    .modalBoxBlock.is-show  {

    }
    .modalBoxBg  {

    }
    .modalBoxWrap {

    }
    .modalBoxItem {

    }
    .modalBoxItemWrap {
        position: relative;
        width: 89.33vw;
        max-height: auto;
        max-height: initial;
        border-radius: 2.66vw;
        overflow-y: auto;
    }
    .modalBoxItemWrap::-webkit-scrollbar {
        display:none;
    }
    
    .modalBoxHeader {
        border-top-left-radius: 2.66vw;
        border-top-left-radius: 2.66vw;
        padding: 4vw;
    }
    .modalBoxTitle {
        font-size: 4.8vw;
    }
    .modalCloseBtn {
        width: 3.73vw;
        height: 3.73vw;
    }
    
    .modalBoxBody {
        display: block;
        width: 100%;
        /* padding: 4vw; */
        padding: 0;
        background-color: rgba(255, 255, 255, 1);
    }
    .modalBoxBodyInner {
        max-height: 60vh;
        overflow-y: auto;
    }
    .modalInputWrap {
        padding: 0; 
    }
    .modalInputWrap:nth-child(n+2) {
        border-top: 0.26vw solid rgba(0, 118, 170, 0.21);
        padding: 0;
    }
    .modalInputTitle {
        padding: 3.73vw 13vw 3.73vw 4vw;
        font-size: 4.26vw;
        line-height: 1.5;
        text-align: left;
        cursor: pointer;

        background-image: url("../img/circle_down_blue_lightBlue");
        background-repeat: no-repeat;
        background-position: 77.33vw center;
        background-size: 8vw 8vw;


        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .modalInputTitle__noBtn {
        cursor: default;
        background-image: none;
    }
    .modalInputTitle.active {
        background-image: url("../img/circle_up_blue_lightBlue");
    }
    .modalInputTitleNoclick {
        padding: 4vw 13vw 4vw 4vw;
        font-size: 4.26vw;
        text-align: left;
    }
    .modalInputTitle.openList {
        background-image: url("../img/circle_up_blue_lightBlue");
    }
    .tabListItemSelect {
        margin-left: 0;
        border-radius: 1.33vw;
        padding: 0.8vw 2.66vw;
        font-size: 3.46vw;
        line-height: 1.3;
        color: #0076AA;
        background-color: rgba(0, 118, 170, 0.17);
    }
    .modalInputList {
        /* display: none;
        margin-top: 0;
        width: 100%; */
        margin-top: 0;
        height: 0;
        overflow: hidden;
        padding-left: 6vw;
        transition: all 0.5s;
    }
    .modalInputList__noBurger {
        height: auto;
    }
    .modalInputInfoText {
        margin-top: 0;
        padding: 0 3vw 3vw 4vw;
        font-size: 3.46vw;
    }
    .modalInputSubList {
        margin-top: 0;
        padding-left: 3vw;
    }
    .modalInputTitle2 {
        margin-bottom: 0;
        padding: 2vw 5vw;
        font-size: 3.46vw;
        text-align: left;
    }
    .modalInputList2 {
        margin-top: 0;
        width: 100%;
    }
    .modalInputList2 > .modalInputListItme {
        /* padding: 0 3vw 2.66vw 5vw; */
        padding: 2.66vw 3vw 0 5vw;
    }
    .modalInputList__vcenter {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .modalInputListItme {
        width: 100%;
        margin-bottom: 0;
        padding: 0 2.66vw 2.66vw 0;
    }
    .modalInputListItme__line4 {
        min-width: 50%;
        width: auto;
        padding: 0 3vw 2.66vw 0
    }
    .modalInputListItme__line5 {
        min-width: 50%;
        width: auto;
        padding: 0 3vw 2.66vw 0;
    }
    .modalInputListItme__lineR60 {
        margin-right: 0;
        width: 100%;
    }
    .modalInputListItme__lineR60:last-child {
        margin-right: 0;
        width: 100%;
    }
    .modalInputListItme__line160 {
        margin-right: 0;
        width: 57.99vw;
        padding: 0 3vw 2.66vw 0;
    }
    .modalInputListItme__full2 {
        width: 100% !important;
        /* padding-bottom: 0; */
    }
    .modalInputListItme__lineSub {
        margin-right: 0;
        width: auto;
        min-width: 25%;
        padding: 0 3vw 2.66vw 5vw;
    }

    .modalInputList__salary {

    }
    .modalInputList__salary .modalInputListItme {
        border-top: none;
    }
    .modalInputList__salary .modalInputListItme .inputNumber {
        width: 24vw;
        border: 0.26vw solid #CCCCCC;
        padding: 1.33vw;
        font-size: 3.73vw;
    }
    .modalInputListItme__lineAuto {
        width: auto;
        display: inline-block;
        margin-right: 0;
        padding: 0 3vw 2.66vw 0;
    }
    .modalInputListItme__lineAuto:last-child {
        margin-right: 0;
    }
    
    .twoLevelsListItme {
    
    }
    
    .modalBoxFooter {
        position: relative;
        border-bottom-left-radius: 2.66vw;
        border-bottom-right-radius: 2.66vw;
        padding: 5.33vw 2.66vw;
    }
    .modalBoxFooterBtnSubmit {
        width: 48vw;
    }

    .inputRadio + label {
        width: 100%;
    }
    .inputCheckbox + label {
        width: 100%;
    }

    .modalInputError {
        padding: 0 3vw 2.66vw 0;
        font-size: 3.2vw;
        line-height: 1.2;
        color: red;
    }
    .modalInputErrorText:nth-child(n+2) {
        margin-top: 1.33vw;
    }
}