.single-content {
  margin: 100px 0 0 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}
.single-content__head {
  display: block;
  margin: 0 0 40px 0;
}
.single-content__head__info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.single-content__head__info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-content__head__info li {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  background: #79ac78;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.single-content__head__info li a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.single-content__head__info__date {
  font-size: 14px;
  color: #797979;
  font-family: "Noto Sans JP", sans-serif;
}
.single-content__head__title {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #2f2626;
  line-height: 1.5;
}
.single-content__wrapper {
  background: #F6F5F4;
  margin: 40px 0 0 0;
  padding: 60px 0;
  border-radius: 20px;
}
.single-content__inner {
  display: block;
  width: 90%;
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 50px 60px;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  overflow-x: auto;
}
.single-content__inner__one__thumbnail {
  display: block;
  width: 100%;
  margin: 0 0 40px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #DEDEDE;
}
.single-content__inner__one__thumbnail > img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.single-content__inner__one__thumbnail:hover > img {
  transform: scale(1.01);
}
.single-content__inner h1 {
  font-size: 32px;
  font-weight: 700;
  color: #2f2626;
  margin: 40px 0 20px 0;
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 3px solid #79ac78;
}
.single-content__inner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2f2626;
  margin: 36px 0 16px 0;
  line-height: 1.6;
  padding-bottom: 8px;
  border-bottom: 2px solid #DEDEDE;
}
.single-content__inner h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2f2626;
  margin: 28px 0 12px 0;
  line-height: 1.6;
}
.single-content__inner h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2f2626;
  margin: 24px 0 10px 0;
  line-height: 1.6;
}
.single-content__inner p {
  font-size: 16px;
  line-height: 1.8;
  color: #2f2626;
  margin: 0 0 20px 0;
}
.single-content__inner a {
  color: #79ac78;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.single-content__inner a:hover {
  color: #6a9a69;
  text-decoration: none;
}
.single-content__inner ul, .single-content__inner ol {
  margin: 20px 0;
  padding-left: 30px;
}
.single-content__inner ul li, .single-content__inner ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #2f2626;
  margin: 8px 0;
}
.single-content__inner ul {
  list-style-type: disc;
}
.single-content__inner ol {
  list-style-type: decimal;
}
.single-content__inner table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  display: table;
}
.single-content__inner table th {
  background: #79ac78;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  font-size: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.single-content__inner table td {
  padding: 12px 16px;
  border-bottom: 1px solid #DEDEDE;
  font-size: 15px;
  color: #2f2626;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.single-content__inner table tr {
  transition: background 0.2s ease;
}
.single-content__inner table tr:hover {
  background: #f8f8f8;
}
.single-content__inner table tr:last-child td {
  border-bottom: none;
}
.single-content__inner blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  background: #f8f8f8;
  border-left: 4px solid #79ac78;
  border-radius: 4px;
  font-style: italic;
  color: #2f2626;
}
.single-content__inner blockquote p {
  margin: 0;
}
.single-content__inner code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: #e74c3c;
  font-family: "Courier New", monospace;
}
.single-content__inner pre {
  background: #2f2626;
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}
.single-content__inner pre code {
  background: transparent;
  color: #ffffff;
  padding: 0;
}
.single-content__inner figure {
  margin: 30px 0;
  max-width: 100%;
  box-sizing: border-box;
}
.single-content__inner figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
}
.single-content__inner figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #797979;
  text-align: center;
}
.single-content__inner hr {
  border: none;
  border-top: 2px solid #DEDEDE;
  margin: 40px 0;
}
.single-content__navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 50px 0 40px;
  width: 90%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.single-content__navigation__prev:only-child, .single-content__navigation__next:only-child {
  grid-column: 1/-1;
}
.single-content__navigation__prev {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #DEDEDE;
  transition: all 0.3s ease;
}
.single-content__navigation__prev:hover {
  border-color: #79ac78;
}
.single-content__navigation__next {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #DEDEDE;
  transition: all 0.3s ease;
}
.single-content__navigation__next:hover {
  border-color: #79ac78;
}
.single-content__navigation__link {
  display: flex;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  color: #2f2626;
  gap: 16px;
}
.single-content__navigation__prev .single-content__navigation__link {
  flex-direction: row;
}
.single-content__navigation__next .single-content__navigation__link {
  flex-direction: row-reverse;
  text-align: right;
}
.single-content__navigation__arrow {
  font-size: 24px;
  color: #79ac78;
  flex-shrink: 0;
}
.single-content__navigation__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.single-content__navigation__label {
  font-size: 12px;
  color: #797979;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.single-content__navigation__title {
  font-size: 15px;
  font-weight: 600;
  color: #2f2626;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single-content__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  margin: 40px auto 0;
  padding: 16px 50px;
  background: #79ac78;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-content__button:hover {
  background: #6a9a69;
}
.single-content__button a {
  text-decoration: none;
  color: white;
}
.single-content__button p {
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
}
.single-content__button p span {
  transition: 0.3s;
}

.single-content__inner .single-content__one__thumbnail {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 40px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
}
.single-content__inner .single-content__one__thumbnail > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.single-content__inner .single-content__one__thumbnail:hover > img {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .single-content {
    padding: 0 3%;
    margin: 80px 0 0 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .single-content__head {
    margin: 0 0 30px 0;
    width: 100%;
    box-sizing: border-box;
  }
  .single-content__head__info {
    flex-wrap: wrap;
    gap: 8px;
  }
  .single-content__head__info li {
    font-size: 12px;
    padding: 5px 12px;
  }
  .single-content__head__title {
    font-size: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .single-content__wrapper {
    padding: 40px 0;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .single-content__inner {
    width: 95%;
    max-width: 100%;
    padding: 30px 20px;
    border-radius: 16px;
    box-sizing: border-box;
  }
  .single-content__inner h1 {
    font-size: 24px;
    margin: 30px 0 16px 0;
  }
  .single-content__inner h2 {
    font-size: 20px;
    margin: 28px 0 14px 0;
  }
  .single-content__inner h3 {
    font-size: 18px;
    margin: 24px 0 12px 0;
  }
  .single-content__inner p {
    font-size: 15px;
  }
  .single-content__inner table {
    font-size: 13px;
    width: 100%;
    max-width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .single-content__inner table th, .single-content__inner table td {
    padding: 10px 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .single-content__inner .single-content__one__thumbnail {
    margin: 0 0 30px 0;
  }
  .single-content__navigation {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 95%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .single-content__navigation__link {
    padding: 16px;
    box-sizing: border-box;
  }
  .single-content__navigation__title {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .single-content__button {
    padding: 14px 40px;
    font-size: 15px;
  }
}/*# sourceMappingURL=news-single.css.map */