@charset "utf-8";

#column_summary .column_ttl_box {
  background: linear-gradient(to left, #04cdd9, #3369e6);
  padding: 70px 20px 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

#column_summary .column_ttl {
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
#column_summary .column_txt {
  color: #0590d3;
  font-size: 8rem;
  font-weight: 700;
  overflow: hidden;
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  left: 5px;
  transform: translateY(-50%);
  animation: flowing 20s linear infinite;
}
#column_summary .column_txt::before,
#column_summary .column_txt::after {
  display: none;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.post_list {
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
  top: -70px;
}
.post_item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.post_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.post_image {
  width: 34%;
  margin-right: 20px;
}
.post_text {
  width: 62%;
}
.date {
  font-size: 12px;
  color: #abb8c3;
  padding-bottom: 10px;
}
.date {
  padding-bottom: 10px;
}
.category {
  font-size: 12px;
  margin-bottom: 4px;
  padding: 4px 10px;
  background-color: #04cdd9;
  color: #fff;
  display: inline-block;
}
.title {
  font-size: 18px;
  font-weight: bold;
  color: #111b68;
  padding-bottom: 10px;
  line-height: 1.75;
}
.text {
  line-height: 1.75;
}

@media all and (max-width: 480px) {
  .post_box {
    display: block;
    padding: 10px;
  }
  .post_image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .post_text {
    width: 100%;
  }
}

.pagination {
  padding: 0 20px;
  text-align: center;
}
.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  position: relative;
}
.page-numbers {
  border-radius: 50px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
}
a .page-numbers {
  background-color: #fff;
  padding: 3px 10px;
  color: #111b68;
  margin-right: 6px;
}
.current {
  background-color: #111b68;
  color: #fff;
}
.prev,
.next {
  font-size: 14px;
}

@media all and (max-width: 480px) {
  .post_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .post_item {
    width: 100%;
    margin-bottom: 2px;
  }
}

footer {
  margin-bottom: 0;
}
#ctaFixed {
  display: none !important;
}

/* ------------------
各カテゴリー一覧
--------------------- */
.breadcrumbs {
  font-size: 14px;
  padding-bottom: 20px;
}
.breadcrumbs ul {
  display: flex;
}
.breadcrumbs ul li span {
  padding: 0 6px;
}

/* ------------------
コラム詳細
--------------------- */
.single_post .breadcrumbs {
  padding-bottom: 60px;
}
.single_post .single_date {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.single_post .single_date p {
  padding: 2px 8px 2px 0;
  margin-right: 10px;
}
.single_post .single_date .category {
  padding: 4px 10px;
  margin-bottom: 0;
  border-radius: 3px;
}
.single_post .single_title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.single_post .single_thumbnail {
  margin-bottom: 30px;
}
.single_post .single_content {
  line-height: 1.75;
}
.single_post .single_content h2 {
  font-size: 1.4rem;
  position: relative;
  padding: 5px 5px 5px 42px;
  background: #04cdd9;
  font-size: 20px;
  color: #fff;
  margin-top: 60px;
  margin-bottom: 30px;
}
.single_post .single_content h2::before {
  /* position: absolute;
  content: "";
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 30px #e4eef0;
  border-bottom: solid 87px transparent; */
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  border: none;
  border-left: 0.8em solid #e4eef0;
  border-bottom: 2.3em solid transparent;
}
.single_post .single_content .wp-block-list h2::before {
  border-left: 0.8em solid #fafcfc;
}
.single_post .single_content h3 {
  font-size: 1.1rem;
  position: relative;
  padding-left: 25px;
  margin-top: 60px;
  margin-bottom: 20px;
}
.single_post .single_content h3::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px #04cdd9;
}
.single_post .single_content h3::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 1px #04cdd9;
}
.single_post .single_content h4 {
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px #111b3b;
  margin-top: 40px;
  margin-bottom: 20px;
}
.single_post .single_content p {
  margin-bottom: 20px;
}
.single_post .single_content ul {
  border: 1px solid #04cdd9;
  background-color: #f2feff;
  padding: 20px;
  margin-bottom: 20px;
}
.single_navi .nav-links {
  justify-content: space-between;
}
.single_navi .nav-links a {
  border: 1px solid #111b3b;
  width: 120px;
}

@media all and (max-width: 480px) {
  .column_single .breadcrumbs ul {
    flex-wrap: wrap;
  }
  .single_post .single_content h2 {
    line-height: 1.3;
  }
  .single_post .single_content h2::before {
    /* border-bottom: solid 167px transparent; */
    border-left: 0.8em solid #e4eef0;
    border-bottom: 4.5em solid transparent;
  }
  .single_post .single_content .wp-block-list h2::before {
    border-left: 0.8em solid #fafcfc;
  }
  .single_navi {
    padding: 0;
  }
}
