/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*ーーーーーーーーーートップ＆コンテンツ共通ーーーーーーーーーー*/

/* 基本要素 */
body {
  width: 100%;/*99%だと動かない*/
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #aaa;
  display:flex;
  flex-flow: column;
  justify-content: center;
}

/* header 要素 */

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: bottom;
  height: 150px;
  margin: 0 auto;
  color: #222;
}

/* footer 要素 */
footer {
  height: 100px;
}

/**/

.textbox{
  color: #222;
  margin: 0 auto 10px auto;
  width: 80%;
  max-width: 600px;
  font-size: 0.8rem;
  text-align: center;
  vertical-align: bottom;
}

.contents{
  color: #fff;
  margin: 0 auto 20px auto;
  padding: 10px;
  width: 90%;
  max-width: 600px;
  height: 100px;
  background-color: #000;
  font-size: 1rem;
  text-align: end;
  vertical-align: bottom;
}

span{
  font-size: 0.7rem;
  padding: 0 5px 0 5px;
}


a {
  color: #000;
  text-shadow: 0px 0px 3px #fff;
}

.pokemon{
  background-image: url('01pokemon/ルカリオ完成.jpg'); /* 背景画像を指定 */
  background-size: cover;
  background-position: 0% 30%;
  color: #222;
}

.undertale{
  background-image: url('02undertale/pokedelta03_仕上げ.JPG'); /* 背景画像を指定 */
  background-size: cover;
  background-position: 0% 30%;
  color: #222;
}

.ntendo{
  background-image: url('03ntendo/液タブ.jpg'); /* 背景画像を指定 */
  background-size: cover;
  background-position: 0% 30%;
  color: #222;
}

.others{
  background-image: url('04others/IMG_2648.JPG'); /* 背景画像を指定 */
  background-size: cover;
  background-position: 0% 30%;
  color: #222;
}

.indie{
  background-image: url('05indie/IMG_6145.JPG'); /* 背景画像を指定 */
  background-size: cover;
  background-position: 0% 40%;
  color: #222;
}

.drawing{
  background-image: url('99drawing/IMG_2774.JPG'); /* 背景画像を指定 */
  background-size: cover;
  background-position: 0% 5%;
  color: #222;
}


/*ーーーーーーーーーートップ用ーーーーーーーーーー*/

/* Image 要素 (div内に収まる様に)*/
img {
    display: block;
    height: auto;
    max-width: 100%;
}

  h1 {
    width: 100%;
    max-width: 450px;
    position: relative;
    border-bottom: 3px solid #222;
    display: inline-block;
    /*background-color: blue;*/
   }
   
   h1 span {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1;
    padding-right: 10px;
    /*position: absolute;*/
   }


   ul{
      width: 90%;
/*    list-style-type: none;
    display: flex;
    flex-wrap: wrap;*/
}
