html{
font-size:100%;
font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  background-color: #FFFFFF;
  font-size: 20px;
  word-wrap: normal;
}
img{
  max-width: 100%;
}
a{
  color: black;
}
h1{
  color: #7c5355;
}

.mainimage{
  background-color: #e9959e;
  display: flex;
  justify-content: center;
  padding: 110px;
}
.maincontents{
  max-width: 40%;
}

.sns{
    border-bottom: solid;
    margin:100px;
}
.streaming{
  margin:10px;
  padding:10px;
  width: 20%;
  margin-left: auto;
  margin-right: auto;
}
.snsicon{
    display: flex;
    justify-content: center;
}
.snslogo{
    margin:10px;
    padding:10px;
    width: 20%;
}
.snsimages{
    display: flex;
    justify-content: center;
}



/*ローディング画面*/
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

#loading{
  transition: all 1s;
  background-color: #ddd;
  position:fixed;
  z-index:9999;
  inset:0;
  display:grid;
  place-items: center;
}
.loaded{
  opacity:0;
  visibility:hidden;
}