<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*pageTop*/
/*繝ｪ繝ｳ繧ｯ繧貞承荳九↓蝗ｺ螳�*/
#pageTop {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
}

  #pageTop i {
    padding-top: 6px
  }

  /*繝ｪ繝ｳ繧ｯ縺ｮ蠖｢迥ｶ*/
  #pageTop a{
    display: flex;
    justify-content:center;
    align-items:center;
      background:rgba(0,0,0,0.7);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
      letter-spacing: 0.1em;
    transition:all 0.3s;
  }
  

  #pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
    background:rgba(0,0,0,0.9);
  }

  /*mailPage*/
  #mailPage {
    position: fixed;
    right: 10px;
    bottom:80px;
    z-index: 2;
  }

  #mailPage i {
    padding-top: 6px
  }

  #mailPage a {
    display: flex;
    justify-content:center;
    align-items:center;
    background:rgba(164, 201, 0, 0.7);
    border-radius: 5px;
    width: 40px;
    height: 200px;
    color: #fff;
    writing-mode: vertical-rl;
    align-items: center;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.9rem;
      letter-spacing: 0.1em;
    transition:all 0.3s;
  }

  #mailPage a:hover {
    text-decoration: none;
    opacity: 0.7;
    background:rgba(164, 201, 0, 0.9);
  }

/*荳翫↓荳翫′繧句虚縺�*/
  #pageTop.UpMove,
  #mailPage.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

  /*荳九↓荳九′繧句虚縺�*/
  #pageTop.DownMove,
  #mailPage.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 1;
    transform: translateY(100px);
    }
  }</pre></body></html>