@charset "utf-8";
/* CSS Document */

body {
    font: 12px/1.6 "Hiragino Kaku Gothic Pro", 'メイリオ', Arial, sans-serif;
    font-family: 'メイリオ',Meiryo;
    margin: 0;
    color: #313131;
}

h3 {
    font-size: 1.4rem;
    background: linear-gradient(transparent 70%, #3398c3 100%);
    color: #2c2b2b;
    margin-top: 1.2rem;
}

h4 {
    font-size: 1.3rem;
    margin-top: 0.5rem !important;
    margin-bottom: 0rem !important;
    line-height: 1rem;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

#loading {
    background: rgb(0, 0, 0, 0.5);
    z-index: 10000;
}

.page-top {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
}

.page-top a {
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #3398c3;
    border-radius: 50%;
    line-height: 50px;
}

.page-top a i {
    font-size: 20px;
    color: #fff;
    line-height: 50px;
}

.btn-active {
    opacity: 1;
    visibility: visible;
}

.input-validation-error {
    background-color: #ffeeee;
}

.btn-style {
    background: #3398c3 !important;
    color: #ffffff !important;
}

.btn-style:hover {
    background: #267aa6 !important;
    color: #ffffff !important;
}

.btn-rectangle {
    width: 30px;
    height: 30px;
    padding: 0;
}

.div-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
}

.form-login {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

.btn-circle-border {
    font-size: 1.0rem;
    display: inline-block;
    color: #3398c3;
    width: 130px;
    height: 130px;
    line-height: 1.2;
    font-weight: bold;
    border-radius: 50%;
    border: solid 2px #3398c3;
    text-align: center;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.circle-position {
    margin-top: 3.2rem !important;
}

.btn-circle-border:hover {
    background: #61a5c2;
    color: #ffffff;
    transform: translateY(-3px);
    transition: transform 250ms;
}

.btn-circle-disabled:hover {
    background: rgba(0,0,0,0.4) !important;
    border: solid 2px rgba(0,0,0,0.1) !important;
}

.px {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 150px;
    padding-right: 30px;
}

@media screen and (max-width: 640px) {
    body {
        line-height: 2;
    }

    h3 {
        font-size: 1.2rem; /* 24px*/
    }

    h4 {
        font-size: 1.1rem; /* 20px*/
        margin-top: 0.7rem !important;
        margin-bottom: 0rem !important;
        line-height: 1rem;
    }

    .title {
        display: none;
    }

    .btn-circle-border {
        font-size: 0.5rem;
        width: 70px;
        height: 70px;
    }

    .circle-position {
        margin-top: 1.5rem !important;
    }
}

/*ステップバー*/
.progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*追加*/
    padding-top: 50px;
    padding-bottom: 50px;
}

.progressbar li {
position: relative;
list-style-type: none;
text-align: center;
text-transform: uppercase;
width: 33.333%;
color: #999999;
font-weight: bold;
}

.progressbar li:before {
    display: block;
    width: 18px;
    height: 18px;
    margin: 7px auto 20px auto;
    content: '';
    text-align: center;
    border-radius: 50%;
    background-color: #E5E5E5;
}

.progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #E5E5E5;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active,
.progressbar li.complete {
    color: #3398c3;
}

.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: #3398c3;
}

.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #3398c3;
}

.table-height{
    max-height:200px;
}

.modal-body-scrollable {
    max-height: 70vh;
    overflow-y: auto;
}

@media only screen and (max-width:767px){
    .table-height{
        max-height:100px;
    }
}

.btn-hover-danger i:hover {
    color: red;
}