@charset "UTF-8";
p {
  line-height: 1.5;
}

.titlewrapper {
  width: 80%;
  max-width: 800px;
  margin: 200px auto 0 auto;
}

.title {
  border: ridge 4px #fff;
  background-color: black;
  width: 60%;
  max-width: 250px;
  border-radius: 10px;
  padding-left: 2rem;
}

.title h2 {
  color: white;
}

/*点滅カーソル用*/
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blinking {
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
          animation: blink 0.5s ease-in-out infinite alternate;
}

/*点滅カーソル用ここまで*/
.blog {
  width: 80vw;
  max-width: 800px;
  margin: 5rem auto 0 auto;
}

.blogtext {
  color: white;
  border: ridge 4px #fff;
  background-color: black;
  border-radius: 10px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 2rem 0 2rem;
  position: relative;
}

.blogtext p {
  line-height: 1.5;
}

.blogtitle {
  color: white;
  display: inline-block;
  padding: 0 1vw;
  border: ridge 4px #fff;
  background-color: black;
  border-radius: 10px;
  text-align: center;
  position: absolute;
  top: -2vw;
}

.blogtitle h2 {
  display: inline;
}

.blog_img{
  width: 100%;
  max-width: 480px;
  margin-bottom: 2rem;
}
/*# sourceMappingURL=stylesheet.css.map */