
body {
    margin: 0;
}
header {
    padding: 40px 0 20px;
    background-color: rgb(130, 130, 131);
}
h1 {
    margin: 0;
    text-align: center;
    font-size: 180%;
    color: #ffffff;
}
h1 .small_txt {
    font-size: 50%;
    flex-direction: column;
    margin: auto 30px 0;
}
h2 {
    margin: 30px 0 0;
    text-align: center;
}
h3 {
    border-bottom: solid 4px #e29b9b;
    position: relative;
    margin: 30px 0 10px;
    padding: 0px 0px 2px 22px;
}
h3::before {
    display: block;
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 6px;
    height: 12px;
    border-left: 12px solid #b90000;
}
span {
    color: #b90000;
    padding: 3px;
    border: solid 1px #b90000;
    border-radius: 3px;
    margin: 10px;
    font-size: 12px;
    background-color: antiquewhite;
}
.first {
    text-align: center;
}
.formWrap {
    width: 900px;
    display: flex;
    margin: 0 auto;
}
ul {
    padding: 0 0 0 10px;
    text-align: left;
}
.box {
    display: flex;
    margin: 0 auto;
    border-bottom: solid 1px #dcdcdc;
}
.box_title {
    width: 150px;
    padding: 20px;
    margin: 3px;
    text-align: center;
    background-color: #eeeeee;
    font-weight: bold;
}
.box_in {
    align-self: center;
    padding: 20px;
}
.box_item {
    display: flex;
    align-self: center;
    padding: 20px;
}
.yuubin p {
    margin: 10px 0 0;
    font-size: 90%;
    color: #313131;
}
.item_number {
    width: 90px;
}
.item_name {
    width: 190px;
}
.item_size {
    width: 146px;
}
.item_color {
    width: 146px;
}
.item_pieces input {
    width: 60px;
}
.agree {
    text-align: left;
    margin: 10px 0 0;
    display: block;
    font-size: 95%;
    ;
}
.bikou_txt {
    text-align: left;
    font-size: 90%;
    color: #313131;
}
.button {
    margin: 50px auto;
    text-align: center;
}
.button_in {
    width: 200px;
    box-shadow    : none;        /* カーソル時の影消去 */
    color         : #000066;     /* 背景色     */
    background    : #ffffff;     /* 文字色     */
    margin: 0 20px;
    border-radius : 10px;          /* 角丸       */
    font-size     : 160%;        /* 文字サイズ */
    text-align    : center;      /* 文字位置   */
    cursor        : pointer;     /* カーソル   */
    padding       : 12px 50px;   /* 余白       */
    line-height   : 1em;         /* 1行の高さ  */
    transition    : .3s;         /* なめらか変化 */
    border        : 1px solid #000066;    /* 枠の指定 */
  }
  .button_in:hover {
    box-shadow: 4px 5px 23px -11px #383838;  /* 影の設定 */
    background    : #3641d1;     /* 背景色     */
    color         : #ffffff;     /* 文字色     */
  }







/*　簡易版レスポンシブ用CSS　*/
@media screen and (max-width:900px) {
    span {
        margin:0;
    }
    .formWrap {
        width: calc(100% - 20px);
        justify-content: center;
    }
    .box {
        display: block;
        border: none;
        margin: 0 0 30px;
    }
    .box_title {
        width: 100%;
        margin: 10px 0;
        padding: 10px 0;
        font-size: 120%;
    }
    .box_in {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    .box_item {
        display: block;
    }
    .item_number {
        width: 100%;
    }
    .item_name {
        width: 100%;
    }
    .item_size {
        width: 100%;
    }
    .item_color {
        width: 100%;
    }
    .item_pieces input {
        font-size: 120%;
        width: 50%;
        margin: 10px 5px;
    }
    input[type="tel" i] {
        width: 95%;
        padding: 5px;
        font-size: 110%;
        display: block;
    }
    select {
        font-size: 120%;
        margin: 10px 0 0;
    }
    form input[type="text"], form textarea {
        width:95%;
        padding:5px;
        font-size:110%;
        display:block;
    }
    form input[type="submit"], form input[type="reset"], form input[type="button"] {
        display:block;
        text-align: center;
    }
    .button_in {
        width: 90%;
        margin: 0 auto 10px;
    }
}



/* フロート解除 */
.clearfix {display: inline-table;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */