﻿/* Fonts */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400);

/* fontawesome */
@import url(http://weloveiconfonts.com/api/?family=fontawesome);

[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}

/* Simple Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    background: #e9e9e9;
    color: #5e5e5e;
    font: 400 87.5%/1.5em 'Open Sans', sans-serif;
}

/* Form Layout */
.form-wrapper {
    background: #fafafa;
    margin: 3em auto;
    padding: 0 1em;
    max-width: 370px;
}

h1 {
    text-align: center;
    padding: 1em 0;
}

form {
    padding: 0 1.5em;
}

.form-item {
    margin-bottom: 0.75em;
    width: 100%;
}

    .form-item input {
        background: #fafafa;
        border: none;
        border-bottom: 2px solid #e9e9e9;
        color: #666;
        font-family: 'Open Sans', sans-serif;
        font-size: 1em;
        height: 50px;
        transition: border-color 0.3s;
        width: 100%;
    }

        .form-item input:focus {
            border-bottom: 2px solid #c0c0c0;
            outline: none;
        }

.button-panel {
    margin: 2em 0 0;
    width: 100%;
}

    .button-panel .button {
        /*background: #f16272;*/
        background: #4682b4;
        border: none;
        color: #fff;
        cursor: pointer;
        height: 50px;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.2em;
        letter-spacing: 0.05em;
        text-align: center;
        text-transform: uppercase;
        transition: background 0.3s ease-in-out;
        width: 100%;
    }

.button:hover {
    /*background: #ee3e52;*/
    background: #6495ed;
}

.form-footer {
    font-size: 1em;
    padding: 2em 0;
    text-align: center;
}

    .form-footer a {
        color: #8c8c8c;
        text-decoration: none;
        transition: border-color 0.3s;
    }

        .form-footer a:hover {
            border-bottom: 1px dotted #8c8c8c;
        }

/*追加*/
.top_space-mid {
    margin-top: 20px
}

.top_space-short {
    margin-top: 10px
}

.top_space-long {
    margin-top: 30px
}

.Origin-H {
    font-size: 20px;
    color: red;
    padding: 30px 30px 5px 30px;
}

.Origin-H-Normal {
    font-size: 20px;
    color: dodgerblue;
    padding: 0px 30px 5px 30px;
}

.Origin-error {
    font-size: 10px;
    color: red;
    padding: 30px 30px 5px 30px;
}

.Origin-spacer {
    padding: 30px 30px 5px 30px;
}

.Origin-spacer-short {
    padding: 10px 30px 0px 30px;
}

.Origin-spacer-up {
    padding: 20px 100px 10px 100px;
}

.Origin-spacer-up0 {
    padding: 3px 0px 20px 0px;
}

.Origin-spacer-updown0 {
    padding: 0px 20px 0px 20px;
}

.Origin-textalign {
    text-align:center
}

.Origin-margin-center {
    margin: 0px auto;
}

.Origin-lineheight {
    line-height: 10px;
}

.Origin-Index {
    font-size: 22px;
    text-align: center;
}

.Origin-Progress {
    margin:0px auto;
    width:15%
}

.Origin-abtInfo-Date {
    padding: 20px 0px 0px 0px;
    text-align: center;
    margin: 0px auto;
}

.Origin-abtInfo {
    padding: 10px 0px 20px 0px;
    margin: 0px auto;
    font-size:18px;
    text-align: center;
    width: 70%
}

.Origin-hr {
    position: relative;
    height: 1px;
    border-width: 0;
    background-image: -webkit-linear-gradient(left, transparent 0%,#808080 50%,transparent 100%);
    background-image: linear-gradient(90deg, transparent 0%,#808080 50%,transparent 100%);
}

.Origin-addForm {
    padding: 30px 0px 10px 0px;
    text-align: center;
    margin: 0px auto;
}

.Origin-pageBottom {
    padding: 0px 0px 40px 0px;
    text-align: center;
    margin: 0px auto;
}

.Origin-abt-default-fontsize {
    font-size: 1.2em;
}

h2 {
    text-align: center;
    padding: 30px;
}

h3 {
    text-align: center;
    padding: 30px 30px 5px 30px;
}

h4 {
    text-align: center;
    padding: 20px 20px 5px 20px;
}

.image-vw {
    max-width: 70%;
    height: auto;
}

.file-input-zone-bl {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    cursor: pointer;
    position: relative;
    width: 256px;
    height: 256px;
    /*background-image: url('/Images/back_l.png');*/
    background-image: url('/Images/front50.png');
    /*opacity: 0.5*/
}

    .file-input-zone-bl:hover {
        background-color: lightblue;
    }

    .file-input-zone-bl input[type=file] {
        position: absolute;
        width: 70%;
        height: 70%;
        opacity: 0;
        cursor: pointer;
    }

.file-input-zone-br {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    cursor: pointer;
    position: relative;
    width: 256px;
    height: 256px;
    /*background-image: url('/Images/back_r.png');*/
    background-image: url('/Images/front_r250.png');
    /*opacity: 0.5*/
}

    .file-input-zone-br:hover {
        background-color: lightblue;
    }

    .file-input-zone-br input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.file-input-zone-fl {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    cursor: pointer;
    position: relative;
    width: 256px;
    height: 256px;
    /*background-image: url('/Images/front_l.png');*/
    background-image: url('/Images/inside250.png');
    /*opacity: 0.5*/
}

    .file-input-zone-fl:hover {
        background-color: lightblue;
    }

    .file-input-zone-fl input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.file-input-zone-fr {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    cursor: pointer;
    position: relative;
    width: 256px;
    height: 256px;
    /*background-image: url('/Images/front_r.png');*/
    background-image: url('/Images/Certificate.png');
    opacity: 0.5
}

    .file-input-zone-fr:hover {
        background-color: lightblue;
    }

    .file-input-zone-fr input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.file-input-zone-inside {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    cursor: pointer;
    position: relative;
    width: 256px;
    height: 256px;
    background-image: url('/Images/inside.png');
    opacity: 0.5
}

    .file-input-zone-inside:hover {
        background-color: lightblue;
    }

    .file-input-zone-inside input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.file-input-zone-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    cursor: pointer;
    position: relative;
    width: 256px;
    height: 256px;
    /*background-image: url('/Images/back_l.png');*/
    background-image: url('/Images/reserve.png');
    opacity: 0.5
}

    .file-input-zone-reserve:hover {
        background-color: lightblue;
    }

    .file-input-zone-reserve input[type=file] {
        position: absolute;
        width: 70%;
        height: 70%;
        opacity: 0;
        cursor: pointer;
    }

.GridWrapper1 {
    display: grid;
    grid-template-columns: 200px;
    grid-template-rows: 25px;
}

.GridWrapper2 {
    display: grid;
    grid-template-columns: 100px 100px;
    grid-template-rows: 25px 25px;
}

.GridWrapper3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    /*grid-template-rows: 25px 25px 25px;*/
}

.GridWrapper4 {
    display: grid;
    grid-template-columns: 100px 100px 100px 100px;
    grid-template-rows: 25px 25px 25px 25px;
}

.GridWrapper5 {
    display: grid;
    grid-template-columns: 100px 100px 100px 100px 100px;
    grid-template-rows: 25px 25px 25px 25px 25px;
    
}

.GridWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    /*grid-template-rows: 25px 25px 25px;*/
    grid-gap: 2px;
    grid-row-gap:10px;
    width: 100%;
}

.GridWrapper-wide {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /*grid-template-rows: 25px 25px 25px;*/
    grid-gap: 8px;
    width: 100%;
}

.GridWrapper-Bet {
    display: grid;
    grid-template-columns: 170px 50px 170px;
    grid-gap: 10px;
    /*grid-template-rows: 25px 25px 25px;*/
}

.item{
    width:100%;
}

@media(max-width: 600px) {
    .GridWrapper {
        grid-template-columns: 1fr;
    }

    .GridWrapper-Bet {
        display: grid;
        grid-template-columns: 1fr 50px 1fr;
        grid-gap: 10px;
        /*grid-template-rows: 25px 25px 25px;*/
    }
}