.post_main {
  padding: 9.6rem 0 23.8rem;
}
.post_main .content {
  max-width: 105.6rem;
}
.post_main h1 {
  text-align: center;
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.post_main .metas {
  color: var(--content_color);
  text-align: center;
  font-size: 1.855rem;
  margin-top: 3rem;
}
.post_main .main_img {
  width: calc(100% - 4rem);
  max-width: 128rem;
  margin: 4.4rem auto 0;
  border-radius: 1.8rem;
}
.post_main .post_detail {
  color: var(--content_color);
  font-size: 1.7rem;
  line-height: 2.941rem;
  margin-top: 5.2rem;
}
.post_main .post_detail .content > *:first-child,
.post_main .post_detail > *:first-child {
  margin-top: 0;
}
.post_main .post_detail .content > *:last-child,
.post_main .post_detail > *:last-child {
  margin-bottom: 0;
}
.post_main .post_detail h2,
.post_main .post_detail h3,
.post_main .post_detail h4,
.post_main .post_detail h5,
.post_main .post_detail h6 {
  color: var(--title_color);
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 1.3;
}
.post_main .post_detail h2 {
  font-size: 2.6rem;
  margin: 5.6rem 0 3rem;
}
.post_main .post_detail h3 {
  font-size: 2.2rem;
  margin: 3rem 0 2rem;
}
.post_main .post_detail h4 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}
.post_main .post_detail h5 {
  font-size: 1.8rem;
  margin: 1rem 0;
}
.post_main .post_detail a {
  color: var(--theme_color);
  text-decoration: underline;
}
.post_main .post_detail a:hover {
  text-decoration: none;
}
.post_main .post_detail ol li {
  list-style: unset;
  margin: 1rem 0 1rem 2rem;
}
.post_main .post_detail ul li {
  position: relative;
  padding-left: 2rem;
  margin: 1rem 0;
}
.post_main .post_detail ul li::before {
  content: '';
  display: block;
  width: 0.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--theme_color);
  position: absolute;
  left: 0;
  top: 1rem;
}
.post_main .post_detail p {
  margin: 1rem 0;
}
.post_main .post_detail img {
  min-width: 100%;
  vertical-align: top;
}
.post_main .product {
  margin: 4rem 0;
}
.post_main .product a {
  gap: 1.6rem;
  color: var(--title_color);
  line-height: 1.3;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1.6rem;
  background-image: linear-gradient(to right, #e8ecef, #ffffff);
}
.post_main .product a:hover img {
  transform: scale(1.03);
}
.post_main .product .info {
  flex: 1;
  align-self: center;
  padding: 5rem 0 5rem 6.628788%;
}
.post_main .product .info .title {
  color: var(--theme_color);
  font-size: 3rem;
  font-weight: 600;
}
.post_main .product .info .cat {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 0.4rem;
}
.post_main .product .info .excerpt {
  color: var(--content_color);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 2.7rem;
  border-top: 1px solid rgba(61, 61, 61, 0.69);
  margin-top: 1.4rem;
  padding-top: 1.4rem;
}
.post_main .product .info .more {
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  max-width: max-content;
  margin-top: 3.6rem;
}
.post_main .product .info .more:hover::after {
  transform: translateX(0.5rem);
}
.post_main .product .info .more::after {
  content: '';
  display: block;
  width: 1.4rem;
  aspect-ratio: 14/12;
  transition: all 0.3s;
  background: url(../img/arrow-line-r-b.svg) no-repeat center / contain;
}
.post_main .product .img {
  width: 51.136364%;
  aspect-ratio: 540/330;
}
.post_main .tags {
  gap: 2.6rem;
  margin-top: 6rem;
  padding-top: 2.5rem;
  border-top: 1px solid #bcbcbc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.post_main .tags .label {
  font-size: 1.8rem;
  font-weight: 600;
}
.post_main .tags ul {
  gap: 1.4rem;
  display: flex;
  flex-wrap: wrap;
}
.post_main .tags ul li {
  color: #808080;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  border-radius: 100px;
  border: 1px solid #c5c5c5;
  padding: 1rem 4.4rem;
  transition: all 0.3s;
}
.post_main .tags ul li:hover {
  color: #fff;
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.post_main .share {
  position: fixed;
  right: 4.895833vw;
  top: 50%;
  z-index: 99;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.post_main .share.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(100%, -50%);
}
.post_main .share ul {
  gap: 1.8rem;
  display: grid;
}
.post_main .share .active a,
.post_main .share a:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.post_main .share .active a::after,
.post_main .share a:hover::after {
  filter: none;
}
.post_main .share a {
  display: block;
  width: 5.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  background-color: #fff;
  border: 1px solid #e9eaeb;
}
.post_main .share a::after {
  content: '';
  display: block;
  width: 2.6rem;
  aspect-ratio: 1;
  transition: all 0.3s;
  background: no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: contrast(0) brightness(0);
}
.post_main .share .facebook a::after {
  background-image: url(../img/facebook.svg);
}
.post_main .share .twitter a::after {
  background-image: url(../img/twitter.svg);
}
.post_main .share .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
.post_news {
  border-radius: 1.6rem;
  padding: 11.5rem 0 10.4rem;
  background-image: linear-gradient(to top, #fff, #e8ecef);
}
.post_news .swiper_box {
  margin: 5rem 0 4rem;
}
.post_news .news_list .news_item a {
  background-color: #fcfcfc;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.post_news .news_list .news_item.active a {
  background-color: #fff;
  box-shadow: 0 1.2rem 1rem rgba(128, 175, 166, 0.25);
}
.wp-block-columns {
	gap: 16px;
}