@charset "utf-8";

/* CSS Document */
html{
    margin: 0px;
    padding: 0px;
  
    width: 100%;
    height: 100%;
}
body{
    height: 100%;
    width: 100%;

    margin:0;
    padding: 0px;
  
  line-height:1;

  font-family: Verdana, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;  color: #333;
  
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

ul{
  list-style-type: square;
}

a{
  font-weight: bold;
}

a:link{
  color:#449BE3;
}
a:visited{
  color:#2D4A86;
}

#wrapper{
  width: 100%;
  position: relative;
  min-height: 100%;
}

/* ヘッダー部 */
header{
    background-color: #12b5ff;
    color: #fff;
    text-align: center;
    padding: 12px 0px 3px;
}

header h1 {
    font-size: 1.5em;
    font-weight: bold;
    border: none;
 }

/* フッター部 */
footer{
  position: absolute;   /* 位置指定：絶対指定*/
  bottom: 0;            /*下に固定*/

  width:100%;
  background-color: #12b5ff;
  color: #fff;
  text-align: center;
  padding:5px 0px;
}

footer img{
  margin-top: 5px;
}

footer .copyright{
  font-size: 0.9em;
}

/* メインコンテンツ 部 */
main{
    width: 100%;
    margin:10px 0px;
}

#note{
    width: 780px;
    margin: 20px auto;
    font-size: 15px;
    line-height: 1.5em;
}

#note h1{
	width:90%;
	margin: 0px auto;
	font-size: 1.3em;
	border-left: 10px solid #36F;
	border-right: 10px solid #36F;
	text-align:center;
}

#note h1 .ver{
  font-weight:normal;
  font-size:0.8em;
  display: block;
  line-height: 1.2em;

}

#note h2{
  text-align: left;
  
  font-size: 1.2em;
  font-weight: bold;
}

#note .message{
  margin-top: 20px;
  margin-bottom: 20px;
}

#modeltype{
  width: 780px;
  margin: 20px auto;
  padding-bottom:50px;

  font-size: 15px;
  line-height: 1.5em;

  text-align: left;

}

#modeltype h2{
  display: inline-block;

  text-align: left;
  
  font-size: 1.2em;
  font-weight: bold;

  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

#modeltype img{
  width: 350px;
  height: 285px;
  
  object-fit: scale-down;

}

.img-list{
  list-style: none;
	display:flex;
  flex-flow:wrap;
  justify-content: space-between;
  margin: 0px;
  padding: 0px;
}

#doclist{
  width: inline-block;

  margin: 20px auto;
  padding-bottom:50px;

  font-size: 1.0m;
  line-height: 2.0em;

  text-align: center;

}

#doclist h2{
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px auto;
}

#doclist h3{
  width:150px;
  display: inline-block;
  background-color: #06a;
  color:#fff;

  margin: 20px auto 10px;
  border-top: 1px solid #06a;
  border-bottom: 1px solid #06a;
  font-size: 1.0em;
  font-weight: bold; 
}

#doclist .doclink{
  line-height:2.0em;
}

.clear-float{
  float: none;
}

/**************************/

/*―――――――――--------------------*/
/* Media Query　----------------*/
/*―――――――――--------------------*/
@media screen and (min-width: 800px){
  #note h1{
    width: 60%;
  }
}

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

  #note{
    width: 90%;
    margin: 20px auto;
  }

  #note h1{
    width: 80%;
  }

  #note h2{
    font-size: 1.0em;
    font-weight: bold;
    text-align: center;
  }

  #modeltype{
    width: 90%;
    margin: 20px auto;

    text-align:center;
  }

  #modeltype h2{
    display: inline-block;
    float: none;
    margin: 0 auto;

    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
  }

  #modeltype img{
    width: 90%;
    height: 90%;
    
    object-fit: scale-down; 
  }
  
}



