@charset "UTF-8";

/* V1.00 共通 */

/* =============================================================================
 * 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{
    height: 100%;
}

/* body */
body{
    height: 100%;
    background-color: #ffffff;
    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;
}

/* main */
main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* a */
a{
    color: #696969;
    text-decoration: underline;
    cursor: pointer;
}
a:link{color: #696969;}
a:visited{color: #696969;}
a:hover{color: #696969;text-decoration: underline;}
a:active{color: #696969;text-decoration: underline;}

/* img */
img{
    border: none;
    vertical-align: middle;
}

/* table */
table{
    border-collapse: collapse;
}

/* ul */
ul{
    list-style-type: none;
}

/* ol */
ol{
    list-style-type: none;
}

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

/* input[type="text"] */
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"] */
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"] */
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;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none; 
    margin: 0; 
}

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

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

/* input[type="file"] */
input[type="file"]{
    max-width: 100%;
    width: auto;
    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;
}

/* ----- responsive --------------------------------------------------------- */
@media only screen and (max-width: 1399px){

}

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

}

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

}

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

}

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

}

/* =============================================================================
 * 
 * ========================================================================== */
div#logo{
    max-height: 700px;
    height: 100%;
}

/*========= レイアウトのためのCSS ===============*/

#wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align:center;
}

/*========= particle js を描画するエリア設定 ===============*/
#particles-js{ 
  position:fixed;/*描画固定*/
  z-index:-1;/*描画を一番下に*/
  width: 100%;
  height: 100%;
  background-color:#ffffff;/*背景色*/
}

#wrapper{
  position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
  width:100%;
  height: 100%;
}

