/* --------------------------------------------------
single
-------------------------------------------------- */
#single {
  padding: 0 50px 80px;
  background-color: var(--color-bg-green);
}
@media screen and (width <= 768px) {
  #single {
    padding: 0 5% 60px;
  }
}
#single article {
  position: relative;
}
#single article::before {
  position: absolute;
  right: 50%;
  bottom: 2%;
  width: 350px;
  height: 350px;
  margin-right: -700px;
  content: "";
  background-image: url("../img/common/img_mountain.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (width <= 768px) {
  #single article::before {
    right: -10%;
    bottom: 6%;
    width: 150px;
    height: 150px;
    margin-right: initial;
  }
}
#single article::after {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 44px;
  height: 44px;
  margin-left: -100px;
  content: "";
  background-image: url("../img/common/icon_rectangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (width <= 768px) {
  #single .inner-600 {
    padding: 0;
  }
}
#single .post-content-inner {
  padding: 60px 50px;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 40px;
}
@media screen and (width <= 768px) {
  #single .post-content-inner {
    padding: 30px 5% 140px;
  }
}
#single .post-content-inner .date-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}
#single .post-content-inner .date-wrapper p.date {
  color: var(--color-light-green);
}
#single .post-content-inner .date-wrapper .tag-wrapper {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}
#single .post-content-inner .date-wrapper .tag-wrapper p.tag {
  padding: 2px 10px;
  font-size: 10px;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 10px;
}
#single .post-content-inner .date-wrapper .tag-wrapper p.change {
  background-color: var(--color-pink);
}
#single .post-content-inner .date-wrapper .tag-wrapper p.event {
  background-color: var(--color-light-green);
}
#single .post-content-inner .date-wrapper .tag-wrapper p.notice {
  background-color: var(--color-blue);
}
#single .post-content-inner h1 {
  margin: 30px 0 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (width <= 768px) {
  #single .post-content-inner h1 {
    margin: 20px 0 40px;
    font-size: 18px;
  }
}
#single .post-content-inner .post-content {
  margin: 20px 0 0;
}
#single .post-content-inner .post-content p {
  margin: 30px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (width <= 768px) {
  #single .post-content-inner .post-content p {
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.8;
  }
}
#single .post-content-inner .post-content img {
  margin: 30px 0 0;
}
#single .post-navigation {
  margin: 30px 0 0;
}
#single .post-navigation .inner-920 {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
#single .post-navigation .inner-920 a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
#single .back-to-list {
  text-align: center;
}
#single .back-to-list a {
  display: block;
  margin: 30px auto 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
#single .post-wrapper {
  margin: 60px 0 0;
}
@media screen and (width <= 768px) {
  #single .post-wrapper .post-list {
    padding: 30px 0 0 !important;
  }
}
@media screen and (width <= 768px) {
  #single .post-wrapper {
    margin: 30px 0 0;
  }
}
#single .post-wrapper .inner-920 {
  position: relative;
  padding: 30px 50px 0;
  background-color: var(--color-arrow-green);
  border: 1px solid var(--color-black);
}
@media screen and (width <= 768px) {
  #single .post-wrapper .inner-920 {
    padding: 30px 5% 0;
  }
}
#single .post-wrapper .inner-920::before {
  position: absolute;
  top: 30%;
  left: -3%;
  width: 60px;
  height: 60px;
  content: "";
  background-image: url("../img/common/icon_circle_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (width <= 768px) {
  #single .post-wrapper .inner-920::before {
    top: 10%;
    left: -5%;
    width: 40px;
    height: 40px;
  }
}
#single .post-wrapper .inner-920::after {
  position: absolute;
  right: 5%;
  bottom: -20px;
  width: 44px;
  height: 44px;
  content: "";
  background-image: url("../img/common/icon_rectangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (width <= 768px) {
  #single .post-wrapper .inner-920::after {
    right: 5%;
    bottom: -10px;
    width: 22px;
    height: 22px;
  }
}
#single .post-wrapper .inner-920 h2 {
  text-align: center;
}
#single .post-wrapper .inner-920 .post-list {
  padding: 50px 0 0;
}
