header {

}

footer {
    background: #666;
}

body {

}

#loading-overlay {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.spinner {
  width: 40px;
  height: 40px;
  background-color: #666;

  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  } 50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  } 100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

main {
    background: #666;
}

a {
    z-index: 1;
}

.frame {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    border: solid 3px #000000;
}

.icon {
    color: #000000;
}

.font {
    font-family: Kaiso-tai, serif;
}

@media (prefers-reduced-motion: no-preference) {
    .hashy-icon {
        animation: icon-rotate infinite 600000ms linear;
    }
}

@keyframes icon-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@font-face {
    font-family: Kaiso-tai;
    src: url('/fonts/Kaisotai-Next-UP-B.woff2') format('woff2');
}

body > header {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

body > header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-image: url(/img/image.JPG);*/
    /*color: #FFFFFF;*/
    /*text-shadow: 0 0 0.125em #006760;*/
}

body > header a {
    transition: 0.3s;
    /*
    width: 2em;
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 0.25em 1.5em;
    border: 1px #FFFFFF solid;
    */
}

body > header a:hover {
    transition: 0.3s;
    background-color: #000000;
    color: #FFFFFF;
    text-shadow: none;
}

.btn:hover {
    transition: 1s;
    background-color: #ffffff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #666;
}

.menu__item {
    width: 100%;
    height: auto;
    padding: .5em 1em;
    text-align: center;
    box-sizing: border-box;
}

/*
Particles-js用
*/
.wrap{
	width:100%;
	height:700px;
	position:relative;/*基準要素、子の基準となる*/
}
/*アニメーション描画用*/
canvas{
	position:absolute;/*親のブロックを基準にして相対位置に配置する*/
	/*位置指定*/
	top:0;
	right:0;
	z-index:0;/*重ね順を-1に　※1以上だとほかのコンテンツの上に被さってしまいます*/
    background-color: white;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu {
    transform: translateX(100vw);
    transition: all .3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
    transform: translateX(0);
}

/*
パクらせて頂きました

- https://tsurai.work/
- https://coco-factory.jp/ugokuweb/move02/5-11/
- https://eclair.blog/make-hamburger-menu-with-vuejs/
*/