/* 画面サイズ 600px 未満 */

@media (max-width: 769px)  {

  a{
    padding-top: 40px;
  }
  
  p {
    padding-left: 40px;
  }

  header {
    display: flex;
  }
  
  
  
  
  
  .fadeIn {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    }
    
    /*1で解説*/
    @keyframes fadeInAnime{
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
    }
  /* normalize */
  * {
    margin: 0;
    padding: 0;
  }
  
  ul {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    top: 10px; 
    display: flex;
    position: right;

  }
  
  
  
  .list li { /* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    margin-left: 10px;
    margin-top: 10px;
    font-size: 10px;
    display: flex;
  }
  
    li {
      list-style: none;
      display: flex;
    }
  .list a{
  
    color:#000000;
    font-size:120%;
    text-decoration:none;
    transition: color 0;
  }
  
   .list a:hover{
    color: #8e918eb9;
   }
  
  
  html,body{
    height: 100%;/*高さを100%にして描画エリアをとる*/
  }
  
  #particles-js{ 
    position:fixed;/*描画固定*/
    z-index:-1;/*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color:white;/*背景色*/
  }
  
  #wrapper{
    position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 2;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width:100%;
    height: 100%;
    background-image: url("3x/アセット 1@3x.png");
    background-repeat: no-repeat;
    background-position: center;
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    background-size: 50%, 50%;
  }
  
  footer {
    width: 100%;
    height: 1%; 
    padding-bottom: 0;
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/

  }
  .copyright {
    color: #fff;
    font-size: 5px;
  }

}

/* 画面サイズ 600px 以上 1200px 未満 */
@media (max-width: 769px) and (max-with: 1024) {
  a{
    padding-top: 40px;
  }
  
  p {
    padding-left: 40px;
  }
  
  header {
    display: flex;
  }
  
  
  
  
  .fadeIn {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    }
    
    /*1で解説*/
    @keyframes fadeInAnime{
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
    }
  /* normalize */
  * {
    margin: 0;
    padding: 0;
  }
  
  ul {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
  
  }
  
  
  
  .list li { 
    display: inline-block;/* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    margin-left: 90px;
    margin-top: 40px;
    font-size: 50px;
  }
  
    li {
      list-style: none;
    }
  .list a{
  
    color:#000000;
    font-size:120%;
    text-decoration:none;
    transition: color 0;
  }
  
   .list a:hover{
    color: #8e918eb9;
   }
  
  
  html,body{
    height: 100%;/*高さを100%にして描画エリアをとる*/
  }
  
  #particles-js{ 
    position:fixed;/*描画固定*/
    z-index:-1;/*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color:white;/*背景色*/
  }
  
  #wrapper{
    position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width:100%;
    height: 100%;
    background-image: url("3x/アセット 1@3x.png");
    background-repeat: no-repeat;
    background-position: center;
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    max-width: 50%;
  }
  
  footer {
    width: 100%;
    height: 3px; 
    padding-bottom: 0;
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
    display: flex;
  }
  .copyright {
    color: #fff;
    display: cover;
  }

}

/* 画面サイズ 1200px 以上 */
@media (min-width: 1201px) {
  a{
    padding-top: 40px;
  }
  
  p {
    padding-left: 40px;
  }
  
  
  
  
  
  .fadeIn {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    }
    
    /*1で解説*/
    @keyframes fadeInAnime{
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
    }
  /* normalize */
  * {
    margin: 0;
    padding: 0;
  }
  
  ul {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
  }
  
  
  
  .list li {
    display: list-item;  /* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    margin-left: 90px;
    margin-top: 40px;
    font-size: 50px;
  }
  
    li {
      list-style: none;
    }
  .list a{
  
    color:#000000;
    font-size:120%;
    text-decoration:none;
    transition: color 0;
  }
  
   .list a:hover{
    color: #8e918eb9;
   }
  
  
  html,body{
    height: 100%;/*高さを100%にして描画エリアをとる*/
  }
  
  #particles-js{ 
    position:fixed;/*描画固定*/
    z-index:-1;/*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color:white;/*背景色*/
  }
  
  #wrapper{
    position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width:100%;
    height: 100%;
    background-image: url("3x/アセット 1@3x.png");
    background-repeat: no-repeat;
    background-position: top 160px left 760px;
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
  }
  
  footer {
    width: 100%;
    height: 3px; 
    padding-bottom: 0;
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
  }
  .copyright {
    color: #fff;
    font-size: small;
    padding-bottom: 4px;
  }

}


/* 画面サイズ 600px 未満 */

@media (max-width: 769px)  {

  a{
    padding-top: 40px;
  }
  
  p {
    padding-left: 40px;
  }

  header {
    display: flex;
  }
  
  
  
  
  
  .fadeIn {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    }
    
    /*1で解説*/
    @keyframes fadeInAnime{
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
    }
  /* normalize */
  * {
    margin: 0;
    padding: 0;
  }
  
  ul {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    top: 10px; 
    display: flex;
    position: right;

  }
  
  
  
  .list li { /* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    margin-left: 10px;
    margin-top: 10px;
    font-size: 10px;
    display: flex;
  }
  
    li {
      list-style: none;
      display: flex;
    }
  .list a{
  
    color:#000000;
    font-size:120%;
    text-decoration:none;
    transition: color 0;
  }
  
   .list a:hover{
    color: #8e918eb9;
   }
  
  
  html,body{
    height: 100%;/*高さを100%にして描画エリアをとる*/
  }
  
  #particles-js{ 
    position:fixed;/*描画固定*/
    z-index:-1;/*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color:white;/*背景色*/
  }
  
  #wrapper{
    position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 2;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width:100%;
    height: 100%;
    background-image: url("3x/アセット 1@3x.png");
    background-repeat: no-repeat;
    background-position: center;
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    background-size: 50%, 50%;
  }
  
  footer {
    width: 100%;
    height: 1%; 
    padding-bottom: 0;
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/

  }
  .copyright {
    color: #fff;
    font-size: 5px;
  }

}

/* 画面サイズ 600px 以上 1200px 未満 */
@media (max-width: 769px) and (max-with: 1024) {
  a{
    padding-top: 40px;
  }
  
  p {
    padding-left: 40px;
  }
  
  header {
    display: flex;
  }
  
  
  
  
  .fadeIn {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    }
    
    /*1で解説*/
    @keyframes fadeInAnime{
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
    }
  /* normalize */
  * {
    margin: 0;
    padding: 0;
  }
  
  ul {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
  
  }
  
  
  
  .list li { 
    display: inline-block;/* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    margin-left: 90px;
    margin-top: 40px;
    font-size: 50px;
  }
  
    li {
      list-style: none;
    }
  .list a{
  
    color:#000000;
    font-size:120%;
    text-decoration:none;
    transition: color 0;
  }
  
   .list a:hover{
    color: #8e918eb9;
   }
  
  
  html,body{
    height: 100%;/*高さを100%にして描画エリアをとる*/
  }
  
  #particles-js{ 
    position:fixed;/*描画固定*/
    z-index:-1;/*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color:white;/*背景色*/
  }
  
  #wrapper{
    position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width:100%;
    height: 100%;
    background-image: url("3x/アセット 1@3x.png");
    background-repeat: no-repeat;
    background-position: center;
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    max-width: 50%;
  }
  
  footer {
    width: 100%;
    height: 3px; 
    padding-bottom: 0;
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
    display: flex;
  }
  .copyright {
    color: #fff;
    display: cover;
  }

}

/* 画面サイズ 1200px 以上 */
@media (min-width: 1201px) {
  a{
    padding-top: 40px;
  }
  
  p {
    padding-left: 40px;
  }
  
  
  
  
  
  .fadeIn {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
    }
    
    /*1で解説*/
    @keyframes fadeInAnime{
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
    }
  /* normalize */
  * {
    margin: 0;
    padding: 0;
  }
  
  ul {
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
  }
  
  
  
  .list li {
    display: list-item;  /* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    margin-left: 90px;
    margin-top: 40px;
    font-size: 50px;
  }
  
    li {
      list-style: none;
    }
  .list a{
  
    color:#000000;
    font-size:120%;
    text-decoration:none;
    transition: color 0;
  }
  
   .list a:hover{
    color: #8e918eb9;
   }
  
  
  html,body{
    height: 100%;/*高さを100%にして描画エリアをとる*/
  }
  
  #particles-js{ 
    position:fixed;/*描画固定*/
    z-index:-1;/*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color:white;/*背景色*/
  }
  
  #wrapper{
    position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width:100%;
    height: 100%;
    background-image: url("3x/アセット 1@3x.png");
    background-repeat: no-repeat;
    background-position: top 160px left 760px;
    animation-name: fadeInAnime;/*1で解説*/
    animation-fill-mode:backwards;/*2で解説*/
    animation-duration:3s;/*3で解説*/
    animation-iteration-count:1;/*4で解説*/
    animation-timing-function:linear;/*5で解説*/
    animation-delay: 1s;/*6で解説*/
    animation-direction:normal;/*7で解説*/
  }
  
  footer {
    width: 100%;
    height: 3px; 
    padding-bottom: 0;
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
  }
  .copyright {
    color: #fff;
    font-size: small;
    padding-bottom: 4px;
  }

}


