﻿@charset "UTF-8";
/*
 * common.css
 *
 *  version --- 1.0
 *  updated --- 2021/02/04
 */

/* !Base Fonts -------------------------------------------------------------- */

a {
    color: #000;
    text-decoration: none;
    transition: all .5s;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
    transition: all .5s;
}

.font-normal {
    font-weight: normal;
}

.font-bold {
    font-weight: bold;
}

.ruby {
    display: block;
    font-size: .9rem;
    color: #b5b4b4;
}

.color-blue {
    color: #438cef;
}

.color-red {
    color: #c90909;
}

/* !Inline Align ------------------------------------------------------------ */

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.vertical-top {
    vertical-align: top !important;
}

.vertical-middle {
    vertical-align: middle !important;
}

.vertical-bottom {
    vertical-align: bottom !important;
}

/* !category ------------------------------------------------------------------- */
.category {
    width: 80px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 12px;
    color: #fff;
}

.category-drakbule {
    background: #0074bd;
}

.category-bule {
    background: #00c2f0;
}

.category-drakgreen {
    background: #00c199;
}

.category-green {
    background: #73c418;
}

.category-orange {
    background: #ffba00;
}

.category-gray {
    background: #b5b4b4;
}

/* !Floats ------------------------------------------------------------------ */

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/* !Tools ------------------------------------------------------------------- */

.clear {
    clear: both;
}

.hide {
    display: none !important;
}

.text-underline {
    text-decoration: underline;
}

.text-mark {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    text-align: center;
}

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

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

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

.flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

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

.align-end {
    display: flex;
    align-items: flex-end;
}

/* !h(n)eading
---------------------------------------------------------- */

.heading-large {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.14;
    padding: 0 0 0 13px; 
    margin: 0 0 24px;
    border-left: 3px solid #0A685A;
}

.heading-middle {}

.heading-small {}

/* !table
---------------------------------------------------------- */
.table-editform {
    width: 100%;
}

.table-editform th,
.table-editform td {
    border: 1px solid #b5b4b4;
    padding: 16px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.table-editform th {
    background: #efefef;
    vertical-align: top;
    text-align: left;
    font-weight: bold;
    max-width: 250px;
    box-sizing: border-box;
}

.table-editform td {
    background: #fff;
    vertical-align: middle;
}

.table-editform td p + p {
    margin-top: 16px;
}

.table-editform-notes {
    font-size: 12px;
    line-height: 1.66;
    color: #b5b4b4;
}

.table-displayform-list {
    width: 100%;
    border: 1px solid #b5b4b4;
    margin: 16px 0;
}

.table-displayform-list th,
.table-displayform-list td {
    font-size: 1.2rem;
    line-height: 1.5;
}

.table-displayform-list th {
    background: #fff;
    vertical-align: top;
    text-align: left;
    font-weight: bold;
    box-sizing: border-box;
    border-bottom: 1px solid #b5b4b4;
    padding: 15px 0 15px 15px;
}

.table-displayform-list td {
    background: #fff;
    vertical-align: middle;
    border-bottom: 1px dotted #b5b4b4;
    padding: 20px 0 20px 24px;
}

.table-displayform-information {
    width: 100%;
    border: 1px solid #b5b4b4;
}

.table-displayform-information th,
.table-displayform-information td {
    font-size: 1.2rem;
    line-height: 1.5;
    border-bottom: 1px solid #b5b4b4;
}

.table-displayform-information th {
    background: #fff;
    vertical-align: top;
    text-align: left;
    font-weight: bold;
    box-sizing: border-box;
    background: #efefef;
    padding: 10px 16px;
}

.table-displayform-information td {
    background: #fff;
    vertical-align: middle;
    padding: 18px 16px;
}

/* !form
---------------------------------------------------------- */
.input-short,
.input-small,
.input-normal,
.input-middle,
.input-medium,
.input-large,
.input-full,
.textarea {
    border: 1px solid #b5b4b4;
    height: 32px;
    padding: 0 15px;
    font-size: 1.2rem;
    box-sizing: border-box;
    color: #575757;
}

.input-short.is_error,
.input-small.is_error,
.input-normal.is_error,
.input-middle.is_error,
.input-medium.is_error,
.input-large.is_error,
.input-full.is_error,
.textarea.is_error {
    border: 1px solid #c60f0f;
}

.input-short {
    width: 64px;
}

.input-small {
    width: 116px;
}

.input-normal {
    width: 232px;
}

.input-middle {
    width: 272px;
}

.input-medium {
    width: 304px;
}

.input-large {
    width: 560px;
}

.input-full {
    width: 100%;
}

.textarea {
    width: 560px;
    height: 112px;
    padding: 10px 15px;
    overflow: auto;
    resize: none;
    color: #575757;
}

.textarea-overview.is_error {
    border: 1px solid #c60f0f;
}

.textarea-overview {
    border: 1px solid #b5b4b4;
    width: 100%;
    height: 240px;
    color: #575757;
}

.select-small,
.select-short,
.select-normal,
.select-large,
.select-full{
    height: 32px;
    border: 1px solid #b5b4b4;
    font-size: 1.2rem;
    padding: 0 20px 0 16px;
    background: url("../img/icon_dropdown.svg") right 12px center no-repeat #fff;
    background-size: 14px 12px;
    color: #575757;
    margin-right: 16px;
    font-weight: bold;
    box-sizing: border-box;
}

.select-small.is_error,
.select-short.is_error,
.select-normal.is_error,
.select-large.is_error,
.select-full.is_error {
    border: 1px solid #c60f0f;
}

.select-radius {
    border-radius: 20px;
}

.select-small {
    width: 80px;
}

.select-short {
    width: 96px;
}

.select-normal {
    width: 104px;
}

.select-large {
    width: 560px;
}

.select-full {
    width: 100%;
}

.checkbox {
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.label-radio {
    position: relative;
    display: block;
    margin-right: 16px;
}

.label-radio input[type=radio] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: 0;
    top: 0;
}

.label-radio label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 32px;
    border: 1px solid #b5b4b4;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #fff;
    color: #575757;
}

.label-radio input[type=radio]:checked + label {
    color: #fff;
    border: 1px solid #0A685A;
    background: #0A685A;
}

.label-checkbox {
    position: relative;
    display: block;
    margin-right: 16px;
}

.label-checkbox input[type=checkbox] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: 0;
    top: 0;
}

.label-checkbox label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #575757;
    white-space: nowrap;
}
.label-checkbox label:before {
    display: block;
    margin-right: 8px;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border: 1px solid #b5b4b4;
    background: #fff;
    content: "";
}

.label-checkbox input[type=checkbox]:checked + label:before {
    border: 1px solid #0A685A;
    background: url("../img/icon_checked.svg") center 0 no-repeat #0A685A;
    background-size: 10px auto;
}

.label-calendar input {
    background: url("../img/icon_calendar.svg") right 16px center no-repeat #fff;
    background-size: 16px auto;
}

.form-order {
    display: inline-block;
    background-size: 7px auto;
    padding-right: 15px;
    white-space: nowrap;
}

.form-order-desc {
    background: url("../img/icon_drop.svg") right center no-repeat;
}

.form-order-asc {
    background: url("../img/icon_drop_asc.svg") right center no-repeat;
}

.label-name {
    display: inline-flex;
    width: 40px;
    height: 32px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.label-input + .label-name {
    margin-left: 16px;
}

.label-text {
    display: inline-flex;
    margin-right: 40px;
    position: relative;
}

.label-text .ruby {
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    width: 200%;
    text-align: center;
}

.form-button {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0 0;
}

.error-message {
    margin: 8px 0 0 !important;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #c60f0f;
    display: block;
}

/* !button
---------------------------------------------------------- */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 186px;
    height: 32px;
    border: 0;
    border-radius: 4px !important;
    font-size: 1.4rem;
    font-weight: bold;
    box-sizing: border-box;
    background: #fff;
}

.button-small {
    width: 112px;
}

.button-large {
    width: 230px;
}

.button + .button {
    margin-left: 16px;
}

.button:hover {
    text-decoration: none;
}

.button-green {
    background-color: #0A685A;
    color: #fff;
}

.button-red {
    background-color: #c60f0f;
    color: #fff;
}

.button-gary {
    background-color: #c4c4c4;
    color: #fff;
}

.button-download {
    border: 1px solid #b5b4b4;
    width: 112px;
    position: relative;
}

.button-download:before {
    width: 13px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    background: url("../img/icon_download.svg") center center no-repeat;
    background-size: 13px auto;
    content: "";
}

.button-delete {
    border: 1px solid #b5b4b4;
    background: #fff;
    width: 112px;
    position: relative;
}

.button-delete-red {
    border: 1px solid #c60f0f !important;
    background: #c60f0f;
    width: 112px;
    position: relative;
    color: #fff;
}

.button-cancel {
    border: 1px solid #c4c4c4 !important;
    background: #c4c4c4;
    width: 112px;
    position: relative;
    color: #fff;
}

/* !search
---------------------------------------------------------- */
.search-area {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    position: relative;
}

.input-search {
    width: 460px;
    height: 32px;
    border: 1px solid #b5b4b4;
    background: #fff;
    font-size: 1.2rem;
    border-radius: 20px;
    padding: 0 50px 0 16px;
}

.button-search {
    position: absolute;
    width: 28px;
    height: 28px;
    right: 16px;
    top: 50%;
    border: 0;
    margin-top: -14px;
    display: block;
    text-indent: -9999px;
    background: url("../img/icon_search.svg") center 0 no-repeat;
    background-size: 27px 25px;
    z-index: 2;
}

/* !tool
---------------------------------------------------------- */
.tool-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tool-ctrl {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.tool-ctrl select {
    font-size: 1.4rem;
    color: #333;
    background: url("../img/icon_drop.svg") right 12px center no-repeat #fff;
    background-size: 7px 6px;
}

.tool-total {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-right: 16px;
}

/* !pager
---------------------------------------------------------- */
.pager-navigation {
    border: 1px solid #b5b4b4;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.pager-navigation a {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #b5b4b4;
    font-size: 1.2rem;
    font-weight: bold;
}

.pager-navigation a + a {
    border-left: 1px solid #b5b4b4;
}

.pager-navigation a.is_active {
    background: #0A685A;
    color: #fff;
}

.pager-first,
.pager-previous,
.pager-next,
.pager-last{
    text-indent: -9999px;
}

.pager-first {
    background: url("../img/icon_first.svg") center center no-repeat #fff;
    background-size: auto 17px;
}

.pager-previous {
    background: url("../img/icon_prev.svg") center center no-repeat #fff;
    background-size: auto 17px;
}

.pager-next {
    background: url("../img/icon_next.svg") center center no-repeat #fff;
    background-size: auto 17px;
}

.pager-last{
    background: url("../img/icon_last.svg") center center no-repeat #fff;
    background-size: auto 17px;
}

/* !popup
---------------------------------------------------------- */
.popup-area {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background: rgba(87,87,87,.8);
    display: none;
}

.popup-body {
    width: 528px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    display: none;
}

.popup-close {
    border: 0;
    background: none;
    display: block;
    text-indent: -9999px;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    padding: 0;
}

.popup-close:before,
.popup-close:after {
    width: 16px;
    height: 2px;
    background: #b5b4b4;
    position: absolute;
    top: 50%;
    left: 2px;
    z-index: 2;
    margin-top: -1px;
    content: "";
}

.popup-close:before,
.popup-close:after {
    transform: rotate(45deg);
}

.popup-close:after {
    transform: rotate(-45deg);
}

.popup-title {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: bold;
    padding: 12px 16px 28px;
    border-bottom: 1px solid #b5b4b4;
}

.popup-box {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 12px 16px 36px;
}

.popup-complete {
    text-align: right;
    padding: 32px 16px 16px;
    border-top: 1px solid #b5b4b4;
}

.popup-complete a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    vertical-align: top;
    width: 112px;
    height: 32px;
    border: 1px solid #b5b4b4;
    border-radius: 5px;
}

.popup-complete a:hover {
    text-decoration: none;
}

.font-bold {
    font-weight: bold;
}