@charset "UTF-8";

/* v1.00 共通 */

/*
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
*/

/* =============================================================================
 * tag
 * ========================================================================== */
/* * */
*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    word-break: break-all;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    padding: 0;
    margin: 0;
}

/* html */
html{
    min-height: 100%;
}

/* body */
body{
    min-height: 100%;
    min-width: 1000px;
    background-color: #fefefe;
    color: #333333;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* a */
a{
    text-decoration: none;
}
a:link{color: #4169e1;}
a:visited{color: #4169e1;}
a:hover{color: #4169e1;}
a:active{color: #4169e1;}

/* img */
img{
    border: none;
}

/* table */
table{
    width: 100%;
    border-collapse: collapse;
}

caption{
    padding: 10px;
}

th{
    background-color: #192f60;
    border: 1px #d0d0d0 solid;
    color: #ffffff;
    font-weight: normal;
    padding: 10px;
}

td{
    border: 1px #d0d0d0 solid;
    padding: 10px;
}

/* dl */
dl{
    width: 100%;
}

/* dt */
dt{
    padding: 10px;
}

/* dd */
dd{
    padding: 10px;
}

/* form */
form{
    width: 100%;
}

/* input */
input::placeholder{
    color: #c0c0c0;
}

input[type="text"]{
    height: 30px;
    border: 1px #c0c0c0 solid;
    border-radius: 0;
    color: #333333;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
    padding: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="password"]{
    height: 30px;
    border: 1px #c0c0c0 solid;
    border-radius: 0;
    color: #333333;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
    padding: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="number"]{
    height: 30px;
    border: 1px #c0c0c0 solid;
    border-radius: 0;
    color: #333333;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
    padding: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -moz-appearance:textfield; 
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none; 
    margin: 0; 
}

input[type="checkbox"]{
    height: 30px;
    vertical-align: middle;
    margin: 0 10px 0 0;
}

input[type="radio"]{
    height: 30px;
    vertical-align: middle;
    margin: 0 10px 0 0;
}

input[type="file"]{
    max-width: 100%;
    color: #333333;
    vertical-align: middle;
    line-height: 1;
}

/* select */
select{
    height: 30px;
    border: 1px #c0c0c0 solid;
    border-radius: 0;
    color: #333333;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
    outline: none;
    padding: 0 5px;
}

/* textarea */
textarea{
    width: 100%;
    height: 212px;
    border: 1px #c0c0c0 solid;
    border-radius: 0;
    color: #333333;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
    resize: none;
    display: block;
    padding: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
