* {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    color: #a29589;
}

.bg {
    background: url(../img/bg.jpg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -99;
}

.bg2 {
    background: url(../img/bg2.jpg) no-repeat center center;
}

.wrapper {
    margin: 0;
    padding-top: 50px;
    width: 100vw;
    height: 100%;

}

.container {
    padding: 80px;
    width: 500px;
    border-radius: 20px;
    margin: 60px auto;
    border-radius: 10px;
    background: #fffcf8;
    box-shadow: 4px 4px 7px #22000011,
        -4px -4px 7px #22000011;
}

.container_list {
    padding: 0 20px 20px;

    width: calc(96% - 40px);
    margin: 60px auto 40px;
    position: relative;
}

.list_count {
    position: absolute;
    top: 30px;
    right: 24px;
}

.list_table {
    width: 100%;
}

.form-input-area {
    margin: 20px 0 40px;
}

.form-input {
    margin: 5px 0;
    padding: 7px 10px;
    border: none;
    border-radius: 4px;
    background: #f7eee8;
    box-shadow: inset 2px 2px 6px #ecdcd0,
        inset -2px -2px 6px #fff6e6;
}

.wide {
    width: 280px;
}

.mid {
    width: 200px;
}

.small {
    width: 160px;
}

.thin {
    width: 80px;
}

.ex-thin {
    width: 40px;
}

.textarea {
    width: 100%;
    height: 120px;
}

.form-input::placeholder {
    color: #c5b8ab;
}

.select {
    margin: 5px 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.select::after {
    position: absolute;
    right: 15px;
    width: 8px;
    height: 5px;
    background-color: #928569;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.form-input select {
    color: #c5b8ab;
    margin: 0;
    border: none;
    appearance: none;
    padding: 7px 0 7px 10px;
    background: none;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

.form-input:focus,
.form-input select:focus {
    outline: 3px solid #928569;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 40px;
    color: #a29589;
    line-height: 1.2em;
}

.section-title-list {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 20px;
    color: #a29589;
    line-height: 1.2em;
}

.form-button {
    margin: 30px 0 20px;
    display: inline;
    width: 100%;
    height: 36px;
    border-radius: 18px;
    background: #948572;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: center;
}

table {
    width: 100%;
}

th {
    font-weight: 600;
    background: #ecdcd0;
    border-right: 1px solid #fffcf8;
}

th,
td {
    padding: 6px;
    border-bottom: 1px solid #ecdcd0;
}

.pc {
    display: block;
}

.mobi {
    display: none;
}

.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance: textfield !important;
}

@media only screen and (max-width: 768px) {

    .wrapper {
        padding: 0;
        margin: 0 auto;
    }

    .container {
        padding: 35px 25px;
        width: calc(100% - 50px);
        max-width: 400px;
        margin: 20px auto;
    }

    .container_list {
        padding: 20px;
        width: calc(100% - 40px);
        margin: 20px auto;
        position: relative;
    }

    .pc {
        display: none;
    }

    .mobi {
        display: block;
    }

    table {

        border-top: 1px solid #ecdcd0;
        border-right: 1px solid #ecdcd0;
    }

    th {
        font-size: 10px;
        border-bottom: 1px solid #fffcf8;
        width: 70px;
    }

    .list_count {
        position: absolute;
        top: 16px;
        right: 18px;
    }
}