@charset "utf-8";

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* main */
/* .main_content .top_box {
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.main_content .top_box .box {
    width: 50%;
    flex: 1;
} */

.main_content .top_box {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
    gap: 20px;
}
.main_content .top_box .box {
    height: 100%;    
}

.main_content .top_box .box .list_box {
    height: calc(100% - 31px);
}

.main_content .list_box {
    border: 1px solid #d6d6dd;
    background-color: #fff;
    width: 100%;    
}

.main_content .list_box .list_top,
.main_content .list_box .list_content {
    padding: 0 25px;
}

.main_content .list_box .list_top {
    border-bottom: 1px solid #E2E2E2;
}

.main_content .list_box .list_top .left li {
    padding: 20px 0;
    cursor: pointer;
    color: #1B1B1B;
    margin-right: 25px;
    position: relative;
}

.main_content .list_box .list_top .left li.active {
    color: #3751FF;
}

.main_content .list_box .list_top .left li.active::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #3751FF;
    bottom: -2px;
    left: 0;
    right: 0;
}

.main_content .list_box .list_top .right {
    width: 15px;
    height: 15px;
    margin-left: auto;
}

.main_content .list_box .list_content {
    display: none;
}

.main_content .list_box .list_content.active {
    display: block;
}

.main_content .list_box .list_content .con_box {
    padding: 15px 0;
}

.main_content .list_box .list_content .con_box a {
    padding: 6px 0;
    line-height: 1.3em;
}

.main_content .list_box .list_content .con_box a .name.icon .new_icon {
    display: inline-flex;
}

.main_content .list_box .list_content .con_box a .date {
    margin-left: auto;
    min-width: 100px;
    text-align: right;
}

.main_content .list_box .list_content .con_box a .new_icon {
    min-width: 15px;
    min-height: 15px;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    display: none;
    align-items: center;
    justify-content: center;
}

/* 매출 */
.list_box.date {
    padding: 30px 40px;
    display:flex;
    flex-direction: column;
}

.list_box.date.two {
    padding: 30px 25px;
}

.list_box.date .form_tit {
    margin-right: 30px;
    min-width: 50px;
	text-align: right;
}

.common_form_box {
    width: 100%;
}

.common_form_box .d_box {
    width: 150px;
}

.common_form_box .style_box {
    height: 32px;
    position: relative;
    border: 1px solid #D6D6DF;
}

.common_form_box .date_box span {
    margin: 0 8px;
}

.common_form_box input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 400;
    color: #111;
}

.common_form_box input::placeholder {
    color: #666;
}

.common_form_box .d_box input {
    margin-left: 30px;
    padding-left: 20px;
    width: calc(100% - 30px);
    border-left: 1px solid #D6D6DF;
}

.common_form_box .d_box img {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
}

.common_select {
    width: 100%;
    height: 100%;
    appearance: none;
    padding-left: 10px;
/*     padding-right: 75px; */
    background: url('/images/main/select_arw.svg') no-repeat center right 10px / 13px;
    font-size: 12px;
    font-weight: 400;
    color: #111;
}

.common_form_box .style_box.s_box {
    min-width: 132px;
}

.list_box.date.last {
    padding-bottom: 85px;
}
.list_box.date.last .main_tit {
    line-height: 1;
}
.list_box.date.last .state_box {
    gap: 10px;
}
.list_box.date.last .state_box li {
    border: 1px solid #BFC6D7;
    line-height: 1;
    width: 19.4%;
}

.list_box.date.last .state_box li .state_top {
    border-bottom: 1px solid #BFC6D7;
    background-color: #E7EEF9;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    color: #656A84;;
}
.list_box.date.last .state_box li .state_btm {
    padding: 15px 20px;
}
.list_box.date.last .state_box li .state_btm .box {
    padding: 5px 0;
    justify-content: space-between;
}
.list_box.date.last .state_box li .state_btm .box .name {
    font-weight: 400;
}
.list_box.date.last .state_box li .state_btm .box .small {
    font-size: 9px;
}
/* END 매출 */

/* common_table */
.common_table th {
    font-weight: 400;
}
.common_table th,
.common_table td {
    border: 1px solid #C6C6C6;
    line-height: 1.3rem;
    text-align: center;
    padding: 13px;
    font-size: 13px;
}
.common_table .head {
    background-color: #E7EAED;
}
.common_table .body td {
    font-size: 12px;
}
.common_table .body td .box {
    border-radius: 5px;
    background-color: #F8F8F8;
    width: 100%;
    padding: 10px 15px;
    font-size: 10px;
}
.common_table .body td .box .name {
    color: #656A84;
    margin-bottom: 8px;
}
.common_table .body td .sub_box {
    justify-content: space-between;
}
/* END common_table */

/* END main */
.column {
	flex-direction: column;
	align-items: flex-start;
}
.flex.base {
	align-items: flex-start;
}
.flex_s {
	justify-content: space-between;
}
.list_common_btn.write.base {
	margin-left: unset;
}
.b_line {
	position: relative;
}
/*.b_line::after {*/
/*	content: '' ;*/
/*	position: absolute;*/
/*	left: -30px;*/
/*	height: 190%;*/
/*	top: 50%;*/
/*	width: 2px;*/
/*	transform: translateY(-50%);*/
/*	background-color: #ddd;*/
/*}*/

.con6_list_group .empty_list {
	min-height : 200px;
	display : flex;
	align-items:center;
	justify-content : center;
}