@charset "UTF-8";
/* Body */
html {
  line-height: 1;
  text-shadow:
    0.06px 0 0.06px #ea36af,
    -0.125px 0 0.06px #75fa69;
  letter-spacing: 0.025em;
  animation-duration: 0.01s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
img {
  filter: drop-shadow(0.06px 0px 0.06px #ea36af)
    drop-shadow(-0.125px 0px 0.06px #75fa69);
  animation-duration: 0.01s;
  animation-name: imgflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@font-face {
  font-family: 'PixelMplus';
  src: url('../font/PixelMplus12-Regular.woff') format('woff');
}
@keyframes textflicker {
  from {
    text-shadow:
      0.3px 0 0 #ea36af,
      -0.1px 0 0 #75fa69;
  }
  to {
    text-shadow:
      0.5px 0.5px 1px #ea36af,
      -1px -0.5px 1px #75fa69;
  }
}
@keyframes imgflicker {
  from {
    filter: drop-shadow(0.3px 0 0 #ea36af) drop-shadow(-0.1px 0 0 #75fa69);
  }
  to {
    filter: drop-shadow(0.5px 0.5px 1px #ea36af)
      drop-shadow(-1px -0.5px 1px #75fa69);
  }
}
div {
  opacity: 1;
  animation-name: flashing;
  animation-duration: 0.01s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

body {
  font-family: 'PixelMplus';
  background-color: '#819999';
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-style: normal;
  font-weight: 200;
  height: 100%;
  width: 100%;
  bottom: 0;
  position: absolute;
}
/* Container */
.container {
  background-image: url('../images/CRT.png');
  background-size: auto;
  background-blend-mode: soft-light;
  z-index: 100000000;
  margin-left: 0;
  margin-right: 0;
  height: 100%;
  bottom: 0;

  background-color: #819999;
}
@keyframes flashing {
  from {
    opacity: 0.98;
  }
  to {
    opacity: 1;
  }
}
/* Navigation */
#titlle {
  padding: 0px 100px 0px 100px;
}

.banner {
  background-color: #ffffff;
  width: 200px;
  height: 60px;
}
.toppage {
  width: 100%;
}
.toppage img {
  height: 100%;
}
.logobox {
  width: 30%;
  float: left;
}
.logo {
  font-weight: bold;
  width: 100%;
}
header {
}
nav {
  float: right;
  width: 40%;
  text-align: center;
}
nav ul {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  list-style: none;
  float: right;
  list-style-type: disc;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}
nav ul li {
  list-style: none;
  display: inline-block;
}
nav ul li a {
  font-size: 2em;
  color: #ffffff;
  text-decoration: none;
}
nav ul li:hover a {
  color: #2c9ab7;
}
.SNS {
  width: 40%;
  float: right;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.day {
  display: -webkit-flex;
  display: flex;
  color: #ffffff;
  font-size: 2em;
}
.sns a {
  display: inline-block;
}
.share {
  margin: 15px;
  width: 32px;
  height: 32px;
}
/* contents */
p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.main {
  width: 100;
  height: 100;
}
#floatWindow {
  background-color: #656565;
  z-index: 100000001;
  display: none;
  position: absolute;

  top: 40%;
  left: 10%;
  width: 500px;
  height: 400px;
}
#windowbanner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  top: 0;
  width: 100%;
  background-size: contain;
  margin: 0;
  background-color: #6f6f6f;
  cursor: move;
}
#floatWindow a.close {
  display: inline-block;
  float: right;
  padding: 3px;
}
#floatWindow a.close img {
  border: none;
}
.widowtittle {
  display: inline-block;
  float: left;

  color: white;
  font-weight: bold;
  padding: 3px;
}
.widowmain {
  margin-top: 10px;
}
/* footer */
.copyright {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;

  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 2px;
  border-top-width: 2px;
}
footer {
  padding-bottom: 0;
  background-color: #717070;
  width: 100%;
  bottom: 0;
  position: absolute; /*←絶対位置*/
}
