/*------------------------------------------------------------
	BODY BASIC
------------------------------------------------------------*/
body {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.02em;
    color: #333;
}

/*------------------------------------------------------------
	RESPONSIVE
------------------------------------------------------------*/
.pconly {
    display: block;
}
.sponly {
    display: none;
}

/*------------------------------------------------------------
	HEADER
------------------------------------------------------------*/
header {
    background: #f0f8ff;
    padding: 15px 0;
}

.headerInner {
    width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.siteLogo {
    width: 320px;
    position: relative;
}
.siteLogo a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
}

.mark {
    width: 80px;
    height: 80px;
    padding: 10px;
    border: 2px solid #4682b4;
    border-radius: 50%;
    color: #4682b4;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    position: relative;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
}
.mark span {
    width: 28px;
    text-align: center;
}
.mark::before {
    content: "";
    width: 78px;
    height: 2px;
    background: #4682b4;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.mark::after {
    content: "";
    width: 2px;
    height: 78px;
    background: #4682b4;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
}

.siteName {
    display: flex;
    justify-content: space-between;
    font-size: 32px;
    line-height: 50px;
    padding-top: 5px;
    font-weight: 500;
    color: #4682b4;
    margin-left: 20px;
}
.siteNameEn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 400;
    color: #4682b4;
    margin-left: 20px;
}

.headTitle {
    color: #3cb371;
    font-size: 24px;
    line-height: 48px;
    width: 200px;
    font-weight: 500;
}

.userInfo {
    width: 300px;
    display: flex;
    justify-content: space-between;
}
.userName {
    font-size: 14px;
    line-height: 36px;
    color: #666;
}

.loginBtn {
    cursor: pointer;
}

.loginBtn a {
    background: #4682b4;
    color: #fff;
    font-size: 14px;
    line-height: 36px;
    padding: 0 15px;
    border-radius: 4px;
    transition: all 0.2s;
    display: inline-block;
}

.loginBtn a:hover {
    background: #5aa7e6;
}

/*------------------------------------------------------------
	MAIN DISPLAY
------------------------------------------------------------*/
#container {
    padding: 80px 0;
    width: 960px;
    margin: 0 auto;
}

#container section {
    margin-bottom: 60px;
}

.menuTitle {
    color: #4682b4;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 2px solid #4682b4;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}
.menuTitle::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #4682b4;
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 2px;
}

.inner {
    width: 940px;
    margin: 0 auto;
}

.topMenu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
.topMenu li {
    width: 460px;
    margin-bottom: 20px;
    position: relative;
}
.topMenu li a {
    color: #4682b4;
    border: 2px solid #4682b4;
    border-radius: 10px;
    font-size: 16px;
    line-height: 48px;
    display: block;
    padding: 0 0 0 80px;
    position: relative;
    font-weight: 500;
    transition: all 0.2s;
}
.topMenu li:nth-child(1)::before,
.topMenu li:nth-child(2)::before {
    content: "\f291";
    font-family: fontawesome;
    position: absolute;
    top: 12px;
    left: 36px;
    color: #4682b4;
    z-index: 10;
}
.topMenu li:nth-child(3)::before {
    content: "\f017";
    font-family: fontawesome;
    position: absolute;
    top: 13px;
    left: 36px;
    color: #4682b4;
    z-index: 10;
    font-size: 20px;
}

.topMenu li a:hover {
    background: #f0f8ff;
}

.feed li {
    display: flex;
    padding: 10px 0;
    position: relative;
}
.feed li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-size: 9px 2px;
    background-image: linear-gradient(
        to right,
        #ccc,
        #ccc 3px,
        transparent 2px,
        transparent 2px
    );
    background-repeat: repeat-x;
}
.feedDate {
    font-size: 13px;
    line-height: 26px;
    color: #999;
    letter-spacing: 0.06em;
    width: 100px;
}
.feedTitle {
    margin-left: 20px;
    line-height: 26px;
}

.feed li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}
.feed li:hover .feedTitle {
    text-decoration: underline;
}

/*------------------------------------------------------------
	LOGIN
------------------------------------------------------------*/
.loginBox {
    width: 500px;
    margin: 50px auto 0;
    padding: 40px;
    background: #f0f8ff;
}
.lTitle {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.login {
    width: 400px;
    margin: 0 auto 20px;
    display: flex;
    flex-wrap: wrap;
}
.login dt {
    width: 80px;
    margin-bottom: 10px;
    padding: 10px 0;
}
.login dd {
    width: 300px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.btnwrap {
    text-align: center;
}

button.sbm {
    border: none;
    display: inline-block;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 6px;
    background: #4682b4;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

button.sbm:hover {
    background: #5aa7e6;
}

/*------------------------------------------------------------
	ORDER
------------------------------------------------------------*/
.orderHead {
    display: flex;
    justify-content: space-between;
}

.steps {
    display: flex;
}

.steps li {
    width: 100px;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    position: relative;
    padding-top: 40px;
}
.steps li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #bbb;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -10px;
}
.steps li.on::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #bbb;
    background: #ffb6c1;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -10px;
}
.steps li:nth-child(2)::after {
    content: "";
    width: 78px;
    height: 2px;
    background: #bbb;
    position: absolute;
    top: 21px;
    left: 0;
    margin-left: -38px;
}
.steps li:nth-child(3)::after {
    content: "";
    width: 78px;
    height: 2px;
    background: #bbb;
    position: absolute;
    top: 21px;
    left: 0;
    margin-left: -38px;
}

.errorMessage {
    border: 2px dotted #cc2728;
    padding: 10px 20px;
    border-radius: 8px;
    width: 460px;
}

.errorTitle {
    padding-left: 25px;
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
    color: #ff8c00;
    position: relative;
    margin-bottom: 10px;
}
.errorTitle::before {
    content: "!";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #cc2728;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.errorCont {
    font-size: 13px;
    line-height: 20px;
}

input[type="text"].dp {
    width: 200px;
    margin-right: 0.5em;
}

.orderDate {
    color: #4682b4;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 2px solid #4682b4;
    margin-bottom: 20px;
}

.oiname {
    display: flex;
    padding-bottom: 5px;
    border-bottom: 2px solid #ccc;
}
.oiname li {
    color: #ff8c00;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
}

.oiname li:nth-child(1) {
    width: 50px;
}
.oiname li:nth-child(2) {
    width: 300px;
    padding-left: 10px;
}
.oiname li:nth-child(3) {
    width: 300px;
    margin-left: 10px;
    padding-left: 10px;
}
.oiname li:nth-child(4) {
    width: 60px;
    margin-left: 15px;
    padding-left: 10px;
}
.oiname li:nth-child(5) {
    width: 60px;
    margin-left: 10px;
    padding-left: 10px;
}
.oiname li:nth-child(6) {
    width: 60px;
    margin-left: 10px;
    padding-left: 10px;
}
.oiname li:nth-child(7) {
    width: 85px;
}

.oiname-idv {
    display: flex;
    padding-bottom: 5px;
    border-bottom: 2px solid #ccc;
}

.oiname-idv li {
    color: #ff8c00;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
}

.oiname-idv li:nth-child(1) {
    width: 185px;
}
.oiname-idv li:nth-child(2) {
    width: 300px;
    padding-left: 10px;
}
.oiname-idv li:nth-child(3) {
    width: 290px;
    margin-left: 10px;
    padding-left: 10px;
}
.oiname-idv li:nth-child(4) {
    width: 30px;
    margin-left: 45px;
    text-align: left;
}
.oiname-idv li:nth-child(5) {
    width: 30px;
    margin-left: 10px;
    text-align: center;
}
.oiname-idv li:nth-child(6) {
    width: 30px;
    margin-left: 10px;
    text-align: right;
}

.orderList {
}

.orderBox {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
}

.orderNum {
    width: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.orderName {
    width: 185px;
    font-size: 18px;
    font-weight: 500;
}

.orderSelect {
    width: 610px;
    display: flex;
    justify-content: space-between;
}

label.mdchk {
    display: block;
}

.remodalInner {
    width: 300px;
    margin: 0 auto;
    text-align: left;
}

.allergenChk {
    margin: 0 auto 20px;
}

.sideD {
    width: 300px;
}
.sideD-1 {
    margin-bottom: 10px;
}
.sideD-1 select {
    width: 100%;
}

.sideD-2 {
    display: flex;
}
input[type="text"].alg {
    width: 240px;
    border: 1px solid #ccc;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding: 10px;
}

button.mdbtn {
    width: 60px;
    background: #4682b4;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
button.mdbtn:hover {
    background: #5aa7e6;
}

.mainD {
    width: 300px;
}
.mainD-1 {
    margin-bottom: 10px;
}
.mainD-1 select {
    width: 100%;
}
.mainD-2 {
    display: flex;
}
.orderPieces {
    width: 200px;
    margin-left: 15px;
    display: flex;
    justify-content: space-between;
}
.orderChk {
    width: 120px;
    margin-left: 30px;
    display: flex;
    justify-content: space-between;
}

input[type="text"].pieces {
    width: 60px;
}

.orderDelete {
    width: 85px;
    text-align: right;
}
button.delbtn {
    padding: 10px 15px;
    color: #fff;
    border-radius: 6px;
    background: #a52a2a;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
button.delbtn:hover {
    background: #cc2728;
}

.orderStatus {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.orderPlus {
    position: relative;
    margin-bottom: 20px;
}
.orderPlus::before {
    content: "";
    width: 13px;
    height: 3px;
    background: #4682b4;
    position: absolute;
    top: 21px;
    left: 19px;
}
.orderPlus::after {
    content: "";
    width: 3px;
    height: 13px;
    background: #4682b4;
    position: absolute;
    top: 16px;
    left: 24px;
}

button.plus {
    padding: 8px 30px 8px 40px;
    border: 2px solid #4682b4;
    color: #4682b4;
    text-align: center;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}
button.plus:hover {
    background: #f0f8ff;
}

.totalNum {
    text-align: right;
    font-weight: bold;
}

.orderControl {
    padding: 20px 0;
    position: relative;
}

.ctrl {
    display: flex;
    justify-content: center;
}
.ctrl li {
    margin: 0 5px;
}

button.backbtn {
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    background: #999;
    cursor: pointer;
    font-weight: 700;
    border: none;
    transition: all 0.2s;
}

button.backbtn:hover {
    background: #666;
}

input[type="submit"].confirmbtn {
    text-align: center;
    color: #fff;
    background: #ff8c00;
    border-radius: 4px;
    padding: 10px 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.2s;
}

input[type="submit"].confirmbtn:hover {
    background: #ffa500;
}

button.deletebtn {
    text-align: center;
    color: #fff;
    background: #cc2728;
    border-radius: 4px;
    padding: 10px 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.2s;
}

button.deletebtn:hover {
    background: #ff0000;
}

/* CONFIRM */

.item {
    padding: 5px 10px;
    line-height: 20px;
}

.itemOrderNum {
    width: 200px;
    display: flex;
    justify-content: space-between;
}
.itemOrderNum li {
    width: 60px;
    padding-left: 10px;
}
.itemOrderChk {
    width: 120px;
    display: flex;
    justify-content: space-between;
}

.itemOrderChk li {
    width: 30px;
    text-align: center;
}

.orderAtt {
    padding: 20px 0;
}
.attTitle {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}
.attCont {
    font-size: 12px;
    line-height: 20px;
}

/* COMPLETE */

.compTitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 8px;
    padding-left: 1.5em;
    position: relative;
}
.compTitle::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #ff8c00;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 0;
}

/* HISTORY */

button.searchbtn {
    padding: 10px 15px 10px;
    border-radius: 6px;
    background: #1e90ff;
    color: #fff;
    border: none;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    top: -1px;
}

.hisT {
    margin: 30px 0;
    width: 100%;
}

.hisT thead th {
    border-bottom: 2px solid #ff8c00;
    color: #ff8c00;
    text-align: left;
    padding: 10px 10px;
}
.hisT tbody td {
    padding: 10px 10px;
    border-bottom: 1px dotted #ccc;
}

.hisT tbody td a {
    display: inline-block;
    padding-right: 1em;
    position: relative;
}
.hisT tbody td a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #00bfff;
    border-bottom: 2px solid #00bfff;
    transform: rotate(-45deg);
    position: absolute;
    top: 7px;
    right: 0;
}

.hisT tbody td a:hover::after {
    border-color: #4682b4;
}

.pagenavi {
    display: flex;
    justify-content: center;
}
.pagenavi li {
    width: 36px;
    height: 36px;
    text-align: center;
    margin: 0 5px;
    font-size: 14px;
    line-height: 36px;
    font-weight: bold;
}

.pagenavi li a {
    width: 36px;
    height: 36px;
    border: 1px solid #00bfff;
    text-align: center;
    color: #00bfff;
    display: block;
}

.pagenavi li.on {
    background: #00bfff;
    color: #fff;
    border: 1px solid #00bfff;
    line-height: 36px;
}
.pagenavi li a:hover {
    background: #00bfff;
    color: #fff;
    border: 1px solid #00bfff;
}

.fnav {
    position: relative;
}

.historyBack {
    position: absolute;
    top: 0;
    left: 0;
}

.historyBack a {
    display: inline-block;
    padding: 8px 40px;
    background: #999;
    color: #fff;
    border-radius: 8px;
    line-height: 20px;
}
.order-checkbox2 {
    cursor: not-allowed;
}

/*------------------------------------------------------------
	SINGLE
------------------------------------------------------------*/
.postTitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1em;
}

.postContent {
    margin: 0 1em 2em;
}
.postContent p {
    margin-bottom: 1.5em;
}

.backbtn {
    text-align: center;
}
.backbtn a {
    display: inline-block;
    color: #fff;
    padding: 8px 50px;
    background: #ff8c00;
    border-radius: 6px;
    font-weight: bold;
}

/*------------------------------------------------------------
	FOOTER
------------------------------------------------------------*/
footer {
}
.copy {
    text-align: center;
    color: #bbb;
    width: 960px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 20px;
    padding: 10px 0;
    border-top: 1px solid #ccc;
}

/*------------------------------------------------------------
	Util
------------------------------------------------------------*/
.hidden {
    visibility: hidden;
}
