.breadcrumb {
  position: absolute;
  top: 70px;
  left: 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
  padding-inline: 15px;
}

.breadcrumb_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px;
}

.breadcrumb_item,
.breadcrumb_sparate {
  color: #A5A5A5;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.breadcrumb_item {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb_item:has(a):hover {
    color: #DD5218;
  }
}

.article_item {
  background-color: #ffffff;
  padding: 20px;
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
}
.article_item a {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .article_item a:hover .article_image img {
    scale: 1.05;
  }
  .article_item a:hover .article_title {
    color: #DD5218;
  }
}

.article_image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #a5a5a5;
  border-radius: 10px;
  overflow: hidden;
}
.article_image:has(img) {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.article_image img {
  width: 100%;
  height: auto;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}

.article_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.article_title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.category_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}

.category_item {
  font-size: 1rem;
  background-color: #48B39F;
  border-radius: 100vmax;
  padding: 3px 5px;
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
  border: solid 1px #48B39F;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.case_category_item {
  font-size: 1rem;
  color: #48B39F;
  border: solid 1px #48B39F;
  padding: 2px 5px;
  line-height: 1;
  font-weight: 700;
}

.article_company_logo {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  width: 200px;
}
.article_company_logo img {
  width: auto;
}

.company_name {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article_date {
  font-size: 1.5rem;
  font-family: "Cabin";
  font-weight: 700;
  line-height: 1.4;
  color: #DD5218;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
}

.pagination {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_item {
  font-size: 1.6rem;
  font-family: "Cabin";
  font-weight: 700;
  color: var(--text-color, #8f8f8f);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  min-width: 1.5em;
  text-align: center;
}
.page_item.current {
  --text-color:#DD5218;
}
.page_item a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text-color, #8f8f8f);
}
@media (hover: hover) and (pointer: fine) {
  .page_item a:hover {
    --text-color:#DD5218;
  }
}
.page_item.prev, .page_item.next {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  min-width: auto;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
.page_item.prev a, .page_item.next a {
  position: relative;
}
.page_item.prev a::before, .page_item.next a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #DD5218;
}
@media (hover: hover) and (pointer: fine) {
  .page_item.prev:hover, .page_item.next:hover {
    cursor: pointer;
    scale: 1.2;
  }
}
.page_item.omission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_item.next a::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.page_item.prev a::before {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

#page_head {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-padding-before: 183px;
          padding-block-start: 183px;
  padding-inline: 20px;
}
@media screen and (min-width: 425px) {
  #page_head {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 768px) {
  #page_head {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 992px) {
  #page_head {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 768px) {
  #page_head {
    -webkit-padding-before: 110px;
            padding-block-start: 110px;
  }
}
#page_head:not(:has(.page_head_thumbnail)) {
  -webkit-padding-before: 110px;
          padding-block-start: 110px;
}
#page_head:not(:has(.page_head_thumbnail)) .page_thumbnail_text {
  position: relative;
  translate: 0 0%;
}

.page_head_block {
  position: relative;
}

.page_thumbnail_text {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 4.8rem;
  font-family: "Cabin";
  font-weight: 700;
  line-height: 1;
  translate: 0 -75%;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .page_thumbnail_text {
    translate: 0;
    font-size: 6rem;
    top: 50px;
  }
}
@media screen and (min-width: 992px) {
  .page_thumbnail_text {
    font-size: 7.5rem;
  }
}

.page_head_thumbnail {
  max-width: 740px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
@media screen and (min-width: 768px) {
  .page_head_thumbnail {
    width: 70%;
  }
}

.page_title {
  position: relative;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
}
@media screen and (min-width: 768px) {
  .page_title {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
}
@media screen and (min-width: 992px) {
  .page_title {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}
.page_title::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 10px;
  height: 90%;
  background-color: #DD5218;
}

#column {
  -webkit-padding-before: 30px;
          padding-block-start: 30px;
}

.current_category {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}

.column_collection {
  display: -ms-grid;
  display: grid;
  gap: 50px;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
}
@media screen and (min-width: 768px) {
  .column_collection {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .column_collection {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.column_category_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px 25px;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
}

.column_category_item {
  font-size: 1.3rem;
  background-color: #48B39F;
  border-radius: 100vmax;
  padding: 3px 10px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 700;
  border: solid 1px #48B39F;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .column_category_item:has(a):hover {
    background-color: #ffffff;
    color: #48B39F;
  }
}
/*# sourceMappingURL=column.css.map */