
body {
    box-sizing: border-box;
    font-family: "Roboto Condensed", "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "Noto Sans KR", "Noto Sans Thai", sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #00338d !important;
    color: #fff;
}

#section_header {
    background: url('/assets/images/cover.jpg') no-repeat 50% 0% fixed;
    background-size: cover;
    overflow: hidden;
}

.btn-menu {
    padding: 10px 15px;
}
.somaller {
    font-size: 80%;
}
.card-title {
    padding: 10px 10px 5px 10px;
}
.card-hr {
    margin-left: 10px;
    width: calc(100% - 20px);
    margin-top: -7px;
    border-top-color: #000;
    border-top-style: dashed;
    border-top-width: 1px;
}

#uiMask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}


.block-district div.elm-container > div:nth-of-type(1) > div {
    padding-left: 30px;
}
.block-district div.elm-container > div:nth-of-type(1) > div:after {
    content: 'MD-';
    position: absolute;
    font-size: 90%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.block-district div.elm-container > div:nth-of-type(2) > div {
    padding-right: 15px;
}
.block-district div.elm-container > div:nth-of-type(2) > div:after {
    content: 'R';
    position: absolute;
    font-size: 90%;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.block-district div.elm-container > div:nth-of-type(3) > div {
    padding-right: 15px;
}
.block-district div.elm-container > div:nth-of-type(3) > div:after {
    content: 'Z';
    position: absolute;
    font-size: 90%;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.has-error .card-hr {
    border-top-color: firebrick !important;
}
.card-body > div > div:nth-child(even) {
    background-color: #F6F6F6;
}

#modalConfirm table td {
    font-size: 90%;
}
#modalConfirm table th {
    font-size: 80%;
    color: #666;
}

.card-hint {
    font-size: 90%;
    color: #999;
}
.card-error {
    display: none;
    font-size: 90%;
    color: firebrick;
}
.has-error .card-error {
    display: block;
}

.card-title span.required {
    font-size: 60%;
    color: firebrick;
    display: inline-block;
    margin-left: 5px;
}
label span.required {
    font-size: 80%;
    color: firebrick;
    display: inline-block;
    margin-left: 5px;
}

.msg {
    display: none;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: firebrick;
    background-color: #FFEBEE;
    border-width: 2px;
}
.has-error input[type=checkbox].secondary,
.has-error input[type=radio].secondary {
    border: 2px solid firebrick !important;
    background-color: #FFEBEE;
}

div.participant-container:nth-child(odd).has-errors {
    background-color: #b2222210;
}
div.participant-container:nth-child(even).has-errors {
    background-color: #b2222220;
}

/* radio */
/* checkbox radio 共通 */
input[type=checkbox],input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;      /* 生成ボタンサイズ */
    width: 20px;       /* 生成ボタンサイズ */
    vertical-align: -0.8rem;
    transition:all .15s ease-out 0s;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: .4rem;
    outline: none;
    border-radius: 10%;
}
/* Checkbox */
input[type=checkbox]:before,input[type=checkbox]:after {
    position: absolute;
    content: "";
    background: #fff;
    transition: all .2s ease-in-out;
}
input[type=checkbox]:before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
input[type=checkbox]:after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transition-delay: .2s;
}
input[type=checkbox]:checked:before {
    left: 1px;
    top: 10px;
    width: 6px;
    height: 2px;
}
input[type=checkbox]:checked:after {
    right: 5px;
    bottom: 1px;
    width: 2px;
    height: 14px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
    width: 7px;
    height: 2px;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
    left: 1px;
    top: 7px;
}
input[type=checkbox]:indeterminate:after {
    right: 1px;
    bottom: 7px;
}
/* Radio */
input[type=radio] {
    border-radius: 50% !important;
}
input[type=radio]:checked:before {
    transform: scale(1);
}
input[type=radio]:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 3px;
    transform: scale(0);
    transition: all ease-out 250ms;
}
/* Colors */
input[type=checkbox],input[type=radio] {
    border: 2px solid #4caf50;
}
input[type=checkbox]:checked,input[type=checkbox]:indeterminate,input[type=radio]:checked:before {
    background: #4caf50;
}
/* Complement colors */
/* secondary */
input[type=checkbox].secondary,input[type=radio].secondary {
    border: 2px solid #6c757d;
}
input[type=checkbox].secondary:checked,input[type=checkbox].secondary:indeterminate,input[type=radio].secondary:checked:before {
    background: #6c757d;
}
/* green */
input[type=checkbox].green,input[type=radio].green {
    border: 2px solid #32CD32;
}
input[type=checkbox].green:checked,input[type=checkbox].green:indeterminate,input[type=radio].green:checked:before {
    background: #32CD32;
}
/* blue */
input[type=checkbox].blue,input[type=radio].blue {
    border: 2px solid #1E90FF;
}
input[type=checkbox].blue:checked,input[type=checkbox].blue:indeterminate,input[type=radio].blue:checked:before {
    background: #1E90FF;
}
/* red */
input[type=checkbox].red,input[type=radio].red {
    border: 2px solid #FF3300;
}
input[type=checkbox].red:checked,input[type=checkbox].red:indeterminate,input[type=radio].red:checked:before {
    background: #FF3300;
}
/* orange */
input[type=checkbox].orange,input[type=radio].orange {
    border: 2px solid #FFA500;
}
input[type=checkbox].orange:checked,input[type=checkbox].orange:indeterminate,input[type=radio].orange:checked:before {
    background: #FFA500;
}
/* violet */
input[type=checkbox].violet,input[type=radio].violet {
    border: 2px solid #EE82EE;
}
input[type=checkbox].violet:checked,input[type=checkbox].violet:indeterminate,input[type=radio].violet:checked:before {
    background: #EE82EE;
}
/******** payment **********/
.alert-limit {
    display: none;
}
.remain {
    font-size: 28px;
    font-weight: bold;
    color: black;
    letter-spacing: 0.1em;
    /* -webkit-text-stroke: 2px #ccc; */
    /* text-stroke: 2px #ccc; */
    /* paint-order: stroke;*/
}

.item-header {
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.cart-detail {
    background-color: #FFFFFF80 !important;
}
.cart-detail-header {
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}

ul.cart-detail-table {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.cart-detail-table li {

}
ul.cart-detail-table li div p {
    margin: 5px;
}
ul.cart-detail-table li div p:nth-of-type(1) {
    color: #666;
}
ul.cart-detail-table li div p:nth-of-type(2) {

}
.cart-note {
    font-size: 80%;
    color: #666;
}
.bg-gradient {
    background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%) !important;
}