.message.error {
    background-color: #f31f00 !important;

    display: inline-block !important;
    padding: .6em 1em .7em !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-align: center !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
    margin: 0 5px 0 0 !important;
}

.message.success {
    background-color: #00a251 !important;
    display: inline-block !important;
    padding: .6em 1em .7em !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #ffffff !important;
    text-align: center !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
    margin: 5px 5px 0 0 !important;
    border-radius: 5px;
}


a.position_select {
    display: block;
    margin: 0 auto 20px;
    padding: 0.5em 0;
    width: 40%;
    font-size: 1.6rem;
    background: #1a0067;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

a.position_select:hover {
    color: #fff;
    background: #7993dd;
}

button.search {
    display: inline-block;
    margin: 0 auto 20px;
    padding: 0.5em 1em;
    font-size: 1.6rem;
    background: #1a0067;
    color: #fff;
    border-radius: 5px;
}

button.search {
    color: #fff;
    background: #7993dd;
}

a.return {
    display: inline-block;
    margin-bottom: 20px;

    padding: 0.5em 2em;
/ / width: 40 %;
    font-size: 1.6rem;
    background: #1a0067;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

a.return:hover {
    color: #fff;
    background: #7993dd;
}

/*  */
.popup .contents {
    padding: 30px 3%;
}


.iptInfo {
    margin: 0 0 5% 0;
    padding: 0;
    width: 100%;
}

.iptInfo li {
    margin: 0 0 1.5em 0;
    padding: 1.5em 0;
    border-bottom: solid 1px #ddd;
}

.iptInfo li dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.iptInfo li dl dt {
    margin: 0;
    padding: 0;
    /* width: 25%; */
    font-size: 1.6rem;
}

.iptInfo li dl dt:last-child {
    margin: 0;
    padding: 0;
    width: 75%;
}

.iptInfo li dl dt span.required {
    margin: 0 2em 0 0;
    padding: .2em .5em;
    color: #fff;
    font-size: 1rem;
    background: #ff4057;
}

.iptInfo li dl dt label {
    /* margin: 0 2.5em 0 0; */
}

.iptInfo li dl dt label:last-child {
    margin: 0;
}


/*  */
div.kouji_current,
div.chousa_current,
div.kinrin_current {
    width: 100%;
    margin: 1% 0;
    padding: 5px;
    border: 1px solid #e2c896;
    border-radius: 10px;
    background-color: #fff6f4;
}


div.kouji_item,
div.chousa_item,
div.kinrin_item {
    width: 48%;
    margin: 1%;
    padding: 5px;
    float: left;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #b7f8ff;
}

div.kouji_list,
div.chousa_list,
div.kinrin_list {
    overflow-y: scroll;
    overflow-x: hidden;
}

div.clear {
    clear: both;
}

.droppable_active {
    background-color: #f7ffd8 !important;
}

.droppable_hover {
    background-color: #fff488 !important;
}


/*  */
.loading-spinner-wrapper {
    display: none;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.71);
    z-index: 10000;
}

.loading-spinner {

    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2em -2em;

    overflow: hidden;
    width: 6em;
    height: 6em;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    color: #dce9ff;
    font-size: 1em;
    -webkit-mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    animation: loading-spinner-mask 6s infinite cubic-bezier(0.3, 0.6, 1, 1);
}

.loading-spinner::before {
    display: block;
    width: 100%;
    height: 100%;
    border: solid 0.357em currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    background-color: transparent;
    content: "";
    animation: loading-spinner 0.75s infinite linear alternate;
}

:-ms-lang(x), .loading-spinner::before { /* hack for IE11 */
    animation: none;
}

@keyframes loading-spinner-mask {
    0% {
        transform: rotate(0deg);
    }
    12.5% {
        transform: rotate(180deg);
    }
    25% {
        transform: rotate(630deg);
    }
    37.5% {
        transform: rotate(810deg);
    }
    50% {
        transform: rotate(1260deg);
    }
    62.5% {
        transform: rotate(1440deg);
    }
    75% {
        transform: rotate(1890deg);
    }
    87.5% {
        transform: rotate(2070deg);
    }
    100% {
        transform: rotate(2520deg);
    }
}

@keyframes loading-spinner {
    0% {
        border-left-color: transparent;
        border-bottom-color: transparent;
        border-top-color: currentColor;
        transform: rotate(-30deg);
    }
    29.4% {
        border-left-color: transparent;
    }
    29.41% {
        border-left-color: currentColor;
    }
    64.7% {
        border-bottom-color: transparent;
    }
    64.71% {
        border-bottom-color: currentColor;
    }
    100% {
        border-left-color: currentColor;
        border-bottom-color: currentColor;
        transform: rotate(225deg);
    }
}


/*  */
input[type="checkbox"] {
    display: none;
}


input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + .check-icon:before {
    position: relative;
    top: 5px;
    content: "check_box_outline_blank";
    font-family: "Material Icons";
    color: #ccc;
    font-size: 22px;
    line-height: 0;
    transition: .8s;
}

input[type="checkbox"]:checked + .check-icon:before {
    content: "check_box";
    font-family: "Material Icons";
    color: #1a0067;
}


input[type="radio"] {
    display: none;
}

input[type="radio"] + .radio-icon:before {
    position: relative;
    top: 5px;
    content: "radio_button_unchecked";
    font-family: "Material Icons";
    color: #ccc;
    font-size: 22px;
    line-height: 0;
    transition: .8s;
}

input[type="radio"]:checked + .radio-icon:before {
    content: "check_circle";
    font-family: "Material Icons";
    color: #1a0067;
}

textarea {
    margin: 0;
    padding: .8em 1em;
    width: 100%;
    height: 7em;
    border: 1px solid #ddd;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background: #fff;
}


div.text_center {
    text-align: center;
}


/* FAQボックス */
.accbox {
    margin: 1em 0;
    padding: 0;
    max-width: 100%;
    font-size: 16px;
}

.accbox label {
    display: block;
    margin: 1.5px 0;
    padding: 11px 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.accbox label:before {
    content: 'Q';
    padding-right: 8px;
    color: #2f8fcf;
}

.accbox label:hover {
    background: #c8e0f8;
}

.accbox input {
    display: none;
}

.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

.cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    /* background: #eaeaea; */
    opacity: 1;
}

.accbox p:before {
    content: 'A';
    padding: 0 8px;
    font-weight: 600;
    color: #F87474;
}

.accbox .accnone:before {
    content: none;
}

.accbox a:hover {
    color: #FF4500;
}

/* 使い方画面 */
.howto-menu {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.howto-menu li {
    width: 25%;
    height: 80px;
    float: left;
    margin: 20px 0;
}

.howto-menu a {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.howto-menu a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #1A0067;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.howto-menu a:hover::after {
    transform: scale(1, 1);
}

.howto_contents,
.faq_contents {
    margin-bottom: 3em;
}

.howto_content {
    margin: 20px 0;
}

.howto_content_title,
.profile_content_title {
    font-weight: 600;
}

.howto_content_flex {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 560px) {
    .howto_content_flex {
        display: block;
    }
}

.cb {
    clear: both;
}

@media screen and (max-width: 560px) {
    .howto-menu li {
        float: none;
        width: 100%;
        height: auto;
    }
}

/* 会社概要画面 */
.profile_content_title {
    font-weight: bold;
}

/* 利用規約画面 */
.policy_contents {
    margin-bottom: 3em;
}

.policy_content {
    margin: 20px 0;
}

/* 登録画面、利用規約画面 */
.register, .terms {
    height: auto;
    padding: 100px 0;
}

.register h2,
.terms h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.terms section section p {
    text-align: left;
}

.register section section label {
    position: relative;
}

.register section section p {
    text-align: left;
    font-size: 1.2em;
    color: #555;
    font-weight: 500;
}

.register section section p span {
    color: #fff;
    background-color: #f31f00;
    font-size: .6em;
    padding: 5px;
    margin-right: 10px;
    border-radius: 5px;
}

.register label input[type='text']:focus {
    box-shadow: none;
}

.register select {
    display: inline-block;
    margin: 0 5px 1.5em 0;
    padding: 15px 10px;
    font-size: 1em;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 1px #ccc;
    color: #555;
    white-space: nowrap;
}

.register .address {
    position: relative;
}

.register .address::after {
    content: "▼";
    position: absolute;
    top: 98px;
    right: 20px;
}

.register select:focus {
    box-shadow: none;
}

.register .w100p {
    width: 100%;
}

.register section section input[type='text'],
.register section section input[type='email'],
.register section section input[type='password'] {
    font-size: 1em;
}

.register .rg-terms {
    text-align: center;
    margin-top: 20px;
}

.register .check-icon {
    margin-right: 5px;
}

.term {
    margin: 3rem 0;
}

.term h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 2rem;
}

.term h3 span {
    color: #1A0067;
}

.terms section section p {
    color: #000;
}

.terms section section ul {
    margin: 1em 0;
    padding: 0 0 0 30px;
    border-bottom: none;
}

.terms section section ul li {
    width: 100%;
    list-style-type: disc;
    padding: 0;
    margin: auto;
}

.terms .create {
    text-align: right;
}

/* 用語補足説明用ポップアップ */
.word-popup {
    background-color: #efefef;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 500px;
    height: 250px;
    opacity: 0;
    transition: .7s;
    visibility: hidden;
    z-index: 9999;
    overflow-y: auto;
}

.word-popup label {
    width: auto !important;
}

#popup-on-1,
#popup-on-2,
#popup-on-3,
#popup-on-4,
#popup-on-5,
#popup-on-6,
#popup-on-7,
#popup-on-8,
#popup-on-9,
#popup-on-10 {
    display: none;
}

#popup-on-1:checked + .word-popup,
#popup-on-2:checked + .word-popup,
#popup-on-3:checked + .word-popup,
#popup-on-4:checked + .word-popup,
#popup-on-5:checked + .word-popup,
#popup-on-6:checked + .word-popup,
#popup-on-7:checked + .word-popup,
#popup-on-8:checked + .word-popup,
#popup-on-9:checked + .word-popup,
#popup-on-10:checked + .word-popup {
    opacity: 1;
    visibility: visible;
}

.icon-close {
    background: #1A0067;
    color: #fff;
    font-size: 24px;
    padding: 0 10px;
    position: absolute;
    right: 0;
}

.btn-close {
    background: #1A0067;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    margin: 0 auto;
    width: 50%;
    text-align: center;
}

.btn-open {
    cursor: pointer;
}

.btn-open .word-btn {
    color: #1a0067;
    font-size: 14px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.popup-content {
    margin: 40px auto 40px auto;
    width: 90%;
    text-align: left;
    font-size: 16px;
}

@media screen and (max-width: 560px) {
    .word-popup {
        width: 250px;
        height: 200px;
    }

    .icon-close {
        font-size: 16px;
        padding: 0 5px;
    }

    .btn-close {
        margin: 0 auto 30px auto;
    }

    .popup-content {
        font-size: 12px;
    }
}

/* マイページ対応 */
@media screen and (max-width: 560px) {
    .my-page {
        margin: 100px 0 0 0;
        text-align: center;
    }

    .my-page .title,
    .mypage-button {
        margin: 10px;
    }
}

/* 売却経費一覧画面 */
.souteiBaikyaku {
    width: 100%;
    text-align: center;
}

.souteiBaikyaku label,
.gaisan label,
.tedori label {
    padding: 0 10px;
}

.baikyakukeihi {
    margin: 5% 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.baikyakukeihi th {
    padding: 10px;
    border: 1px solid #eee;
    background-color: #ddd;
}

.baikyakukeihi td {
    padding: 10px;
    border: 1px solid #eee;
}

.tyuuizikou {
    list-style: disc;
}

.user {
    margin: 30px;
    text-align: center;
}

/* .baikyakukeihi td:nth-child(2),
.baikyakukeihi td:nth-child(3),
.baikyakukeihi td:nth-child(4) {
    width: 15%;
    text-align: center;
} */

@media screen and (max-width: 560px) {
    .baikyakukeihi td:nth-child(2),
    .baikyakukeihi td:nth-child(3),
    .baikyakukeihi td:nth-child(4) {
        width: 20%;
    }
}


/** */
li.submit,
li.closeContextMenu {
    cursor: pointer;
}

div.chousa_item,
div.kinrin_item,
div.kouji_item {
    cursor: pointer;
}


/** */
.pagenation li a.current_page,
.pagenation a.current_page {
    background: #2023ce;
    color: #CCCCCC;
    cursor: default;
}


/** */
.news li {
    width: 100% !important;
}

.acd-check:checked + .acd-label + .acd-content {
    height: auto !important;
}


/* */
input.input_number {
    text-align: right;
}

button.next.update {
    background: #72c665;
}

button.next.finish {
    background: #ff6b6b;
}

button.next.next_screen {
    background: #2023ce;
}

button.next.gray {
    background: #888 !important;
}


button.delete {
    background: #888;
    font-size: 12px;
    padding: 2px 5px;
    width: auto;
}


a.mode_active {
    background: #2021a8;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

a.mode_active:hover {
    background: #7374e8;
    color: #fff !important;
}
