@import url("../fontawesome5/css/fontawesome-all.min.css");

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 100;
    src: url("../font/NotoSans-Thin.woff2") format("woff2");
    src: url("../font/NotoSans-Thin.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 200;
    src: url("../font/NotoSans-Thin.woff2") format("woff2");
    src: url("../font/NotoSans-Thin.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    src: url("../font/NotoSans-Light.woff2") format("woff2");
    src: url("../font/NotoSans-Light.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    src: url("../font/NotoSans-Regular.woff2") format("woff2");
    src: url("../font/NotoSans-Regular.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 500;
    src: url("../font/NotoSans-Medium.woff2") format("woff2");
    src: url("../font/NotoSans-Medium.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    src: url("../font/NotoSans-Regular.woff2") format("woff2");
    src: url("../font/NotoSans-Regular.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    src: url("../font/NotoSans-Bold.woff2") format("woff2");
    src: url("../font/NotoSans-Bold.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 800;
    src: url("../font/NotoSans-Bold.woff2") format("woff2");
    src: url("../font/NotoSans-Bold.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 900;
    src: url("../font/NotoSans-Black.woff2") format("woff2");
    src: url("../font/NotoSans-Black.woff") format("woff");
}


body, html {
    padding: 0;
    margin: 0;
}

body * {
    box-sizing: border-box;
    line-height: 1.7;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

input, textarea, select {
    font-size: 13px;
    padding: 0 0.5em;
}

body strong {
    font-weight: 900;
}

h1, h2, h3 {
    color: #444;
    font-weight: 500;
}

p {
    color: #555;
}

h1 {
    font-size: 24px;
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
}

h2 {
    font-size: 20px;
    border: 1px solid #686868;
    border-left: 10px solid #686868;
    padding: 5px 5px 5px 20px;
    margin: 20px 0;
}

h3 {
    font-size: 18px;
    background: #F3F6F8;
    border: 1px solid #8F7B5C;
    padding: 5px 5px 5px 25px;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

table th, table td {
    padding: 5px 10px;
    font-size: 12px;
    text-align: left;
    border: 1px solid #ccc;
    color: #666;
    vertical-align: top;
}

td button {
    margin: 0 10px;
    font-size: 12px;
}

table th {
    background: #F0F0F0;
}

a {
    color: #00F;
}

@media (max-width: 780px) {

    .progress2 table,
    .progress2 table td {
        display: block;
        padding: 0;
        margin: 0;
    }

    .progress2 table th {
        display: none;
    }

    .progress2 table {
        width: 100%;
    }

    .progress2 table tr {
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .progress2 table td {
        width: 50%;
        box-sizing: border-box;
        font-size: 10px;
    }

    .progress2 table td:nth-child(1):before {
        content: "発注日：";
    }

    .progress2 table td:nth-child(2):before {
        content: "入金日：";
    }

    .progress2 table td:nth-child(3):before {
        content: "校了日：";
    }

    .progress2 table td:nth-child(4):before {
        content: "発送予定：";
    }

    .progress2 table td:nth-child(5):before {
        content: "発送日：";
    }

    .progress2 table td:nth-child(6):before {
        content: "配送：";
    }

    .progress2 table td {
        padding-right: 5px;
    }

    .progress2 table td:before {
        font-size: 11px;
        display: inline-block;
        width: 70px;
        padding: 3px 3px;
        background: #F0F0F0;
        margin-right: 5px;
    }
}

@media (max-width: 450px) {
    .progress2 table td:before {
        font-size: 11px;
        display: inline-block;
        width: auto;
        padding: 3px;
        background: none;
        margin-right: 0;
    }

    .progress2 table td {
        padding: 0;
    }

}


button {
    padding: 0px 20px;
    background: #FFF;
    color: #333;
    border-radius: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
}

button,
button * {
    font-size: 14px;
}

button.bigbutton {
    width: 100%;
    max-width: 300px;
    display: block;
    background: #009900;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    margin: 20px auto !important;
    border-radius: 5px;
}

button.bigbutton02 {
    width: 100%;
    max-width: 300px;
    display: block;
    background: #d82617;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    margin: 20px auto !important;
    border-radius: 5px;
}

section {
    margin-bottom: 50px;
}

small {
    font-size: .8em;
}

.inner {
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    margin: 0 auto;
}

/* 前のページに戻る
------------------------------*/
#goback {
    padding-top: 20px;
}

#goback .inner {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    text-align: right;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
    background: #f0f0f0;
}

#child #goback button {
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 20px;
    border: none;
    background: none;
    text-shadow: 2px 2px 2px #FFF;
    color: #000;
}

#child #container {
    padding-top: 0;
}

#child #container .inner {
    border: 1px solid #ccc;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}

/* test
------------------------------*/
/*
div{
	border:1px solid #333;
}
*/

/* name
--------------------------------------*/
#name {
    text-align: right;
    font-size: 14px;
    font-weight: bold;
}

/* header
--------------------------------------*/
header {
    padding: 0 0 10px;
}

header .inner {
    display: flex;
    justify-content: space-between;
}

header #logo {

}

header #logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

header .telno {

}

header .telno img {
    max-width: 159px;
    width: 100%;
    height: auto;
    display: block;
}

/*####################################### 640以下 #########################################*/
@media (max-width: 640px) {
    #name {
        text-align: center;
    }

    header .inner {
        display: block;
    }

    header #logo img,
    header .telno img {
        margin: 0 auto;
    }

}

/* nav
--------------------------------------*/
nav {
    min-height: 40px;
    background: #F0F0F0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-left: 1px solid #FFF;
}

nav ul li {
    padding: 0;
    margin: 0;
    border-right: 1px solid #FFF;
}

nav ul li:last-child {
    margin-left: auto;
    border-left: 1px solid #FFF;
}

nav ul li a {
    padding: 12px 20px;
    margin: 0;
    color: #333;
    text-align: center;
    text-decoration: none;
    display: block;
}

nav ul li a:hover {
    background: #e6e7e7;
}

nav ul li a i {
    margin-right: .5em;
}

/*####################################### 640以下 #########################################*/
@media (max-width: 640px) {
    nav ul,
    nav ul li {
        border: none !important;
    }

    nav ul li {
        flex: auto;
        border-right: none;
    }

    nav ul li a {
        padding: 12px 5px;
        word-break: keep-all;
        font-size: 10px !important;
    }

    nav ul li a .fas {
        margin: 0 auto;
        display: block;
        font-size: 20px !important;
    }

}

/* container
--------------------------------------*/
#container {
    padding: 20px 0 40px;
}


/* main
--------------------------------------*/
main {
    min-height: calc(100vh - 285px);
}

/*customer.html*/


/* footer
--------------------------------------*/
footer {
    background: #666;
    padding: 20px 0;
}

footer * {
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #FFF;
}

/* loginbox -------------------------------------*/
#loginbox {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    padding: 20px 10px;
    border: 1px solid #CCC;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

#loginbox p {
    text-align: center;
}

#loginbox dl,
#loginbox dt,
#loginbox dd {
    padding: 0;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

#loginbox div {
    padding-top: 20px;
}

#loginbox button,
#loginbox input {
    display: block;
    width: 100%;
    margin: 0 auto 10px;
    max-width: 250px;
    border: 1px solid #666;
    padding: 5px;
}

#loginbox input#_im_password {
    display: inline;
    width: 90%;
    margin: 0 auto 10px 0;
}

#loginbox span#password_eye {
    margin-left: 6px;
    cursor: pointer;
}

#loginbox input:placeholder-shown {
    background: #FFF;
}

#loginbox input:not(:placeholder-shown) {
    background: #E8F0FE;
}

#loginbox button {
    padding: 5px;
    background: #4485F4;
    color: #FFF;
}

/* Framework sign */
#IM_CREDIT {
    display: none;

}

/***/
.errormessage {
    color: red;
    font-weight: bold;
}