@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h3 {
  margin-bottom: 10px;
}

#content .entry-header {
  text-align: center;
}
#content .entry-header h1 {
  text-align: left;
}
#content .entry-header .image_wrapper {
  background: #e9ffdd;
  background: linear-gradient(-45deg, #ffe389, #e9ffdd, #a3d4ff, #ffadae);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
  -moz-animation: Gradient 15s ease infinite;
  animation: Gradient 15s ease infinite;
  padding: 1em;
  position: relative;
}
#content .entry-header .image_wrapper img {
  border-radius: 50em;
  border: 10px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: auto;
}
#content .entry-header .image_wrapper .country {
  margin: 0;
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #ff7c7d;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
#content .entry-content .catch {
  background-color: #eee;
  padding: 1em;
  text-align: center;
}
#content .entry-content h4 {
  background-color: #ff7c7d;
  color: #fff;
  padding: 0.5em;
}
#content .entry-content .ribbon span {
  display: inline-block;
  padding: 0.1em 1em;
  background-color: #efefef;
  border-radius: 3px;
  margin: 0.5em 0;
}

.container {
  display: grid;
  grid-template-columns: 100px 770px;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-around;
  overflow: visible;
}

.sharebtn_bar {
  grid-area: 1 / 1 / 2 / 2;
}

.sharebtn img {
  height: 60%;
}

.post_content {
  grid-area: 1 / 2 / 2 / 3;
}

.content_inner {
  padding: 40px 60px 50px;
  border: 1px solid #e5e5e5;
}

.sharebtn_area {
  display: none;
}

.sharebtn_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 140px;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 28px;
}

.sharebtn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
}

.sharebtn:hover {
  color: #fff;
}

.sharebtn.fb {
  background: #3b5998;
}
.sharebtn.tw {
  background: #55acee;
}
.sharebtn.rb {
  background: #369;
}
.sharebtn.pt {
  background: #c8232c;
}
.sharebtn.mail {
  background: #95a5a6;
}

span.ttl {
  display: block;
  color: rgb(94, 94, 94);
}

span.awd {
  display: block;
  color: rgb(94, 94, 94);
}

.banner {
  margin-bottom: 50px;
}

.blockquote p {
  font-family: "Utopia-italic";
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.blockquote {
  padding: 60px 80px 40px;
  position: relative;
}

blockquote {
  color: rgba(17, 17, 17, 0.8);
}

blockquote:before {
  position: absolute;
  font-family: "dashicons";
  top: 0;
  content: "\f122";
  font-size: 200px;
  color: rgba(0, 0, 0, 0.1);
}

.blockquote::after {
  content: "";
  top: 20px;
  left: 50%;
  margin-left: -100px;
  position: absolute;
  border-bottom: 3px solid #bf0024;
  height: 3px;
  width: 200px;
}

@media screen and (max-width: 1023px) {
  .container {
    display: flex;
    flex-direction: column;
    width: 94%;
    gap: 30px;
  }

  .post_content {
    grid-area: 1 / 1 / 2 / 2;
  }

  .sharebtn_area {
    display: block;
  }

  .sharebtn_bar {
    display: none;
  }

  .sharebtn_container {
    justify-content: space-between;
    gap: 12px;
    padding: 22px;
    border: none;
    position: inherit;
    flex-direction: inherit;
  }

  .recentpost_container {
    position: inherit;
  }

  .sharebtn {
    width: 100%;
    height: 40px;
  }
}

@media screen and (max-width: 800px) {
  .content_inner {
    padding: 20px 3%;
  }

  blockquote:before {
    font-size: 100px;
  }
}
