@charset "UTF-8";
/* ==========================================================================

    Theme Name: torel admin
    Theme URI: http://
    Author: Yuria Shoji
    Author URI: http://kiu.co.jp/
    Version: 1.0

   ========================================================================== */

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    background: #fff;
    color: #040404;
    font-family: sans-serif;
    font-size: 14px; font-size: 1.4rem;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #d3d4df;
    margin: 1em 0;
    padding: 0;
}

p{ margin: 0; }

ul,ol,li,dl,dt,dd{
    margin: 0;
    padding: 0;
    list-style: none;
}

img{
    max-width: 100%; 
    height:auto;
}

a,
a:hover{
    color: #181C61;
}

a:hover{
    text-decoration: underline;
}

a:focus{
    outline: none;
    color: #181C61;
    text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

button{
    outline: none;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.ctr{ text-align: center; }
.lft{ text-align: left; }
.rgt{ text-align: right; }


.bold{ font-weight: bold; }

.sp{ display: block; }
.pc{ display: none; }


.mb16{
    margin: 0 0 16px;
}
.mb30{
    margin: 0 0 30px;
}
.mb40{
    margin: 0 0 40px;
}

.wrapper{
    margin: 0 16px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea{
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    margin: 0;
    border: none;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #d6d6d6;
    /*background: #EFEFEF;*/
    background: #fff;
    cursor: pointer;
    resize: none;
    font-size: 14px; font-size: 1.4rem;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"]{
    padding: 0 12px;
}

input[type="date"]{
    padding: 0 4px 0 12px;
}

input[type="number"]{
    width: auto;
}

textarea{
    height: auto;
    line-height: 1.6;
    padding: 12px;
}

select::-ms-expand {
  display: none;
}

.select-wrap {
    position: relative;
}

.select-wrap:before {
    z-index: 1;
    position: absolute;
    right: 10px;
    top: 0;
    content: "expand_more";
    font-family: "Material Icons";
    font-weight: 900;
    line-height: 38px;
    color: #040404;
    pointer-events: none;
}
select,
.ms-choice{
    outline:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 38px;
    line-height: 38px;
    padding: 0 24px 0 12px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #d6d6d6;
    /*background: #EFEFEF;*/
    background: #fff;
    color: #040404;
    width:100%;
    font-size :14px; font-size: 1.4rem;
}
select option{
  color: #000;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #828c9a;
}

.btn{
    position: relative;
    display: inline-block;
    overflow: hidden;
    min-width: 120px;
    height: 38px;
    line-height: 38px;
    margin: 0;
    padding: 0 20px;
    border-radius: 19px;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px; font-size: 1.4rem;
    transition: all .3s;
}

.btn .material-icons{
    display: inline-block;
    line-height: 38px;
    margin: 0 8px 0 0;
    vertical-align: middle;
    font-size: 18px; font-size: 1.8rem;
}

.btn-blue{
    background: #181C61;
    color: #fff;
}

.btn-red{
    background: #C9323B;
    color: #fff;
}

.btn-blue::after,
.btn-gray::after,
.btn-red::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.3s, opacity 1s;
}

.btn-blue:active::after,
.btn-gray:active::after,
.btn-red:active::after{
    transform: scale(0, 0);
    transition: 0s;
    opacity: 0.3;
}

.btn-gray{
    background: #9c9c9c;
    color: #fff;
}

.btn-bdr-gray{
    line-height: 34px;
    border: 2px solid #9C9C9C;
    border-radius: 30px;
    background: transparent;
    color: #9C9C9C;
}

.btn-bdr-gray:hover{
    background: #9C9C9C;
    color: #fff;
}

.btn-bdr-gray .material-icons,
.btn-bdr-blue .material-icons{
    line-height: 34px;
}

.btn-bdr-blue{
    line-height: 34px;
    border: 2px solid #181C61;
    border-radius: 30px;
    background: #fff;
    color: #181C61;
}

.btn-bdr-blue:hover{
    background: #181C61;
    color: #fff;
    text-decoration: none;
}

.btn-s{
    width: auto;
    min-width: 64px;
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
    text-wrap: nowrap;
}

.btn-bdr-s{
    width: auto;
    min-width: inherit;
    padding: 0 16px;
    height: 30px;
    line-height: 26px;
}

:focus{
    outline: none;
}

.search-box .flex-box .multiple-select ul{
    padding: 16px 16px 8px;
}

.search-box .flex-box .multiple-select li{
    display: inline-block;
    width: auto;
    margin: 0 16px 8px 0;
    padding: 0;
}

.search-box .flex-box .multiple-select li input[type="checkbox"]{
    margin-top: 0.5rem;
    margin-left: -1.8rem;
}

.card-bdr{
    margin: 0 -16px 30px;
    height: 2px;
    border: 0;
    background: #efefef;
}

.ms-choice>span{
    padding-left: 12px;
}

.ms-choice>div.icon-caret{
    right: 14px;
}

/* ==============
    MOBILE:Header
   ============== */

#header-container{
    position: relative;
    /*height: 66px;*/
    margin: 0;
    /*border-bottom: 1px solid #D6D6D6;*/
    box-sizing: border-box;
}

#header-container .logo{
    height: 66px;
    margin: 0 -16px;
    padding: 13px 16px;
    box-sizing: border-box;
    border-bottom: 1px solid #D6D6D6;
}

#header-container .logo a{
    display: block;
    overflow: hidden;
    width: 146px;
    height: 0;
    padding: 40px 0 0;
    background: url(../img/logo_sp@3x.png?1218) no-repeat left top;
    background-size: 146px 40px;
}

/* ==============
    MOBILE:Menu
   ============== */

#side-bar{
    position: relative;
}

#nav-toggle {
    position: absolute;
    display: block;
    top: -66px;
    right: 0;
    width: 60px;
    height: 66px;
    padding: 25px 15px;
    box-sizing: border-box;
    background: #181C61;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 10px;
}
#nav-toggle span:nth-child(3) {
    top: 20px;
}

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}

#g-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -5000px;
    background: rgba(24,28,97,0.8);
    width: 100%;
    height: calc(100vh - 66px);
    overflow-y: auto;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    z-index: 101;
}

.open #g-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(5000px);
    -webkit-transform: translateY(5000px);
    transform: translateY(5000px);
}

#g-nav .side-menu li a{
    display: block;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px; font-size: 1.6rem;
    font-weight: bold;
}

.user-info-box{
    margin: 20px 0;
}

.user-info-box .material-icons{
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 0 8px 0 0;
    text-align: center;
    color: #D6D6D6;
    vertical-align: middle;
    font-size: 16px; font-size: 1.6rem;
}

.user-name{
    font-weight: normal;
    font-size: 14px; font-size: 1.4rem;
    color: #fff;
}

.btn-hdr{
    display: block;
    padding: 0 20px;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-hdr:hover{
    color: #fff;
    text-decoration: none;
}


/* ==============
    MOBILE:Main
   ============== */ 

#main-container {
    min-height: calc(100vh - 100px);
    padding: 0;
    box-sizing: border-box;
    background: #fff;
}

#main-container .wrapper{
    margin: 0 16px 30px;
}

#main-container .card{
    /*padding: 16px;
    border-radius: 10px;
    background: #fff;*/
}

.alert{
    margin: 0 0 20px;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.alert-danger{
    background: #FFE8E8;
    color: #FF5757;
}

.alert-message{
    background: #D3F4FF;
    color: #87CEEB;
}

.ttl-box{
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hx-ttl{
    line-height: 50px;
    height: 50px;
    margin: 0 0 30px;
    padding: 0 16px;
    box-sizing: border-box;
    background: #EFEFEF;
    font-size: 20px; font-size: 2.0rem;
    color: #181C61;
}

.ttl-box .btn-box{
    margin: 0 0 30px;
}

.btn-box{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0 0 30px;
}

.btn-box.btn-lft{
    justify-content: flex-start;
}

.btn-box li{
    display: block;
    margin: 0 0 20px 20px;
}

.btn-box li:first-child{
    margin: 0;
}

.search-box{
    padding: 24px 16px 8px;
    background: #efefef;
}

.search-box.top{
    padding: 0;
    background: #fff;
}

.search-box .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.search-box .flex-box{
    width: 100%;
    margin: 0 0 10px;
}

.search-box .flex-box li{
    margin: 0 0 10px;
}

.search-box .flex-box li .form-parts{
    width: 100%;
}

.search-box .flex-box li .form-parts dt{
    display: block;
    margin: 0 0 8px;
    font-weight: bold;
    font-size: 13px; font-size: 1.3rem;
}

.search-box .flex-box li .form-parts dd{
    display: block;
    margin: 0 0 16px;
}

.search-box .flex-box li .form-parts dd .form-flex,
.tbl-blc .form-flex{
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.form-flex.select-box{
    margin: 0 -8px;
}

.form-flex.select-box .select-wrap{
    padding: 0 8px;
}

.form-flex .radio-box{
    margin: 0 16px 0 0;
}

.search-box .flex-box li .form-parts dd .form-txt{
    margin: 0 8px;
}

.search-box .btn-box{
    margin: 0;
}

.search-box.top .btn-box{
    margin: 0 0 20px;
}

.tbl-scroll-box{
    /*margin: 0 -16px;*/
}

.tbl{
    width: 100%;
    border-collapse: collapse;
}

.tbl.tbl-striped{
    margin: 0 0 30px;
    white-space: nowrap;
}

.tbl.tbl-striped th,
.tbl.tbl-striped .td-hdr{
    line-height: 1.4;
    padding: 10px;
    border: 1px solid #d6d6d6;
    border-bottom: 2px solid #d6d6d6;
    font-size: 12px; font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #666;
    text-wrap: nowrap;
}

.tbl.tbl-striped .td-hdr:first-of-type{
    border-right: 1px solid #d6d6d6;
}

.tbl.tbl-striped .td-hdr:nth-of-type(3){
    background: #e7e7e7;
    /*border-bottom: 1px solid #d6d6d6;*/
}

.tbl.tbl-striped.balance-sheet thead th:first-of-type,
.tbl.tbl-striped.balance-sheet tbody tr td:first-of-type,
.tbl.tbl-striped.balance-sheet thead th:last-of-type,
.tbl.tbl-striped.balance-sheet tbody tr td:last-of-type{
    padding: 8px 20px;
}

.tbl.tbl-striped tbody tr td{
    border: 1px solid #d6d6d6;
}

.tbl.tbl-striped td{
    padding: 10px;
    font-size: 12px; font-size: 1.2rem;
}

.tbl.tbl-striped tbody tr{
    background: #fff;
}

.tbl.tbl-striped tbody tr:nth-of-type(even),
.tbl.tbl-striped.scout tr:nth-of-type(odd){
    background: #F2F2FF;
}

.tbl.tbl-striped thead tr,
.tbl.tbl-striped.scout tr:first-of-type,
.tbl.tbl-striped .td-hdr:first-of-type,
.tbl.tbl-striped .td-hdr:nth-of-type(2){
    background: #e7e7e7;
}

.tbl.tbl-striped.balance-sheet td{
    padding: 8px 20px;
}

.tbl.tbl-striped.balance-sheet tr td:nth-of-type(3){
    border-left: 1px solid #d6d6d6;
}


.tbl.tbl-striped.scout td,
.tbl.tbl-striped.scout th{
    padding: 8px;
    border-bottom: 1px solid #d6d6d6;
}

.tbl.tbl-striped.scout tr:first-of-type th{
    padding: 10px 8px;
    border-top: 1px solid #d6d6d6;
    border-bottom: 2px solid #d6d6d6;
}

.tbl.tbl-striped.scout td{
    text-align: right;
}

.tbl.tbl-blc{
    margin: 0 0 30px;
}

.tbl.tbl-blc th,
.tbl.tbl-blc td{
    display: block;
    text-align: left;
}

.tbl.tbl-blc th{
    margin: 0 0 5px;
    font-weight: bold;
}

.tbl.tbl-blc td{
    margin: 0 0 8px;
    word-break: break-all;
}

.tbl-ttl{
    margin: 0 0 10px;
    font-size: 16px; font-size: 1.6rem;
    font-weight: bold;
    color: #001866;
}

.required{
    display: inline-block;
    line-height: 1;
    margin: 0 0 0 8px;
    padding: 4px;
    border-radius: 4px;
    background: #C9323B;
    color: #fff;
    font-size: 12px; font-size: 1.2rem;
    font-weight: normal;
}

.pagination-box{
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
    min-height: 30px;
    margin: 0 0 20px;
    text-align: center;
}

.page-number{
    display: inline-block;
    margin: 0;
    font-size: 12px; font-size: 1.2rem;
    text-align: right;
}

.pagination-box .select-wrap{
    margin: 0 0 0 10px;
}

.pagination{
    display: inline-block;
    margin: 0 0 0 20px;
    padding-left: 0;
    border-radius: 2px;
}

.pagination>li{
    display: inline;
}

.pagination>li>a,
.pagination>li>span{
    position: relative;
    float: left;
    margin: 0 0 0 -1px;
    padding: 4px 10px;
    text-decoration: none;
    border: 1px solid #181C61;
    color: #181C61;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover{
    border-color: #181C61;
    background-color: #181C61;
    color: #fff;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover{
    border-color: #181C61;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover{
    background-color: #fff;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span{
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span{
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.pagination i.material-icons{
    font-size: 18px; font-size: 1.8rem;
    vertical-align: sub;
}

.hx-sub-ttl{
    position: relative;
    line-height: 1;
    margin: 0 0 20px;
    padding: 0;
    font-size: 16px; font-size: 1.6rem;
    font-weight: bold;
}

/*.hx-sub-ttl::before{
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #181C61;
}*/

.hx-modal-ttl{
    margin: 0 -15px 30px; 
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    box-sizing: border-box;
    background: #59b1f5;
    color: #fff;
    font-size: 18px; font-size: 1.8rem;
}

.li-form-parts li{
    display: inline-block;
    margin: 0 10px 0 0;
}

input[type="checkbox"], 
input[type="radio"]{
    margin: 0 5px 0 0;
    vertical-align: middle;
}

.form-flex-box{
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.form-flex-box .form-txt{
    margin: 0 0 0 8px;
    text-wrap: nowrap;
}

.form-flex-box .form-txt.ctr{
    margin: 0 8px;
}

.form-flex-box .date-wrap{
    flex: 1;
}

.has-error{
    display: block;
    color: #FF5757;
}

.show-password-box{
    margin: 10px 0 0;
}

.keyword-search-box{
    position: relative;
    margin: 0 0 40px;
}

.keyword-search-box .btn{
    position: absolute;
    top: 0;
    right: 0;
    height: 32px;
    line-height: 32px;
    border-radius: 0 5px 5px 0;
}

.keyword-search-box .btn .material-icons{
    line-height: 32px;
}

.li-setting-btn-box{
    position: relative;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 -8px;
}

.li-setting-btn-box li{
    width: 50%;
    margin: 0 0 16px;
    padding: 0 8px;
    box-sizing: border-box;
}

.li-setting-btn-box li .btn{
    width: 100%;
}

.clear-date-btn{
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 38px;
    line-height: 38px;
    margin: 0 0 0 8px;
    padding: 0 20px;
    border-radius: 4px;
    border: none;
    background: #9C9C9C;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px; font-size: 1.6rem;
    transition: all .3s;
    color: #fff;
}

.modal-main{
    word-break: break-all;
}

.modal-main .li-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -16px 20px;
}

.modal-main .li-flex li{
    width: 100%;
    margin: 0 0 20px;
    padding: 0 16px;
    box-sizing: border-box;
}

.modal-main .li-flex li .dl-form dt{
    line-height: 1;
    font-weight: bold;
    margin: 0 0 8px;
}

.modal-main .li-flex li input[type="number"]{
    width: 100%;
}

.modal-main .li-flex li textarea{
    min-height: 120px;
}

.modal-main .li-flex li .dl-form dd .has-error{
    display: block;
    margin: 5px 0 0;
}

.modal-main .li-flex li .dl-form .form-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#notice_massege.has-error{
    text-align: right;
    margin: 0 0 10px;
}

.hx-modal{
    margin: 0 -16px 30px;
    padding: 10px 16px;
    border-bottom: 1px solid #d6d6d6;
    color: #181C61;
    font-size: 20px; font-size: 2.0rem;
}

.page-flex-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-flex-box .btn-box{
    margin: 0 0 20px;
}

.ico-delete .material-icons{
    color: #C9323B;
}

.dl-term-flex-box{
    margin: 0 0 20px;
}

.dl-term-flex-box dt{
    margin: 0 0 10px;
    font-weight: bold;
}

.dl-term-flex-box dd .form-flex{
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
}

.radio-btn-box{
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 10px;
}

.radio-btn-box input[type="radio"]{
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
}

.radio-btn-box label{
    display: block;
    line-height: 1;
    margin: 0;
    padding: 11px 20px;
    border: 1px solid #d6d6d6;
    box-sizing: border-box;
    cursor: pointer;
    transition: .3s;
}

.radio-btn-box li{
    margin: 0 0 0 -1px;
}

.radio-btn-box li:first-child label{
    border-radius: 4px 0 0 4px;
}

.radio-btn-box li:last-child label{
    border-radius: 0 4px 4px 0;
}

.radio-btn-box input[type="radio"]:checked+label{
    background: #F2F2FF;
    color: #181C61;
    font-weight: bold;
}

.dl-term-flex-box .form-txt{
    margin: 0 8px;
}

.mb-box{
    margin: 0 0 30px;
}

.flow-bg-box{
    padding: 10px;
}

.flow-rgt .flex-box{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 -5px;
}

.flow-rgt .flex-box .dl-w-box{
    flex: 1;
    margin: 0 5px 10px;
}

.dl-w-box{
    margin: 0 0 10px;
    padding: 8px 16px;
    border-radius: 4px;
    background: #fff;
    white-space: nowrap;
}

.dl-w-box dt{
    font-weight: bold;
}

.dl-w-box dd{
    font-weight: bold;
    font-size: 16px; font-size: 1.6rem;
}

.dl-w-box dd .txt-l{
    font-size: 18px; font-size: 1.8rem;
}

.txt-red{
    color: #C9323B;
}

.search-box.top .search-box .flex-box.col2 li:last-child{
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
}

.tab-item{
    display: inline-block;
    width: auto;
    line-height: 1;
    margin: 0 4px 0 0;
    padding: 10px;
    border-radius: 4px 4px 0 0;
    background: #EFEFEF;
    font-size: 14px; font-size: 1.4rem;
    text-align: center;
    color: #565656;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.tab input[type="radio"] {
    margin: 0;
    display: none;
}

.tab-content {
    display: none;
    background: #F2F2FF;
}

/*#tabtotal:checked ~ #tabtotal_contents,
#tab17:checked ~ #tab17_contents,
#tab18:checked ~ #tab18_contents,
#tab19:checked ~ #tab19_contents {
  display: block;
}*/

.tab input:checked + .tab-item {
  background: #F2F2FF;
  color: #181C61;
}

.inner-menu{
    position: relative;
    display: none;
    transition: all .3s;
}

.inner-menu.open{
    display: block;
}

.toggle-box{
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-box .toggle-btn{
    margin: 0 0 0 20px;
    cursor: pointer;
    color: #fff;
}

.toggle-box .toggle-btn .material-icons{
    vertical-align: middle;
}

.toggle-box .toggle-btn.close{
    transform:rotateX(180deg); 
}

.star-rating{
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	color: #cfcfd0;
}

.star-rating:before, .star-rating:after{
    content: '★★★★★';
}

.star-rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f0bb00;
}

.star-rating[data-rate="5"]:after{ width: 100%; }
.star-rating[data-rate="4.9"]:after{ width: 98%; }
.star-rating[data-rate="4.8"]:after{ width: 96%; }
.star-rating[data-rate="4.7"]:after{ width: 94%; }
.star-rating[data-rate="4.6"]:after{ width: 92%; }
.star-rating[data-rate="4.5"]:after{ width: 90%; }
.star-rating[data-rate="4.4"]:after{ width: 88%; }
.star-rating[data-rate="4.3"]:after{ width: 86%; }
.star-rating[data-rate="4.2"]:after{ width: 84%; }
.star-rating[data-rate="4.1"]:after{ width: 82%; }
.star-rating[data-rate="4"]:after{ width: 80%; }
.star-rating[data-rate="3.9"]:after{ width: 78%; }
.star-rating[data-rate="3.8"]:after{ width: 76%; }
.star-rating[data-rate="3.7"]:after{ width: 74%; }
.star-rating[data-rate="3.6"]:after{ width: 72%; }
.star-rating[data-rate="3.5"]:after{ width: 70%; }
.star-rating[data-rate="3.4"]:after{ width: 68%; }
.star-rating[data-rate="3.3"]:after{ width: 66%; }
.star-rating[data-rate="3.2"]:after{ width: 64%; }
.star-rating[data-rate="3.1"]:after{ width: 62%; }
.star-rating[data-rate="3"]:after{ width: 60%; }
.star-rating[data-rate="2.9"]:after{ width: 58%; }
.star-rating[data-rate="2.8"]:after{ width: 56%; }
.star-rating[data-rate="2.7"]:after{ width: 54%; }
.star-rating[data-rate="2.6"]:after{ width: 52%; }
.star-rating[data-rate="2.5"]:after{ width: 50%; }
.star-rating[data-rate="2.4"]:after{ width: 48%; }
.star-rating[data-rate="2.3"]:after{ width: 46%; }
.star-rating[data-rate="2.2"]:after{ width: 44%; }
.star-rating[data-rate="2.1"]:after{ width: 42%; }
.star-rating[data-rate="2"]:after{ width: 40%; }
.star-rating[data-rate="1.9"]:after{ width: 38%; }
.star-rating[data-rate="1.8"]:after{ width: 36%; }
.star-rating[data-rate="1.7"]:after{ width: 34%; }
.star-rating[data-rate="1.6"]:after{ width: 32%; }
.star-rating[data-rate="1.5"]:after{ width: 30%; }
.star-rating[data-rate="1.4"]:after{ width: 28%; }
.star-rating[data-rate="1.3"]:after{ width: 26%; }
.star-rating[data-rate="1.2"]:after{ width: 24%; }
.star-rating[data-rate="1.1"]:after{ width: 22%; }
.star-rating[data-rate="1"]:after{ width: 20%; }
.star-rating[data-rate="0.9"]:after{ width: 18%; }
.star-rating[data-rate="0.8"]:after{ width: 16%; }
.star-rating[data-rate="0.7"]:after{ width: 14%; }
.star-rating[data-rate="0.6"]:after{ width: 12%; }
.star-rating[data-rate="0.5"]:after{ width: 10%; }
.star-rating[data-rate="0.4"]:after{ width: 8%; }
.star-rating[data-rate="0.3"]:after{ width: 6%; }
.star-rating[data-rate="0.2"]:after{ width: 4%; }
.star-rating[data-rate="0.1"]:after{ width: 2%; }
.star-rating[data-rate="0"]:after{ width: 0%; }

.file-box{
    position: relative;
    margin: 0 0 16px;
}

.file-link{
    position: relative;
    display: inline-block;
}

.file-btn-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 16px;
}

.file-btn-box .file-path{
    margin: 0 16px 0 0;
}

.btn-remove{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(24,28,97,.8);
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.btn-remove:hover{
    background: rgba(24,28,97,1);
}

.td-inner-flex span{
    display: block;
    margin: 0 0 8px;
    font-weight: bold;
    color: #181C61;
}

.status-txt{
    display: inline-block;
    margin: 0 0 0 8px;
    font-weight: bold;
    font-size: 16px; font-size: 1.6rem;
}

.tbl.tbl-striped td .material-icons{
    vertical-align: middle;
    font-size: 20px; font-size: 2.0rem;
}

/* ==============
    MOBILE:Footer
   ============== */

#footer-container{
    height: 50px;
    box-sizing: border-box;
}

#footer-container .copy{
    line-height: 50px;
    text-align: center;
    font-size: 12px; font-size: 1.2rem;
}


/* ==========================================================================
    Media Queries
   ========================================================================== */

@media only screen and (min-width: 768px) {

    .sp{ display: none; }
    .pc{ display: block; }

    #container{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        min-height: 100vh;
    }

    .btn{
        min-width: 140px;
    }

/* ==============
    WIDE: Header
   ============== */

    #header-container{
        height: 80px;
        margin: 0 0 40px;
        border-bottom: none;
    }

    #header-container .wrapper{
        margin: 0;
    }

    #header-container .logo{
        height: 80px;
        margin: 0;
        padding: 15px 18px 15px 18px;
        border-right: 1px solid #D6D6D6;
        border-bottom: none;
        box-sizing: border-box;
        background: #fff;
    }

    #header-container .logo a{
        width: 183px;
        padding: 50px 0 0;
        background: url(../img/logo_pc@3x.png?1218) no-repeat left top;
        background-size: 183px 50px;
    }

    .hdr-flex-box{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        line-height: 80px;
        margin: 0 0 40px;
        background: #EFEFEF;
    }

    .hdr-flex-box .info{
        flex: 1;
    }

    .user-info-box{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        margin: 0;
    }

    .user-info-box .material-icons{
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin: 0 10px 0 0;
        border-radius: 30px;
        background: #D6D6D6;
        text-align: center;
        color: #fff;
        vertical-align: middle;
        font-size: 18px; font-size: 1.8rem;
    }

    .user-name{
        font-weight: bold;
        color: #040404;
    }

    .btn-hdr{
        display: block;
        padding: 0 20px;
        color: #040404;
        font-weight: bold;
        text-decoration: none;
        transition: all .3s ease;
    }

    .btn-hdr:hover{
        color: #040404;
        text-decoration: none;
    }

    .btn-hdr:hover .material-icons{
        background: #181C61;
    }

    .btn-hdr:last-of-type{
        padding-right: 40px;
    }

/* ==============
    WIDE: Menu
   ============== */

   #side-container{
       min-width:220px;
       max-width:220px;
       width: 220px;
       padding: 0;
       border-right: 1px solid #d3d4df;
       box-sizing: border-box;
       background: #fff;
   }

   #nav-toggle{
       display: none;
   }

    #g-nav{
        position: relative;
        top: 0;
        background: transparent;
    }

    #g-nav .side-menu li{
        position: relative;
        padding: 0 16px;
    }

    #g-nav .side-menu li a{
        padding: 0 16px;
        text-align: left;
        color: #888888;
        font-size: 14px; font-size: 1.4rem;
        transition: all .3s ease;
    }

    #g-nav .side-menu li a:hover{
        color: #001866;
    }

    #g-nav .side-menu li.active::before{
        content: " ";
        position: absolute;
        top: 7px;
        left: 0;
        width: 5px;
        height: 24px;
        border-radius: 0 2px 2px 0;
    }

    #g-nav .side-menu li.active a{
        border-radius: 5px;
        background: #EFEFEF;
        color: #181C61;
    }

/* ==============
    WIDE: Main
   ============== */

    #main-container{
        min-width: 1000px;
        flex: 1;
        padding: 0;
        overflow-x: auto;
    }

    #main-container .wrapper{
       margin: 0 40px 40px;
    }

    #main-container .card{
        /*padding: 40px;*/
    }

    .btn-box li{
        margin: 0 0 0 20px;
    }

    .hx-ttl{
        height: 80px;
        line-height: 80px;
        margin: 0;
        padding: 0 40px;
        font-size: 30px; font-size: 3.0rem;
    }

    .ttl-box .btn-box{
        margin: 0 0 40px;
    }

    .search-box .flex-box{
        width: auto;
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        margin: 0 8px 0 0;
    }

    .search-box .flex-box.between{
        justify-content: space-between;
        margin: 0;
    }

    .search-box .flex-box.between .btn-box li{
        margin: 0;
    }

    .search-box .flex-box.col2{
        margin: 0 -16px;
    }

    .search-box .flex-box li{
        margin: 0 16px 16px 0;
        padding: 0;
        box-sizing: border-box;
    }

    .search-box .flex-box.col2 li{
        width: 50%;
        margin: 0 0 20px;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .search-box .flex-box.col2 li .form-parts dt{
        width: 20%;
    }

    .tbl-scroll-box{
        /*margin: 0 -40px;*/
    }

    .tbl.tbl-striped{
        white-space: normal;
    }

    .tbl.tbl-blc{
        margin: 0 0 30px;
    }

    .tbl.tbl-blc th,
    .tbl.tbl-blc td{
        display: table-cell;
    }

    .tbl.tbl-blc th{
        width: 30%;
    }

    .tbl.tbl-blc tr{
        border-bottom: 1px solid #d3d4df;
    }

    .tbl.tbl-blc th{
        margin: 0;
        padding: 16px;
    }

    .tbl.tbl-blc td{
        margin: 0;
        padding: 16px;
    }

    .hx-sub-ttl{
        position: relative;
        line-height: 1;
        margin: 0 0 30px;
        font-size: 20px; font-size: 2.0rem;
    }

    .hx-modal-ttl{
        margin: 0 -30px 30px; 
        padding: 10px 30px;
        border-radius: 5px 5px 0 0;
        box-sizing: border-box;
        background: #59b1f5;
        color: #fff;
        font-size: 18px; font-size: 1.8rem;
    }

    .li-setting-btn-box li{
        width: 25%;
    }

    .li-setting-btn-box::before{
      content: "";
      display: block;
      width: 25%;
      order:1;
    }
    .li-setting-btn-box::after{
      content: "";
      display: block;
      width: 25%;
    }

    .card-bdr{
        margin: 0 0 30px !important;
    }

    .search-box .flex-box li .form-parts{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    
    .search-box .flex-box li .form-parts dt{
        margin: 0 8px 0 0;
        font-weight: bold;
        font-size: 13px; font-size: 1.3rem;
    }

    .search-box .flex-box li .form-parts dd{
        flex: 1;
        margin: 0;
    }

    .modal-main .li-flex{
        margin: 0 -16px 20px;
    }

    .modal-main .li-flex li{
        width: 50%;
    }

    .modal-main .li-flex li.w100{
        width: 100%;
    }

    .hx-modal{
        margin: 0 -30px 40px;
        padding: 16px 30px;
        font-size: 24px; font-size: 2.4rem;
    }

    .dl-term-flex-box{
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .dl-term-flex-box dt{
        margin: 0 20px 0 0;
    }

    .dl-term-flex-box dd{
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .dl-term-flex-box dd .form-flex{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
    }

    .radio-btn-box{
        margin: 0 10px 0 0;
    }

    .mb-box{
        margin: 0 0 40px;
    }

    .flow-bg-box{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 30px 20px;
    }


    .flow-bg-box .tbl.tbl-striped{
        margin: 0;
    }

    .flow-bg-box .tbl-scroll-box{
        flex: 1;
        margin: 0 30px 0 0;
    }

    .flow-rgt .flex-box{
        margin: 0 -8px;
    }

    .dl-w-box{
        margin: 0 0 16px;
    }

    .flow-rgt .flex-box .dl-w-box{
        margin: 0 8px 16px;
    }

    .tab-item{
        padding: 15px 10px;
    }

    .toggle-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .toggle-box .toggle-btn{
        margin: 0 0 0 20px;
        padding: 5px;
        border-radius: 4px;
        cursor: pointer;
        color: #888;
        transition: all .3s;
    }

    .toggle-box .toggle-btn:hover{
        background: #EFEFEF;
        color: #181C61;
    }
    
    .td-inner-flex{
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .td-inner-flex span{
        margin: 0 16px 0 0;
        white-space: nowrap;
    }

/* ==============
    WIDE: Footer
   ============== */



}
