.p-blog select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.p-blog__inner {
  max-width: 1074px;
  padding: 0 25px;
  margin: 0 auto 130px;
}

.p-blog__top-title {
  font-size: 34px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 10px;
}

.p-blog__top-title span {
  content: "";
  position: absolute;
  background-image: url(/sustainability/blog/assets/images/blog/star.png);
  top: 0;
  width: 27px;
  height: 26px;
  background-size: contain;
}

.p-blog__sub {
  text-align: center;
  margin-bottom: 40px;
}

.p-blog__box {
  width: 100%;
  background-color: #F3F1DC;
  border-radius: 16px;
  margin-bottom: 80px;
  position: relative;
}

.p-blog__box-inner {
  padding: 16px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.5%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-blog__box-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 22px;
}

.p-blog__select-wrapper {
  position: relative;
  border: 2px solid #000;
  border-radius: 16px;
}

.p-blog__select-wrapper .fa-chevron-down {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: bold;
  color: #000;
  pointer-events: none;
}

.p-blog__select {
  background-color: #fff;
  padding: 11px 16px;
  padding-right: 85px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
}

.p-blog__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
  position: relative;
  color: #000;
}

.p-blog__box-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: red;
}

.p-blog__box-item.current::after {
  width: 100%;
}

.p-blog__box-img {
  width: 22px;
  height: 22px;
}

.p-blog__box-text {
  margin-bottom: 0;
  font-weight: 600;
  color: #000;
}

.p-blog__box-decorate {
  position: absolute;
  top: 0;
  width: 22%;
  max-width: 190px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.p-blog__box-decorate-right {
  width: 18%;
  max-width: 174px;
  right: 0;
}

.p-blog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px 0;
  margin-bottom: 80px;
}

.p-blog__item img {
  width: 100%;
}

.p-blog__item:hover .p-blog__title {
  text-decoration: underline;
}

.p-blog__item:hover .p-blog__item-img {
  opacity: 0.7;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.p-blog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.p-blog__item:nth-child(n + 9) {
  display: none;
}

.p-blog__item-box {
  width: 48%;
  overflow: hidden;
}

.p-blog__item-img {
  width: 48%;
  position: relative;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.p-blog__item-img::before {
  content: "";
  display: block;
  padding-top: 56.45161%;
}

.p-blog__item-img img {
  position: absolute;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-blog__day {
  font-size: 14px;
  color: #737373;
  margin-bottom: 6px;
}

.p-blog__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 15px;
  color: #000;
}

.p-blog__text {
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 0;
  overflow: hidden;
  font-weight: 400;
  color: #000;
}

.p-blog__text span {
  font-size: 0.7em;
  vertical-align: super;
}

.p-blog__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
  margin-top: 21px;
}

.p-blog__category img {
  max-width: 28px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-blog__category-img {
  width: 16px;
}

.p-blog__category-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  color: #000;
}

.p-blog__category-text--green {
  color: #5C9017;
}

.p-blog__category-text--orange {
  color: #F99B00;
}

.p-blog__category-text--blue {
  color: #009BBC;
}

.p-blog-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 25px;
  margin: 0 auto;
  margin-bottom: 130px;
  gap: 0 24px;
}

.p-blog-navi__prev {
  display: block;
  border: 2px solid #000;
  background-color: #49830D;
  padding: 5.3px 16px 5.3px 38px;
  border-radius: 18px;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.p-blog-navi__prev .fa-arrow-left {
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
}

.p-blog-navi__prev:hover {
  color: #000;
  background-color: #fff;
  -webkit-transition: background-color,color .4s ease;
  transition: background-color,color .4s ease;
}

.p-blog-navi__prev--active {
  background-color: #49830D;
  color: #fff;
  border: 2px solid #000;
}

.p-blog-navi__prev--active:hover {
  color: #000;
  background-color: #fff;
  -webkit-transition: background-color,color .4s ease;
  transition: background-color,color .4s ease;
}

.p-blog-navi__prev--active:hover .fa-arrow-left {
  mix-blend-mode: difference;
}

.p-blog-navi__next {
  display: block;
  border: 2px solid #000;
  background-color: #49830D;
  padding: 5.3px 38px 5.3px 16px;
  border-radius: 18px;
  color: #fff;
  font-weight: 600;
  -webkit-transition: background-color,color .4s ease;
  transition: background-color,color .4s ease;
  position: relative;
}

.p-blog-navi__next .fa-arrow-right {
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.p-blog-navi__next:hover {
  color: #000;
  background-color: #fff;
  -webkit-transition: background-color,color .4s ease;
  transition: background-color,color .4s ease;
}

.p-blog-navi__next:hover .fa-arrow-right {
  mix-blend-mode: difference;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.p-blog-navi__next--last {
  background-color: #F5F5F5;
  color: #737373;
  border: 2px solid #737373;
}

.p-blog-navi__next--last:hover {
  background-color: #F5F5F5;
  color: #737373;
}

.p-blog-navi__next--last:hover .fa-arrow-right {
  mix-blend-mode: inherit;
}

.p-blog-navi__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-blog-navi__num {
  width: 40px;
  line-height: 40px;
  color: #49830D;
  text-align: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 18px;
}
.p-blog-navi__num.current{
	color: #ccc;
	pointer-events: none;
}
.p-blog-navi__num:hover {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #737373;
  opacity: 0.7;
}

.p-blog-navi__num--dot {
  width: 40px;
  text-align: center;
}

.p-blog-navi__num--dot img {
  width: 20px;
}

.p-blog-navi__num--dot:hover {
  opacity: 1;
  color: #49830D;
}

.p-blog-navi__num--current {
  color: #737373;
}

@media screen and (max-width: 787px) {
  .p-blog__inner {
    margin: 0 auto 190px;
  }
  .p-blog__box-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 24.5px 15px;
  }
  .p-blog__sub {
    margin-bottom: 82px;
  }
  .p-blog__box-category {
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-blog__box-text {
    font-size: 14px;
  }
  .p-blog__box-item {
    gap: 0 6px;
  }
  .p-blog__box-decorate {
    width: 30%;
    left: 35%;
    -webkit-transform: translateY(-100%) translateX(-50%);
            transform: translateY(-100%) translateX(-50%);
    min-width: 150px;
  }
  .p-blog__box-decorate-right {
    width: 24%;
    left: auto;
    left: 65%;
    min-width: 130px;
  }
  .p-blog__list {
    max-width: 545px;
    margin: 0 auto 80px;
    gap: 40px 0;
  }
  .p-blog__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px 0;
  }
  .p-blog__item-box {
    width: 100%;
  }
  .p-blog__item-box img {
    margin: 0 auto;
    display: block;
  }
  .p-blog__item-img {
    width: 100%;
  }
  .p-blog__category img {
    margin: 0;
  }
  .p-blog-navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p-blog-navi__numbers {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-blog-navi__prev {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-blog-navi__next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (max-width: 550px) {
  .p-blog__inner {
    padding: 0 20px;
  }
  .p-blog__box-decorate {
    width: 30%;
    left: 30%;
  }
  .p-blog__box-decorate-right {
    width: 24%;
    left: 70%;
  }
  .p-blog__top-title {
    font-size: 24px;
  }
  .p-blog__top-title span {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 450px) {
  .p-blog__box-decorate {
    left: 25%;
  }
  .p-blog__box-decorate-right {
    left: 75%;
  }
}
