@charset 'utf-8';


/*-----------------------------------------------------------
	layout
-----------------------------------------------------------*/
#container {
    padding-top: 56px;
    min-width: 1280px;
}

#container > #global-header {}
#container > #main > #contents {}
#container > #global-footer {}



/*-----------------------------------------------------------
	Global Header
-----------------------------------------------------------*/
#global-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #3c3e44;
    z-index: 1000;
}
#global-header .wrap {
    height: 56px;
}
#global-header .wrap:after {
    display: block;
    clear: both;
    content: '';
}
#global-header .logo {
    margin: 0;
    padding: 0 20px;
    line-height: 56px;
    float: left;
}
#global-header .logo img {
    vertical-align: middle;
}
#global-header nav {
    float: right;
}
#global-header nav:after {
    display: block;
    content: '';
    clear: both;
}
#global-header nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
}
#global-header nav ul li {
    display: block;
}
#global-header nav ul li + li {
    margin-left: 35px;
}
#global-header nav ul li a {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 5px;
    color: #969799;
    font-size: 0.875em;
    font-weight: bold;
    text-decoration: none;
    box-sizing: border-box;
    border-bottom: 3px solid transparent;
    transition: border .2s;
    transition-property: border, color;
}
#global-header nav ul li.current a,
#global-header nav ul li a:hover {
    color: #fff;
    border-bottom-color: #ffcd03;
}
#global-header nav ul li a span {
    display: block;
    line-height: 1.25;
    text-align: center;
}
#global-header nav .manual-link {
    position: relative;
}
#global-header nav .manual-link > a span {
    display: inline-block;
    padding-right: 16px;
    position: relative;
}
#global-header nav .manual-link > a span:after {
    display: block;
    content: '';
    border: 4px solid transparent;
    border-top-color: #969799;
    position: absolute;
    right: 0;
    top: 0.5em;
    transition: border .2s;
}
#global-header nav .manual-link > a:hover span:after {
    border-top-color: #fff;
}
#global-header nav .manual-link > div {
    position: absolute;
    top: 80%;
    left: 10px;
    padding: 16px 32px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 10;
    display: none;
}
#global-header nav .manual-link > div p {
    margin: 0;
    white-space: nowrap;
    line-height: 2;
}
#global-header nav .manual-link > div p a {
    display: inline-block;
    height: auto;
    padding: 0;
    padding-left: 12px;
    color: #000;
    font-size: 0.875em;
    text-decoration: none;
    border: 0;
    transition: opacity .2s;
    position: relative;
}
#global-header nav .manual-link > div p a:before {
    display: block;
    content: '';
    border: 3px solid transparent;
    border-left-color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
}
#global-header nav .manual-link > div p a:hover {
    color: #000;
    opacity: 0.75;
}

#global-header nav .login-user {
    float: right;
    margin-left: 30px;
    padding: 0 16px;
    padding-right: 32px;
    cursor: pointer;
    background: url(../images/icon_arrow_down.svg) right 16px center no-repeat #171717;
    position: relative
}
#global-header nav .login-user dl,
#global-header nav .login-user dl dt,
#global-header nav .login-user dl dd {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 16px;
    box-sizing: border-box;
}
#global-header nav .login-user dl {
    min-width: 150px;
    height: 56px;
    padding: 12px 16px;
    padding-left: 45px;
    background: url(../images/icon_user.svg) left center no-repeat transparent;
}
#global-header nav .login-user dl dt {
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
}
#global-header nav .login-user dl dd {
    color: #969799;
    font-size: 0.75em;
}
#global-header nav .login-user .popup {
    position: absolute;
    right: 12px;
    top: 80%;
    display: none;
}
#global-header nav .login-user .popup ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 18px 36px;
    border-radius: 10px;
    background-color: #fff;
}
#global-header nav .login-user .popup ul li a {
    display: inline-block;
    margin: 0;
    border: 0;
    height: auto;
    padding-left: 30px;
    color: #3c3e44;
    font-size: 0.875rem;
    line-height: 20px;
    white-space: nowrap;
    text-decoration: none;
    background: url(../images/icon_logout.svg) left center no-repeat transparent;
    transition: opacity .2s;
}
#global-header nav .login-user .popup ul li a:hover {
    opacity: 0.7;
}



.develop #global-header {
    background-color: #003075;
}
.develop #global-header .logo span {
    display: inline-block;
    color: #fff;
    font-size: 0.9375rem;
    margin-left: 1em;
    vertical-align: bottom;
}



/*-----------------------------------------------------------
	Global Footer
-----------------------------------------------------------*/
#global-footer {
    display: block;
}
#global-footer .storage-monitor {
    padding: 16px 0;
    text-align: center;
    font-size: 0.75rem;
}
#global-footer .storage-monitor meter {
    color: #222;
    font-size: 1rem;
    width: 200px;
}
#global-footer .storage-monitor p {
    margin: 0;
    line-height: 1;
}

/*-----------------------------------------------------------
	Contents
-----------------------------------------------------------*/
#contents {
    max-width: 1088px;
    margin: 0 auto;
    padding: 64px 0;
}

section + section {
    margin-top: 32px;
    padding-top: 40px;
}



/*-----------------------------------------------------------
	Common Parts
-----------------------------------------------------------*/
.page-header {
    margin: 0 0 40px;
}

.content-block {
    position: relative;
    padding: 40px 32px;
    margin: 0;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-block .band {
    display: block;
    content: '';
    width: 115px;
    height: 28px;
    text-align: center;
    background-color: #3c3e44;
    border: 1px solid #fff;
    border-radius: 0 0 8px 8px;
    position: absolute;
    left: 50%;
    bottom: -27px;
    transform: translateX(-50%);
    cursor: pointer;
    box-sizing: border-box;
    transition: opacity .3s;
    overflow: hidden;
}
.content-block .band:hover {
    opacity: 0.75;
}
.content-block .band span {
    display: inline-block;
    color: #fff;
    font-size: 0.75rem;
    line-height: 26px;
    vertical-align: text-bottom;
    position: relative;
    padding-left: 24px;
}
.content-block .band span:before {
    display: inline-block;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/icon_search_open.svg) center center no-repeat transparent;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}
.content-block .band.open span:before {
    transform: rotate(180deg);
}



.page-title {
    position: relative;
    margin: 0;
    padding-left: 24px;
    font-size: 1.875em;
    font-weight: 500;
    line-height: 1;
}
.page-title:before {
    display: block;
    content: '';
    width: 7px;
    height: 32px;
    background-color: #fbcd03;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 7px;
}


.section-title {
    font-size: 1.375em;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 15px;
}

.section-title.icon-project,
.section-title.icon-project-reviews,
.section-title.icon-material,
.section-title.icon-media,
.section-title.icon-review,
.section-title.icon-logs {
    padding-left: 40px;
    background: 8px center no-repeat transparent;
}
.section-title.icon-project {background-image: url(../images/icon_project_info.svg);}
.section-title.icon-project-reviews {background-image: url(../images/icon_project_reviews.svg);}
.section-title.icon-material {background-image: url(../images/icon_material_list.svg)}
.section-title.icon-media {background-image: url(../images/icon_media_list.svg)}
.section-title.icon-review {background-image: url(../images/icon_review_list.svg)}
.section-title.icon-logs {background-image: url(../images/icon_logs.svg)}

.section-title.icon-comment {
    padding-left: 40px;
    background: 8px center no-repeat transparent;
    background-image: url(../images/icon_comment.svg)
}
.section-title.icon-operation {
    padding-left: 40px;
    background: 8px center no-repeat transparent;
    background-image: url(../images/icon_operation.svg)
}


.button a {
    display: inline-block;
    padding: 0 2em;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    text-decoration: none;
    background-color: #171717;
    border-radius: 10px;
    box-sizing: border-box;
    transition: opacity .3s;
}
.button a:hover {
    opacity: 0.7;
}


.submit-button {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    line-height: 54px;
    text-decoration: none;
    background-color: #171717;
    border-radius: 10px;
    box-sizing: border-box;
    transition: opacity .3s;
}
.submit-button:hover {
    opacity: 0.6;
}
.submit-button span {
    display: inline-block;
    padding: 0 28px;
    padding-left: 60px;
    background: url(../images/icon_check.svg) 28px center no-repeat transparent;
}
.submit-button input[type=submit] {
    height: 54px;
    padding: 0 28px;
    padding-left: 60px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    background: url(../images/icon_check.svg) 28px center no-repeat transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.cancel-button {
    display: inline-block;
    position: relative;
    transition: opacity .3s;
}
.cancel-button:before {
    display: inline-block;
    content: '';
    width: 22px;
    height: 22px;
    background: url(../images/icon_plus_s.svg) center center no-repeat #171717;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.cancel-button:hover {
    opacity: 0.6;
}
.cancel-button input {
    margin: 0;
    padding: 0;
    padding-left: 30px;
    color: #3c3e44;
    font-size: 1rem;
    font-weight: 500;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.search-button {
    display: inline-block;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    line-height: 44px;
    text-decoration: none;
    background-color: #3c3e44;
    border-radius: 10px;
    box-sizing: border-box;
    transition: opacity .3s;
}
.search-button:hover {
    opacity: 0.6;
}
.search-button span {
    display: inline-block;
    padding: 0 28px;
}
.search-button input {
    min-width: 144px;
    height: 44px;
    padding: 0 28px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    background: none transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    vertical-align: top;
}




.icon-cancel {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}
a.icon-cancel {
    text-decoration: none;
    color: #3c3e44;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .3s;
}
a.icon-cancel:hover {
    opacity: 0.6;
}
.icon-cancel:before {
    display: inline-block;
    content: '';
    width: 22px;
    height: 22px;
    background: url(../images/icon_plus_s.svg) center center no-repeat #171717;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}





.add-link {
    margin: 0;
}
.add-link a {
    display: inline-block;
    padding: 0 36px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 64px;
    border-radius: 32px;
    text-decoration: none;
    background-color: #171717;
    transition: opacity .2s;
}
.add-link a:hover {
    opacity: 0.7;
}
.add-link a span {
    display: inline-block;
    position: relative;
    padding-left: 32px;
}
.add-link a span:before {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/icon_plus_y.svg) center center no-repeat transparent;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.add-link.add-link-small a {
    padding: 0 24px;
    font-size: 0.875rem;
    line-height: 32px;
    border-radius: 16px;
}
.add-link.add-link-small a span {
    padding-left: 20px;
}
.add-link.add-link-small a span:before {
    width: 12px;
    height: 12px;
}


.download-link a {
    display: inline-block;
    color: #3c3e44;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    padding-left: 26px;
    position: relative;
    transition: opacity .2s;
}
.download-link a:hover {
    opacity: 0.7;
}
.download-link a:before {
    display: block;
    content: '';
    width: 16px;
    height: 16px;
    background: url(../images/icon_download.svg) center center no-repeat transparent;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.download-link.icon-import a:before {
    background-image: url(../images/icon_import.svg);
}


.project-link {
    margin: 0;
}
.project-link a {
    display: inline-block;
    padding-left: 28px;
    color: #3c3e44;
    font-size: 1rem;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    position: relative;
    transition: opacity .2s;
}
.project-link a:hover {
    opacity: 0.7;
}
.project-link a:before {
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    background: url(../images/icon_project_link.svg) center center no-repeat transparent;
    background-size: contain;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.delete-link a {
    display: inline-block;
    padding-left: 30px;
    color: #721c24;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    position: relative;
    transition: opacity .2s;
}
.delete-link a:hover {
    opacity: 0.7;
}
.delete-link a:before {
    display: inline-block;
    content: '';
    width: 22px;
    height: 22px;
    background: url(../images/icon_plus_s.svg) center center no-repeat #721c24;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}


.message {
    display: block;
    padding: 0.5em 1em;
    font-size: 0.8125rem;
    border-radius: 6px;
    background-color: #fff;
}
.message + .message {
    margin-top: 8px;
}
.message + .page-header {
    margin-top: 30px;
}
.message.alert {
    color: #721c24;
    background-color: #f8d7da;
}
.message.success {
    color: #155724;
    background-color: #d4edda;
}
.message.system {
    color: #004085;
    background-color: #cce5ff;
}


.status-label {
    display: inline-block;
    width: 86px;
    padding: 0 5px;
    padding-left: 22px;
    line-height: 22px;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    background: 4px 5px no-repeat #f3f4f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    vertical-align: middle;
}
.status-label.prereview {
    width: 100px;
}
.status-label.s-apply   {background-image: url(../images/icon_status_apply.svg);}
.status-label.s-review  {background-image: url(../images/icon_status_review.svg);}
.status-label.s-ok      {background-image: url(../images/icon_status_ok.svg);}
.status-label.s-back,
.status-label.s-data_back {
    color: #d25c78;
    background-image: url(../images/icon_warning.svg);
    background-color: #fbeef1;
    border-color: #d25c78;
}
.status-label.s-data_submit {
    color: #0f93a3;
    background-image: url(../images/icon_status_data_submit.svg);
    background-color: #e6f5f7;
    border-color: #0f93a3;
}
.status-label.s-complete,
.status-label.s-transfered {
    color: #0fa353;
    background-image: url(../images/icon_status_complete.svg);
    background-color: #e8f7e6;
    border-color: #0fa353;
}
.status-label.s-cancel {
    color: #cbd0d5;
    background-image: url(../images/icon_status_cancel.svg);
    background-color: #fff;
    border-color: #ccc;
}




#search-form {
    margin-bottom: 70px;
}




.list-control {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.list-control .section-title {
    margin: 0;
    margin-right: auto;
}
.list-control .add-link {
    margin: 0;
}
.list-control .project-link + .add-link {
    margin-left: 3em;
}
.list-control .download-link {
    margin: 0;
}
.list-control + .content-block,
.list-control + .list-table {
    margin-top: 24px;
}

.list-table table {
    width: 100%;
    border-collapse: collapse;
}
.list-table table thead th {
    padding: 12px 0;
    padding-right: 20px;
    color: #969799;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid #cbd0d5;
}
.list-table table tbody th,
.list-table table tbody td {
    padding: 20px 0;
    padding-right: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    border-bottom: 1px solid #f3f4f5;
    vertical-align: middle;
}
.list-table table tbody th {
    white-space: nowrap;
}
.list-table table th:last-child,
.list-table table td:last-child {
    padding-right: 0;
}
.list-table .media-names {
    display: inline;
    min-width: 200px;
}



.pager .pager-wrap {
    padding: 16px 0 32px;
    position: relative;
}
.pager .result {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1;
    text-align: right;
}
.pager ol {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
}
.pager ol li {
    display: block;
    margin: 0 4px;
}
.pager ol li a {
    display: block;
    height: 100%;
    color: #3c3e44;
    text-decoration: none;
}
.pager ol li span {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;

    color: #3c3e44;
    font-size: 0.875rem;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    transition: background .2s;
}
.pager ol li span.current {
    background-color: #ffcd03;
}
.pager ol li a:hover span {
    background-color: #e6eaed;
}





.media-names {
    vertical-align: middle;
}
.media-names span {
    display: inline;
}
.media-names span + span {
    padding-left: 2px;
}
.media-names span + span:before {
    display: inline-block;
    content: '';
    margin-right: 7px;
    margin-bottom: 0.1em;
    padding: 0;
    width: 6px;
    height: 6px;
    border: 2px solid #cbd0d5;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}




.data-list .title {
    margin: 0;
    font-size: 1.125em;
    font-weight: 500;
}
.data-list .title + dl {
    margin-top: 20px;
    border-top: 1px solid #cbd0d5;
}
.data-list dl {
    display: table;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #f3f4f5;
}
.data-list dl dt,
.data-list dl dd {
    display: table-cell;
    margin: 0;
    padding: 16px 8px;
    font-size: 0.875em;
    vertical-align: top;
}
.data-list dl dt {
    width: 130px;
    font-weight: 500;
}
.data-list dl dd {
    word-break: break-all;
}
.data-list .button {
    margin: 32px 0 0;
}
.data-list p {
    margin: 0;
}
.data-list p + p {
    margin-top: 16px;
}


/*-----------------------------------------------------------
	form
-----------------------------------------------------------*/

.common-form .required,
.common-form .optional {
    display: inline-block;
    margin-right: 0.75em;
    min-width: 36px;
    padding: 0 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    background-color: #d25c78;
    box-sizing: border-box;
}
.common-form .optional {
    background-color: #969799;
}
.common-form .error {
    margin: 10px 0 0;
    font-size: 0.875em;
    color: #c00;
}
.common-form .unit {
    display: inline-block;
    margin-left: 0.5em;
}

.common-form dl,
.common-form dl dt,
.common-form dl dd {
    margin: 0;
    padding: 0;
}
.common-form dl {
    width: 76%;
}
.common-form dl + dl {
    margin-top: 24px;
}
.common-form dl dt {
    margin: 0 0 0.5em;
    font-size: 0.8125em;
    font-weight: 500;
    line-height: 1;
    word-break: break-all;
}
.common-form dl dd {
    word-break: break-all;
}
.common-form dl.multi-column > div {
    display: table;
    width: calc(100% + 16px);
    table-layout: fixed;
    margin: 0 -8px;
}
.common-form dl.multi-column > div > dt,
.common-form dl.multi-column > div > dd {
    display: table-cell;
    padding: 0 8px;
}
.common-form.common-form-confirm dl dd {
    font-size: 0.875rem;
}


.common-form input[type=text],
.common-form input[type=search],
.common-form input[type=url],
.common-form input[type=email],
.common-form input[type=tel],
.common-form input[type=number],
.common-form input[type=password],
.common-form select,
.common-form textarea {
    width: 100%;
    padding: 12px 15px 13px;
    font-size: 0.875rem;
    line-height: 1.25;
    background: 16px center no-repeat #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    outline: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0);
    transition: border .2s;
    transition-property: border, background-color, box-shadow;
    box-sizing: border-box;
}
.common-form input::-webkit-input-placeholder,
.common-form input:-ms-input-placeholder,
.common-form input::placeholder {
    color: #969799;
}
.common-form input[type=text]:focus,
.common-form input[type=search]:focus,
.common-form input[type=url]:focus,
.common-form input[type=email]:focus,
.common-form input[type=tel]:focus,
.common-form input[type=number]:focus,
.common-form textarea:focus {
    background-color: #fff;
    border: 1px solid #ffcd03;
    box-shadow: 0 0 8px rgba(255,205,3,0.3);
}


.common-form input.invalid,
.common-form textarea.invalid,
.common-form select.invalid,
.common-form input.invalid:focus,
.common-form textarea.invalid:focus,
.common-form select.invalid:focus {
    border: 1px solid #c00;
}
.common-form input[type=file].invalid {
    border: none;
    color: #c00;
}


.common-form .dropdown {
    display: block;
    position: relative;
}
.common-form .dropdown:after {
    display: block;
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: url(../images/icon_arrow.svg) center center no-repeat;
    transform: translateY(-50%) rotate(90deg);
}
.common-form .dropdown select {
    padding: 12.5px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


.common-form .radios label {
    display: inline-block;
    margin-right: 2em;
}
.common-form .radios label span {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.875rem;
}

.common-form textarea {
    height: 10em;
    padding: 15px;
    line-height: 1.5;
}
.common-form input[type=number] {
    text-align: right;
}
.common-form .w-short,
.common-form input.w-short {
    width: 248px;
}
.common-form .w-middle,
.common-form input.w-middle {
    width: 512px;
}
.common-form input.icon-calendar {
    background-image: url(../images/icon_calendar_form.svg);
    background-position: right 16px center;
    background-repeat: no-repeat;
}

/* flexdatalist multiple */
.common-form .flexdatalist-multiple {
    padding: 0 12px;
    box-sizing: border-box;
    background-color: #f9f9f9 !important;
}
.common-form .flexdatalist-multiple li {
    margin: 8px 4px;
}
.common-form .flexdatalist-multiple li.value {
    padding: 0 16px;
    padding-right: 32px;
    color: #3c3e44;
    font-size: 0.875rem;
    line-height: 28px;
    background: none #e6eaed;
    border-radius: 14px;
    word-break: break-all;
}
.common-form .flexdatalist-multiple li.value span.fdl-remove {
    width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 0;
    color: transparent;
    font-size: 1rem;
    background: none #cbd0d5;
    border-radius: 100%;
    top: 50%;
    right: 8px;
    transform: translateY(-50%) rotate(45deg);
    box-sizing: border-box;
}
.common-form .flexdatalist-multiple li.value span.fdl-remove:before,
.common-form .flexdatalist-multiple li.value span.fdl-remove:after {
    display: block;
    content: '';
    width: 9px;
    height: 1px;
    background-color: #3c3e44;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.common-form .flexdatalist-multiple li.value span.fdl-remove:before {
    transform: translate(-50%, -50%) rotate(90deg);
}


.common-form .material-types > div {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #aaa;
    background-color: #fff;
}
.common-form .material-types label {
    display: block;
    width: 50%;
    text-align: center;
    font-size: 0.6875em;
    font-weight: bold;
    cursor: pointer;
}
.common-form .material-types label input {
    display: none;
}
.common-form .material-types label span {
    display: block;
    color: #ccc;
    line-height: 28px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1) inset;
    transition: background .3s;
}
.common-form .material-types label span:hover {
    background-color: #f0f0f0;
}
.common-form .material-types label input:checked + span {
    color: #fff;
    background-color: #777;
    box-shadow: none;
}


.common-form .note {
    margin: 10px 0;
    font-size: 0.875rem;
}

.common-form .submit {
    margin-top: 40px;
    text-align: right;
}
.common-form .submit .submit-button {
    margin-left: 32px;
}



.conditions > dl {
    display: table;
    width: 100%;
}
.conditions > dl > div {
    display: table-cell;
    padding-right: 10px;
}
.conditions > dl > div + div {
    padding-left: 10px;
}
.conditions > dl > div:last-child {
    padding-right: 0;
}

.conditions .period {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conditions .period label,
.conditions .period span {
    display: inline-block;
}
.conditions .period label {
    width: 45%;
}
.conditions .submit {
    margin-top: 24px;
    text-align: center;
}
.conditions .submit .search-button input {
    min-width: 240px;
}


/*-----------------------------------------------------------
	login
-----------------------------------------------------------*/
#login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#login {
    width: 880px;
    padding: 32px;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    background-color: #fff;
    box-sizing: border-box;
}
#login .title {
    margin: 0 0 40px;
    line-height: 1;
    text-align: center;
}
#login .title img {
    width: auto;
    height: 30px;
    vertical-align: middle;
}
#login .login-wrap {
    display: flex;;
    justify-content: space-between;
    align-items: center;
}
#login .login-form {
    width: calc(45% - 16px);
}
#login .login-policy {
    width: calc(55% - 16px);
}
#login .errors ul {
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
    color: #c00;
    font-size: 0.875em;
}

#login form {
    display: block;
}
#login form dl {
    display: block;
    margin: 0;
}
#login form dl + dl {
    margin-top: 24px;
}
#login form dl dt {
    margin: 0 0 5px;
    font-size: 0.8125em;
    font-weight: normal;
}
#login form dl dd {
    margin: 0;
}
#login form input[type=text],
#login form input[type=password] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e6eaed;
    background-color: #f9f9fa;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
}
#login form .policy {
    margin: 24px 0 0;
}
#login form .policy label {
    display: block;
}
#login form .policy label span {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.875em;
}
#login form .submit {
    margin: 24px 0 0;
    text-align: center;
}
#login form input[type=submit] {
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 0.875em;
    background-color: #111;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity .3s;
}
#login form input[type=submit]:hover {
    opacity: 0.7;
}

#login .note {
    margin: 5px 0 0;
    color: #444;
    font-size: 0.75em;
}



#login .policy-text {
    overflow-y: scroll;
    background-color: #f9f9fa;
    border-radius: 5px;
    max-height: 460px;
    border: 1px solid #e6eaed;
}
#login .policy-text-inner {
    padding: 20px;
    font-size: 0.875em;
    line-height: 1.4;
}

#login .policy-text h2,
#login .policy-text h3,
#login .policy-text h4 {
    font-weight: normal;
    line-height: 1.1;
    margin: 0 0 0.75em;
    text-align: center;
}
#login .policy-text h2 {
    font-size: 1.5em;
    font-weight: bold;
}
#login .policy-text h3 {
    font-size: 1.125em;
}
#login .policy-text h4 {
    font-size: 1em;
}
#login .policy-text * + h2,
#login .policy-text * + h3 {
    margin-top: 40px;
}






/*-----------------------------------------------------------
	create review
-----------------------------------------------------------*/
#project {
    margin-top: -40px;
    padding-top: 40px;
}

.create-review #materials .material-tbd label {
    display: inline-block;
    min-width: 200px;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.create-review #materials .material-tbd label span {
    display: inline-block;
    margin-left: 10px;
}
.create-review #materials .material-items {
    margin-top: 25px;
}
.create-review #materials dl {
    width: 100%;
}
.create-review #materials .upload-setting-info {
    margin-top: 24px;
}
.upload-setting-info h4 {
    margin: 0 0 0.5em;
    font-size: 0.875em;
    font-weight: bold;
}
.upload-setting-info p {
    margin: 0;
    font-size: 0.75em;
}

.create-review #materials .add-link {
    margin-top: 24px;
}

.create-review #materials .material + .material {
    margin-top: 16px;
}
.create-review #materials .material dd.material-types {
    width: 10%;
}
.create-review #materials .material dd.material-name {
    width: 28%;
}
.create-review #materials .material dd.material-data input[type=file] {
    font-size: 0.875em;
}

.create-review #materials .tags {
    margin-bottom: 8px;
}
.create-review #materials .tags dd {
    font-size: 0.8125em;
    font-weight: 500;
    line-height: 1;
    word-break: break-all;
}
.create-review #materials .tags dd.type {
    width: 10%;
}
.create-review #materials .tags dd.name {
    width: 28%;
}



.create-review #media .selected-media-count {
    margin: 0 -32px;
    padding: 0 32px 20px;
    font-size: 0.875em;
    border-bottom: 1px solid #f3f4f5;
}
.create-review #media .selected-media-count span {
    display: inline-block;
    margin: 0 0.5em;
    padding: 0 0.5em;
    font-size: 0.875rem;
    line-height: 1.4;
    background-color: #ffcd03;
    border-radius: 10px;
}
.create-review #media .add-link {
    margin-top: 24px;
}


.create-review #media-list {
    margin: 0 -32px;
}
.create-review #media-list .media {
    padding: 32px;
    border-bottom: 1px solid #f3f4f5;
}
.create-review #media-list .media:first-child {
    padding-top: 0;
}
.create-review #media-list .media .header {
    position: relative;
    height: 32px;
    line-height: 32px;
    margin: 0 0 20px;
}
.create-review #media-list .media .header .title {
    padding-left: 42px;
    font-size: 1.125em;
    font-weight: bold;
}
.create-review #media-list .media .header .title span {
    display: inline-block;
    position: relative;
}
.create-review #media-list .media .header .title span + span {
    padding-left: 20px;
}
.create-review #media-list .media .header .title span + span:before {
    display: block;
    content: '';
    padding: 0;
    width: 6px;
    height: 6px;
    border: 2px solid #cbd0d5;
    border-width: 2px 2px 0 0;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.create-review #media-list .media .header .remove {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: #e6eaed;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: opacity .3s;
}
.create-review #media-list .media .header .remove:hover {
    opacity: 0.7;
}
.create-review #media-list .media .header .remove:before,
.create-review #media-list .media .header .remove:after {
    display: block;
    content: '';
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background-color: #3c3e44;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -1px;
}
.create-review #media-list .media .header .remove:after {
    transform: rotate(90deg);
}
.create-review #media-list .media .header .remove span {
    display: none;
}


.create-review #review-list {
    min-height: 100px;
}
.create-review #review-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.create-review #review-list > ul {
    margin: 0 -32px;
}
.create-review #review-list > ul > li {
    margin-top: 32px;
    padding: 32px 32px 0;
    border-top: 1px solid #f3f4f5;
}
.create-review #review-list > ul > #review-template + li {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}
.create-review #review-list .title {
    font-size: 1.125em;
    font-weight: bold;
}
.create-review #review-list .all-select {
    margin-top: 24px;
}
.create-review #review-list .all-select a {
    display: inline-block;
    padding: 0 1em;
    color: #3c3e44;
    font-size: 0.8125em;
    font-weight: bold;
    text-decoration: none;
    line-height: 28px;
    border-radius: 14px;
    background-color: #e6eaed;
    transition: background .2s;
}
.create-review #review-list .all-select a:hover {
    background-color: #ffcd03;
}
.create-review #review-list .media {
    margin-top: 20px;
}
.create-review #review-list .media label {
    display: block;
    font-size: 0.875em;
    font-weight: bold;
    line-height: 2;
}
.create-review #review-list .media label input {
    margin-right: 0.5em;
}
.create-review #review-list .media label span {
    display: inline-block;
    position: relative;
}
.create-review #review-list .media label span + span {
    padding-left: 20px;
}
.create-review #review-list .media label span + span:before {
    display: block;
    content: '';
    padding: 0;
    width: 6px;
    height: 6px;
    border: 2px solid #cbd0d5;
    border-width: 2px 2px 0 0;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}


#anchor {
    position: fixed;
    right: 0;
    top: 200px;
    z-index: 10;
}
#anchor ul {
    margin: 0;
    padding: 20px;
    list-style: none;
    background-color: #3c3e44;
    border-radius: 10px 0 0 10px;
}
#anchor ul li + li {
    margin-top: 20px;
}
#anchor ul li a {
    display: block;
    padding-left: 2em;
    color: #969799;
    font-size: 0.875em;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    background: left center no-repeat transparent;
    background-size: auto 1em;
    transition: color .2s;
    transition-property: color, background;
}

#anchor ul li.current a,
#anchor ul li a:hover {
    color: #fff;
}

#anchor ul li.icon-project a {background-image: url(../images/icon_project_info_off.svg);}
#anchor ul li.icon-materials a {background-image: url(../images/icon_material_list_off.svg);}
#anchor ul li.icon-media a {background-image: url(../images/icon_media_list_off.svg);}
#anchor ul li.icon-reviews a {background-image: url(../images/icon_review_list_off.svg);}

#anchor ul li.icon-project a:hover {background-image: url(../images/icon_project_info.svg);}
#anchor ul li.icon-materials a:hover {background-image: url(../images/icon_material_list.svg);}
#anchor ul li.icon-media a:hover {background-image: url(../images/icon_media_list.svg);}
#anchor ul li.icon-reviews a:hover {background-image: url(../images/icon_review_list.svg);}

#anchor ul li.icon-project.current a {background-image: url(../images/icon_project_info.svg);}
#anchor ul li.icon-materials.current a {background-image: url(../images/icon_material_list.svg);}
#anchor ul li.icon-media.current a {background-image: url(../images/icon_media_list.svg);}
#anchor ul li.icon-reviews.current a {background-image: url(../images/icon_review_list.svg);}


#anchor ul li.icon-project-reviews a {background-image: url(../images/icon_project_reviews.svg);}
#anchor ul li.icon-logs a {background-image: url(../images/icon_logs.svg);}


#review-create-confirm.review-details .data-list dl dt,
#review-create-confirm.review-details .data-list dl dd {
    font-size: 0.75rem;
    padding: 16px 5px;
}
#review-create-confirm .content-block + .content-block {
    margin-top: 24px;
}



/*-----------------------------------------------------------
	media search modal
-----------------------------------------------------------*/
#media-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 5000;
}
#media-modal .modal-wrap {
    width: 1024px;
    padding: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-sizing: border-box;
}
#media-modal .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}
#media-modal .select-panel {
    width: 100%;
    height: 510px;
    border: 1px solid #eee;
    box-sizing: border-box;
    position: relative;
}
#media-modal .column {
    width: 200px;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    border-right: 1px solid #eee;
    box-sizing: border-box;

    position: absolute;
    left: 0;
    top: 0;

    transition: .2s;
    transition-property: transform, visibility, opacity;
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
}

#media-modal .column::-webkit-scrollbar {
    width: 6px;
}
#media-modal .column::-webkit-scrollbar-track {
    background: none transparent;
}
#media-modal .column::-webkit-scrollbar-thumb {
    background: none #666;
    border-radius: 3px;
}


#media-modal .column.categories        {z-index: 4; left:   0px; width: 240px;}
#media-modal .column.areas             {z-index: 3; left: 240px; width: 140px;}
#media-modal .column.media-companies   {z-index: 2; left: 380px; width: 240px}
#media-modal .column.media             {z-index: 1; left: 620px; width: calc(100% - 620px); border-right: 0;}

#media-modal.prereview .column.areas   {width: 400px;}

#media-modal .column.categories,
#media-modal .column.active {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
}

#media-modal .select-panel ul {
    margin: 0;
    padding: 10px 0;
    list-style: none;
}
#media-modal .select-panel ul li a {
    display: block;
    color: #3c3e44;
    font-size: 0.8135em;
    font-weight: bold;
    padding: 12px 16px;
    text-decoration: none;
    line-height: 1.25;
    transition: background .2s;
    cursor: pointer;
}
#media-modal .select-panel ul li a.active,
#media-modal .select-panel ul li a:hover {
    background-color: rgba(255,205,3,0.1);
}

#media-modal .select-panel ul li span {
    display: block;
    position: relative;
}
#media-modal .select-panel ul li span i {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 25px;
    font-size: 0.6875rem;
    font-style: normal;
    line-height: 16px;
    text-align: center;
    background-color: #ffcd03;
    border-radius: 8px;
    transform: translateY(-50%);
}

#media-modal .select-panel ul li label {
    display: block;
    padding: 10px 16px;
    padding-left: 42px;
    font-size: 0.875em;
    font-weight: bold;
    transition: background .2s;
    cursor: pointer;
    position: relative;
}
#media-modal .select-panel ul li label input[type=checkbox] {
    position: absolute;
    left: 16px;
    top: 14px;
}

#media-modal .control {
    margin-top: 24px;
}
#media-modal .control .select-button {
    display: inline-block;
}
#media-modal .control .selected-count {
    display: inline-block;
    font-size: 0.875em;
    margin-left: 16px;
    vertical-align: middle;
}






/*-----------------------------------------------------------
	review detail
-----------------------------------------------------------*/
.review-details .client-name {
    margin: 0;
    font-size: 1.25em;
    font-weight: 500;
}
.review-details .project-title {
    margin: 5px 0 0;
    font-size: 1.125em;
}
.review-details .info {
    margin-top: 20px;
    border-top: 1px solid #cbd0d5;
}

.review-details .icon-calendar {
    display: inline-block;
    padding-left: 26px;
    background: url(../images/icon_calendar.svg) left center no-repeat transparent;
}
.review-details .media-title {
    font-size: 1.125em;
    font-weight: 500;
    position: relative;
}

.review-details .media-title .status-label {
    margin-right: 1em;
}

#related-reviews .list {
    overflow: hidden;
    max-height: 365px;
    position: relative;
    transition: max-height .3s;
}


#review-action {
    margin-top: 52px;
}
#review-action .action-error {
    color: #c00;
    font-size: 0.875em;
}
#review-action .message-text {
    margin: 0 0 24px;
    font-weight: 500;
}
#review-action .message-text:last-child {
    margin-bottom: 0;
}

#review-action .reason-text {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f3f4f5;
}
#review-action .reason-text .title {
    margin: 0 0 16px;
    font-size: 1.125em;
    font-weight: 500;
}
#review-action .reason-text dl {
    margin-bottom: 16px;
    border: 1px solid #f3f4f5;
    padding: 1.5em;
    background-color: #f3f4f5;
    box-sizing: border-box;
}
#review-action .reason-text dl div + div {
    margin-top: 20px;
}
#review-action .reason-text p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.75;
}
/* #review-action .material-tbd {
    margin: 10px 0 0;
    padding: 0 5px;
    font-size: 0.8125rem;
} */
/* #review-action .material-tbd label,
#review-action .material-tbd span {
    display: inline-block;
    vertical-align: middle;
} */
#review-action .material-tbd label input[type=checkbox] {
    vertical-align: middle;
}
#review-action .material-tbd span {
    margin-left: 0.5em;
}


.review-logs {
    margin-top: 32px;
    padding-top: 40px;
}

.review-logs .list-table table tbody th,
.review-logs .list-table table tbody td {
    vertical-align: top;
    text-align: left;
}
.review-logs .prereview-log-label {
}
.review-logs .prereview-log-label span {
    display: inline-block;
    color: #fff;
    background-color: #666;
    font-size: 10px;
    border-radius: 3px;
    padding: 0.2em 0.75em;
}

.review-logs .status-label {
    margin: 0 0.5em;
}
.review-logs p {
    margin: 0;
}
.review-logs p + p {
    margin-top: 10px;
}
.review-logs .note-title {
    margin: 0 0 10px;
    font-size: 1em;
    font-weight: 500;
}
.review-logs .note {
    margin: 16px 0 0;
    padding: 1.5em;
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.75;
    background-color: #f9f9fa;
    border-radius: 4px;
    overflow: hidden;
    transition: max-height .3s;
    word-break: break-all;
}
.review-logs .note:first-child {
    margin-top: 0;
}
.review-logs .note.comment {
    max-height: none;
}
.review-logs .note p {
    margin: 0;
}
.review-logs .note + .files {
    margin-top: 16px;
}
.review-logs .files > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.review-logs .files .file {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}
.review-logs .files .file a {
    display: inline-block;
    color: #111;
    font-size: 0.75em;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px 16px;
    padding-left: 40px;
    background: none #fff;
    position: relative;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transition: border .3s;
}
.review-logs .files .file a:hover {
    border: 1px solid #666;
}
.review-logs .files .file a:before {
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    background: url(../images/icon_doc.svg) center center / contain no-repeat transparent;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.25;
}
.review-logs .files .file.icon-picture a:before {
    background-image: url(../images/icon_picture.svg);
    opacity: 0.5;
}
.review-logs .files .file a span {
    display: inline-block;
}
.review-logs .files .file .file-size {
    color: #999;
}
.review-logs .files .file .file-size:before {
    display: inline-block;
    content: '-';
    margin-left: 1em;
    margin-right: 0.5em;
}

.post-comments {
    margin: 0 0 16px;
}
.post-comments form {
    display: block;
    margin: 0;
}
.post-comments .inputs {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.post-comments .inputs li:first-child {
    width: 100%;
}
.post-comments textarea {
    width: 100%;
    height: 100px;
    padding: 15px;
    font-size: 0.875rem;
    line-height: 1.5;
    outline: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0);
    border: 1px solid #eee;
    border-radius: 5px 0 0 5px;
    background-color: #f9f9f9;
    transition: border .2s;
    transition-property: border, background-color, box-shadow;
    box-sizing: border-box;
}
.post-comments textarea:focus {
    background-color: #fff;
    border: 1px solid #ffcd03;
    box-shadow: 0 0 8px rgba(255,205,3,0.3);
}
.post-comments input[type=submit] {
    width: 100px;
    height: 100px;
    padding-left: 30px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    background: url(../images/icon_check.svg) 16px center no-repeat #171717;
    border: 0;
    outline: 0;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    box-sizing: border-box;
    transition: opacity .3s;
}
.post-comments input[type=submit]:hover {
    opacity: 0.7;
}

.post-comments .ex {
    margin: 10px 0 20px;
    font-size: 0.875em;
}


.attach-file {
    margin-top: 10px;
}
.attach-file .select {
    display: flex;
    align-items: center;
}
.attach-file .select label {
    display: inline-block;
    margin-right: 0.5em;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    cursor: pointer;
    background: url('../images/icon_attach_file_add.svg') center center no-repeat #021335;
    background-size: 24px auto;
    transition: opacity .3s;
}
.attach-file label:hover {
    opacity: 0.75;
}
.attach-file label input {
    display: none;
}
.attach-file label .material-icons {
    color: #fff;
    font-size: 24px;
    line-height: 38px;
}
.attach-file .select > p {
    margin: 0;
    color: #555;
    font-size: 0.75em;
}
.attach-file ul li span {
    display: inline-block;
    margin-left: 0.5em;
    color: #666;
    font-size: 0.875em;
}
.attach-file ul li span:before {
    display: inline-block;
    content: '-';
    margin-right: 0.5em;
}
.attach-file ul li i {
    display: inline-block;
    margin-left: 1em;
    width: 1.25em;
    height: 1.25em;
    line-height: 1;
    background-color: #f66;
    vertical-align: text-bottom;
    border-radius: 50%;
    position: relative;
    opacity: 0;
    transition: opacity .3s;
    cursor: pointer;
}
.attach-file ul li:hover i {
    opacity: 1;
}
.attach-file ul li i:before,
.attach-file ul li i:after {
    display: block;
    content: '';
    width: 8px;
    height: 2px;
    margin-left: -4px;
    margin-top: -1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
}
.attach-file ul li i:before {
    transform: rotate(45deg);
}
.attach-file ul li i:after {
    transform: rotate(-45deg);
}




/*-----------------------------------------------------------
	utility
-----------------------------------------------------------*/
.hide {
    display: none;
}

.extra-input-form {
    margin-top: 24px; 
}

.download-link + .download-link {
    margin-left: 10px;
}

.section-spacer {
    margin-top: 32px;
    padding-top: 40px;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 0.5em;
}

.form-checkbox label span {
    font-size: 0.875em;
    font-weight: bold;
    line-height: 2;
}

.important-flag-icon {
    display: inline-block;
    padding: 2px 4px;
    font-size: 10px;
    text-align: center;
    background-color: #f8d7da;
    border: 1px solid #cc0000;
    color: #cc0000;
    border-radius: 3px;
    box-sizing: border-box;
    vertical-align: middle;
    white-space: nowrap;
}
.important-flag {
    color: #cc0000;
}

.ars-flag-icon {
    display: inline-block;
    padding: 2px 4px;
    font-size: 10px;
    text-align: center;
    background-color: #fdf7f1;
    border: 1px solid #cd853f;
    color: #cd853f;
    border-radius: 3px;
    box-sizing: border-box;
    vertical-align: middle;
    white-space: nowrap;
}
.ars-flag {
    color: #cd853f;
}




.pos-relative {
    position: relative!important;
}

.common-form .dropdown-multi::after {
    background: none;
}

.common-form .dropdown-multi select option {
    padding: 8px 2px;
}

.review-list-client {
    display: table;
}

.review-list-client > .review-list-client-name {
    display: table-cell;
    padding-left: 4px;
    vertical-align: middle;
}

.review-list-client > .review-list-flag {
    display: table-cell;
    vertical-align: middle;
}

.submit-mt {
    margin-top: 40px;
}

.submit-mt-50 {
    margin-top: 20px;
}

.submit-mt-25 {
    margin-top: 10px;
}

.submit-mb {
    margin-bottom: 40px;
}

.submit-mb-50 {
    margin-bottom: 20px;
}

.submit-mb-25 {
    margin-bottom: 10px;
}

.submit-ml {
    /* margin-left: 20px; */
}

#project-detail .btn {
    padding-top: 24px;
    margin-bottom: 24px;
}

#project-detail .btn a {
    display: inline-block;
    padding: 0 1em;
    color: #3c3e44;
    font-size: 0.8125em;
    font-weight: bold;
    text-decoration: none;
    line-height: 28px;
    border-radius: 14px;
    background-color: #e6eaed;
    transition: background .2s;
}

#project-detail .btn.btn-warning a:hover {
    background-color: #ffcd03;
}

#project-detail ul.list {
    list-style: none;
    padding: 0;
}

#project-detail #bulk-comment-targets.info {
    border-top: none!important;
}

#project-detail ul.list li {
    margin-bottom: 5px;
}

#project-detail .media-names {
    font-size: 0.875em;
    font-weight: bold;
}

.action-form {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.action-form-title {
    display: flex;
    margin: 0 0 0.5em;
    font-size: 0.8125em;
    font-weight: 500;
    line-height: 1;
    word-break: break-all;
}

.action-form-title .material-name {
    width: 30%;
}

.action-form .action-form-input + .action-form-input, .action-form-title .action-form-input + .action-form-input {
    margin-left: 20px;
}

.action-form .action-form-input {
    margin-bottom: 10px;
}

.action-form .material-name {
    max-width: 30%;
}

.action-form dl {
    width: 100%;
}

.action-form-col {
    width: 100%;
    max-width: 720px;
}

.action-form-col-btn {
    min-width: 250px;
}

.action-form-input.material-tbd {
    margin-bottom: 20px;
}


.common-form .action-material-form {
    width: 100%;
    margin: 0 -8px;
}
.common-form .action-material-form input[type=file] {
    font-size: 0.875em;
}
.common-form .action-material-form > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.common-form .action-material-form > div  + div {
    margin-top: 8px;
}
.common-form .action-material-form > div > dd {
    padding: 0 8px;
    box-sizing: border-box;
}
.common-form .action-material-form .tags {
    position: relative;
}
.common-form .action-material-form .tags dd {
    font-size: 0.8125em;
    font-weight: 500;
    line-height: 1;
    word-break: break-all;
}
.common-form .action-material-form .type {
    width: 12%;
}
.common-form .action-material-form .name {
    width: 28%;
}
.common-form .action-material-form .data {
    width: 60%;
}
.common-form .action-material-form .tbd {
    position: absolute;
    right: 0;
    top: 2px;
    width: 48%;
    white-space: nowrap;
}

#project-detail .material-tbd > label {
    display: flex;
    margin-top: 4px;
}

#project-detail .material-tbd > label > span {
    margin-left: 2px;
    font-size: 0.8125em;
}

#review-action .material-tbd > label {
    display: flex;
    margin-top: 4px;
    white-space: nowrap;
}

#review-action .material-tbd > label > span {
    margin-left: 2px;
    font-size: 0.8125em;
}

#project-detail .required {
    display: inline-block;
    margin-right: 0.75em;
    min-width: 36px;
    padding: 0 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    background-color: #d25c78;
    box-sizing: border-box;
}

.nowrap {
    white-space: nowrap;
}


#project-detail .material-tbd {
    display: flex;
}

#project-detail .material-tbd .form-text {
    margin-left: 5px;
}







.batch-button {
    display: inline-block;
    padding: 0 1.7em;
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
    text-decoration: none;
    line-height: 20px;
    border-radius: 10px;
    white-space: nowrap;
    background-color: #171717;
    transition: opacity .2s;
}
.batch-button:hover {
    opacity: 0.7;
}


#project-detail .status-group {
    padding: 20px;
    background-color: #f0f0f0;
}

#project-detail .status-group + .status-group {
    margin-top: 80px;
}

#project-detail .status-group ul.list {
    margin-top: 0;
    padding: 16px;
    font-size: 0.875em;
    border-bottom: 1px solid #ccc;
}
#project-detail .status-group ul.list li:first-child {
    margin-top: 0;
}
#project-detail .status-group ul.list li {
    margin: 0.5em 0 0;
}
#project-detail .status-group ul.list label {
    display: block;
}
#project-detail .status-group ul.list label input[type=checkbox] {
    margin-right: 0.5em;
    vertical-align: middle;
}
#project-detail .status-group > .submit-mt {
    margin-top: 0;
}
#project-detail .status-group .action-form input[type=text],
#project-detail .status-group .action-form input[type=url] {
    background-color: #fff;
}
#project-detail .status-group .action-form textarea {
    height: 54px;
    background-color: #fff;
    vertical-align: top;
}







/*-----------------------------------------------------------
	ARS
-----------------------------------------------------------*/
#ars-confirm {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
    overscroll-behavior: none;
    z-index: 10000;
    display: none;
}
#ars-confirm .ars-confirm-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    position: relative;
    z-index: 1;
}
#ars-confirm .ars-confirm-win {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 730px;
    height: 420px;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 10;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
#ars-confirm .ars-confirm-wrap {
    height: 100%;
    padding: 40px 32px;
    box-sizing: border-box;
}
#ars-confirm .ars-confirm-title {
    font-size: 1.25em;
    font-weight: bold;
}
#ars-confirm .ars-panels {
    position: relative;
    height: 100%;
}
#ars-confirm .ars-panels .ars-panel {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #fff;
}
#ars-confirm .ars-panels .ars-panel > p {
    line-height: 2;
    margin: 0;
}
#ars-confirm .ars-panels .ars-panel > p.note {
    color: #444;
    font-size: 0.8375em;
    line-height: 1.5;
}
#ars-confirm .ars-options {
    margin: 1.5em 0;
    padding: 0 32px;
    list-style: none;
}
#ars-confirm .ars-options > li + li {
    margin-top: 10px;
}
#ars-confirm .ars-options > li a {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    color: #111;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#ars-confirm .ars-options > li a:hover,
#ars-confirm .ars-options > li a.active {
    font-weight: bold;
    border: 1px solid #111;
}
#ars-confirm .ars-result .answers {
    margin: 0 0 32px;
    padding: 0 32px;
    list-style: none;
}
#ars-confirm .ars-result .answers > li {
    padding-left: 32px;
    font-size: 1.125em;
    line-height: 2.4;
    background: url(../images/icon_check_b.svg) left center no-repeat transparent;
}
#ars-confirm .ars-result .button {
    display: inline-block;
}
#ars-confirm .ars-result .button + .button {
    margin-left: 16px;
}
#ars-confirm .ars-result .button a {
    min-width: 120px;
    box-sizing: border-box;
}
#ars-confirm .ars-result .button.cancel a {
    color: #000;
    border: 1px solid #111;
    background-color: #fff;
}

#ars-confirm .ars-note {
    margin: 0;
    padding: 0;
    color: #c00;
    font-size: 0.875em;
    line-height: 1;

    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 10;
}


#ars-bulk-confirm .ars-bulk-alert {
    font-size: 0.875em;
    color: #c00;
}
#ars-bulk-confirm .ars-bulk-alert .status-label.s-ok {
    color: #111;
}







/*-----------------------------------------------------------
	Settings
-----------------------------------------------------------*/
#settings .staff-lists {
    display: flex;
    justify-content: space-between;
}
#settings .staff-lists .panel {
    width: 48%;
    box-sizing: border-box;
}
#settings dl {
    width: 100%;
}
#settings dl + dl {
    margin-top: 40px;
}
#settings textarea {
    height: 16em;
}
#settings .emails textarea {
    min-height: 37em;
}