.category-column .breadcrumbs,
.single-post .breadcrumbs{
  margin-top: 200px;
}

.singular-list {
  width: 100%;
  margin: 20px auto 80px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.singular-list li {
  width: 32%;
  transition: all 0.5s;
  box-sizing: border-box;
}

.singular-list li a {
  display: block;
  border: 2px solid #ebf2fa;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  box-sizing: border-box;
}

.singular-list li:hover {
  border: 2px solid #2c7acc;
}

.singular-list li.border-none {
  border: 2px solid #FFFFFF;
}

.singular-list li.border-none:hover {
  border: 2px solid #FFFFFF;
}

.singular-list li img {
  height: auto;
  margin-bottom: 15px;
}

.singular-list li p:nth-child(3) {
  font-size: 16px;
}

.pagination {
  margin: 50px auto 0 auto;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 6px 13px;
  margin: 0 7.5px;
  text-decoration: none;
  color: #333;
  border: 1px solid #2c7acc;
}

.pagination .current {
  background-color: #ebf2fa;
}

.pagination .prev {
  padding: 6px 13px 6px 12px;
}

.pagination .next {
  padding: 6px 12px 6px 13px;
}

.button-cta-green {
  display: block;
  position: relative;
  top: 0;
  padding:20px 50px;
  transform-origin: center;
  border: 0;
  border-radius: 100px;
  background-color: #1ea821;
  background: linear-gradient(-45deg,#00cc58 50%,#33ff8b 60%,#00cc58 70%);
  background-size: 600% 100%;
  box-shadow: 0 7px 0 0 #008037;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  -webkit-animation: shine 20s infinite,expand .6s ease 0s infinite alternate;
  animation: shine 20s infinite,expand .6s ease 0s infinite alternate;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  cursor: pointer;
  transition: .4s
}

.button-cta-green:hover {
  top: 7px;
  box-shadow: none;
  opacity: 1
}

.button-cta-green::after {
  width: 25px;
  height: 25px;
  content: "";
  background-image: url(./images/common/circle-arrow-right-solid.svg);
  background-size: 25px 25px;
  fill: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@-webkit-keyframes shine {
  0% {
    background-position-x: 400%
  }
  50% {
    background-position-x: 0%
  }
  100% {
    background-position-x: -400%
  }
}

@keyframes shine {
  0% {
    background-position-x: 400%
  }
  50% {
    background-position-x: 0%
  }
  100% {
    background-position-x: -400%
  }
}

@-webkit-keyframes expand {
  from {
    transform: scale(.95,.95)
  }
  to {
    transform: scale(1,1)
  }
}

@keyframes expand {
  from {
    transform: scale(.95,.95)
  }
  to {
    transform: scale(1,1)
  }
}

img.wp-post-image {
  height: auto;
}

.recommendation-list {
  max-width: 1080px;
  margin: 80px auto;
}

.recommendation-list h2 {
  font-size: 24px;
  padding-bottom: 20px;
  padding-left: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #ebf2fa;
  position: relative;
}

.recommendation-list h2::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  border: 2px solid #100169;
  border-radius: 50%;
  top: 13px;
  left: 0;
}

.recommendation-list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.recommendation-list a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

.recommendation-list ul li {
  width: 100%;
} 

.recommendation-list ul li img {
  max-width: 200px;
  height: auto;
  border-radius: 5px;
  flex-shrink: 1;
}

.recommendation-list ul li div p:first-child {
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  .singular-list {
    width: 100%;
    gap: 20px;
    margin: 60px auto 80px auto;
  }

  .singular-list li {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .recommendation-list {
    width: calc(100% - 40px);
  }

  .recommendation-list h2 {
    font-size: 20px;
    padding-bottom: 10px;
    padding-left: 25px;
    margin-bottom: 20px;
  }

  .recommendation-list h2::before {
    width: 13px;
    height: 13px;
    top: 11px;
  }

  .recommendation-list ul {
    gap: 20px;
  }

  .recommendation-list ul li img {
    max-width: 130px;
  }

  .recommendation-list a {
    gap: 15px;
  }

  .recommendation-list ul li div p:first-child {
    font-size: 12px;
  }

  .recommendation-list ul li div p:last-child {
    font-size: 14px;
  }

    .breadcrumbs {
      margin-top: 20px;
    }

}

.single-post .date_w{
  margin-bottom: 30px;
  font-size: 1.4rem;
  color: #7f7f7f;
}
@media screen and (max-width: 640px) {
  .single-post .date_w {
    font-size: 1.2rem;
  }
}


.column_w_right{
  width: 250px;
  margin-left: 40px;
  flex-shrink: 0;
  margin-top: 230px;
}
.single-post .column_w_right {
  margin-top: 35px;
}

.right_list_w{
  margin-bottom: 30px;
}
.right_list_w h2{
  background: #100169;
  color: #fff;
  font-size: 18px;
  padding: 15px;
  text-align: center;
  margin-bottom: 15px;
}
.views-card{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #7f7f7f;
}
.views-card__link {
  transition: opacity .6s;
  align-items: center;
}
.views-card__link:hover {
  opacity: 0.6;
}
.views-card__thumbnail {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 5px;
  flex-shrink: 0;
  margin-right: 5px;
}
.views-card__thumbnail:before {
  display: block;
  padding-top: 56.25%;
  content: '';
}
.views-card__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.views-card__title {
  font-size: 14px;
  font-weight: 500;
}
.views-card__title span {
  margin-left: 8px;
  color: #999;
  font-size: 13px;
}

.column_w_left{
  width: 790px;
}
@media screen and (max-width: 640px) {
  .column_w_left{
    width: 100%;
  }
  .column_w_right {
      width: 100%;
      margin-left: 0;
      flex-shrink: 0;
      margin-top: 0;
    }
        .single-post .column_w_right {
          margin-top: 0;
        }
}


.author-box{
  border: 1px solid #e8e8e8;
  padding: 20px;
  margin: 30px 0;
}
.author-avatar{
  flex-shrink: 0;
  margin-right: 20px;
}
.author-avatar img{
  width: 120px;
  height: 120px;
}
.author-box .name{
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.author-description{
  font-size: 14px;
}
.author-box a{
  background: #100169;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 100px;
}
@media screen and (max-width: 640px) {
  .author-avatar{
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

.author_kiji_w{
  margin-top: 20px;
}
.author_kiji_w ul li{
  width: 30.5%;
}
@media screen and (max-width: 640px) {
  .author_kiji_w ul li{
    width: 100%;
  }
}
