html {
  scroll-padding-top: 118px;
  scroll-behavior: smooth;
}
@media (max-width: 735px) {
  html {
    scroll-padding-top: 108px;
  }
}

.mondai-post {
  margin-top: 98px;
}
@media (max-width: 735px) {
  .mondai-post {
    margin-top: 88px;
  }
}
.mondai-post__body-wrapper {
  padding-top: 24px;
  padding-bottom: 20px;
}
@media (max-width: 735px) {
  .mondai-post__body-wrapper {
    padding-top: 30px;
    padding-bottom: 36px;
  }
}
.mondai-post__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.mondai-post__block {
  margin: 0 auto;
  max-width: 960px;
}
.mondai-post__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
@media (max-width: 735px) {
  .mondai-post__wrapper {
    row-gap: 20px;
  }
}
.mondai-post__content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 45px;
  width: 100%;
}
.mondai-post__info {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 735px) {
  .mondai-post__info {
    row-gap: 16px;
  }
}
.mondai-post__heading {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 735px) {
  .mondai-post__heading {
    row-gap: 16px;
  }
}
.mondai-post__sub-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
}
@media (max-width: 735px) {
  .mondai-post__sub-title {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}
.mondai-post__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 5.4px;
}
@media (max-width: 735px) {
  .mondai-post__title {
    font-size: 22px;
    letter-spacing: 3.3px;
  }
}
.mondai-post__meta {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.mondai-post__author {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 735px) {
  .mondai-post__author {
    margin-bottom: 0;
  }
}
.mondai-post__author .post-author {
  transition: opacity 0.1s cubic-bezier(0, 0.5, 0.5, 1);
}
.mondai-post__author .post-author .post-author__image {
  width: 40px;
  height: 40px;
}
.mondai-post__author .post-author .post-author__name {
  color: #000;
  font-size: 14px;
  transition: text-decoration 0.1s cubic-bezier(0, 0.5, 0.5, 1);
}
.mondai-post__author .post-author:hover {
  opacity: 0.6;
}
.mondai-post__author .post-author:hover .post-author__name {
  text-decoration: underline;
}
.mondai-post__point {
  padding: 24px;
  border-radius: 5px;
  background-color: #edf0f2;
}
.mondai-post__point p {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 735px) {
  .mondai-post__point p {
    font-size: 12px;
  }
}
.mondai-post__point-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.mondai-post__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
}
.mondai-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 4px;
}
.mondai-post__date {
  margin-top: 12px;
  font-size: 10px;
  color: #888888;
}
.mondai-post__body {
  display: flex;
  flex-direction: column;
  row-gap: 105px;
}
.mondai-post__contents {
  display: flex;
  flex-direction: column;
  row-gap: 45px;
}
.mondai-post__paging {
  max-width: 768px;
  padding-top: 58px;
  padding-bottom: 50px;
  margin: 0 auto;
}
.mondai-post__editor {
  margin-top: 32px;
}
@media (max-width: 735px) {
  .mondai-post__editor {
    margin-top: 0;
  }
}
@media (max-width: 735px) {
  .mondai-post__categories {
    margin-top: -20px;
  }
}
.mondai-post__credits-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}
@media screen and (max-width: 599px) {
  .mondai-post__credits-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mondai-post__credits-item {
  flex: 1;
}

.post-credits__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .post-credits__wrapper {
    row-gap: 12vw;
  }
}
.post-credits__item {
  height: 100%;
}
.post-credits__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}
.post-credits__body {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  background-color: #edf0f2;
  position: relative;
  height: 100%;
}
.post-credits__body::before {
  content: "";
  display: block;
  width: calc(100% + 3px);
  aspect-ratio: 66/7;
  background: url(../../images/post/bg-credits.svg) center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% + 1px));
  z-index: -1;
}
.post-credits__content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 10px 20px 8px;
  height: 100%;
}
@media (max-width: 735px) {
  .post-credits__content {
    margin-top: -5px;
    padding-top: 0;
  }
}
.post-credits__meta {
  display: flex;
  align-items: flex-start;
  column-gap: 15px;
}
.post-credits__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 1px #000;
  background-color: #ffffff;
  overflow: hidden;
}
.post-credits__img img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.post-credits a.post-credits__meta .post-credits__img {
  position: relative;
}
.post-credits a.post-credits__meta .post-credits__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s cubic-bezier(0, 0.5, 0.5, 1);
}
.post-credits a.post-credits__meta:hover .post-credits__img::before {
  opacity: 0.2;
}
.post-credits__head {
  flex: 1;
}
.post-credits__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #000;
}
.post-credits__position {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 10px;
  color: #000;
}
@media (max-width: 735px) {
  .post-credits__position {
    margin-top: 5px;
  }
}
.post-credits__text {
  font-size: 10px;
  line-height: 1.8;
  color: #505050;
}

/*# sourceMappingURL=mondai-single.css.map */
