*, ::after, ::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style: none;
}

a {
  color: initial;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  font-weight: initial;
}

button {
  border: initial;
  background: initial;
  outline: 0;
}

textarea {
  resize: none;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #FAFFFF;
  --color-object-dark: #3C4141;
  --color-object-dark2: #4B5050;
  --color-txt-main: #506464;
  --color-txt-sub: #8C9696;
  --color-object-lighten: #F0F5F5;
  --color-object-lighten2: #BEC3C3;
  --color-line: #D2DCD7;
  --color-primary-green: #19A050;
}

.SingleContent {
  margin-top: 200px;
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.48s;
}
@media screen and (max-width: 768px) {
  .SingleContent {
    margin-top: 160px;
  }
}
.SingleContent__head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}
.SingleContent__head--date {
  font-weight: 600;
  color: var(--color-primary-green);
}
.SingleContent__head--title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .SingleContent__head--title {
    font-size: 18px;
  }
}
.SingleContent__content {
  margin-top: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .SingleContent__content {
    font-size: 14px;
  }
}
.SingleContent__content > * {
  margin-top: 24px;
}
.SingleContent__content h2 {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary-green);
}
@media screen and (max-width: 768px) {
  .SingleContent__content h2 {
    font-size: 20px;
  }
}
.SingleContent__content strong {
  font-weight: 700;
}
.SingleContent__content a {
  color: var(--color-primary-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.SingleContent__content ul, .SingleContent__content ol {
  padding-left: 24px;
}
.SingleContent__content ul {
  list-style-type: disc;
}
.SingleContent__content ol {
  list-style-type: decimal;
}
.SingleContent__content img {
  margin-right: auto;
  margin-left: auto;
  display: block;
  max-width: 100%;
}
.SingleContent__content .-surround {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  border: 1px solid var(--color-txt-sub);
}
.SingleContent.-active {
  opacity: 1;
  transform: translateY(0);
}