html .tab-p__btn {
  font-family: "Noto Sans";
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 133px;
}
.breadcrumb span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-dark-gray09);
}
.breadcrumb span a.bold {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-dark-gray09);
}
.breadcrumb.maxwidth1216 {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}

.section__title.widthAuto {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 60px;
  border-radius: 999px;
  background: var(--color-light-gray11);
}
.section__contents.margin67 {
  margin-top: 6.7rem;
}
.section__contents.margin25 {
  margin-top: 2.5rem;
}
.section.padding9 {
  padding: 9px 0 97px;
}

.label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.label span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 16px;
  border-radius: 999px;
}
.label__blog {
  background-color: var(--color-orange);
  color: white;
}

.detail-wrap {
  display: flex;
  gap: 74px;
  justify-content: center;
}
.detail-wrap .detail-info {
  float: right;
  width: 472px;
  position: relative;
  flex-shrink: 0;
}
.detail-wrap .detail-info .detail-info__inner {
  position: sticky;
  top: 84px;
  border: 1px solid var(--color-light-gray12);
  padding: 44px 32px;
  border-radius: 20px;
  background: var(--color-white);
}
.detail-wrap .detail-info .label {
  margin-top: 0;
}

.detail-info__inner .share {
  position: relative;
}
.detail-info__inner .share__btn {
  cursor: pointer;
}
.detail-info__inner .share__message {
  display: none;
  position: absolute;
  left: calc(100% + 50px);
  top: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  background-color: var(--color-light-orange03);
  padding: 12px 22px;
  border: 1px solid var(--color-orange);
  border-radius: 12px;
}
.detail-info__inner .share__message.view {
  display: block;
}
.detail-info__inner .flex {
  display: flex;
  margin-top: 24px;
}
.detail-info__inner .flex.margin14 {
  margin-top: 14px;
}
.detail-info__inner .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: var(--color-dark-gray05);
}
.detail-info__inner .desc {
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-dark-gray09);
}

.bottom-sticky-btn {
  display: none;
}

.toast {
  position: fixed;
  top: 84px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.toast__contents {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1490196078);
  width: 672px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  border-radius: 8px;
}
.toast__contents p {
  display: flex;
  gap: 4px;
  align-items: center;
}
.toast__contents p span {
  font-weight: 700;
  font-size: 16px;
}
.toast__contents button {
  cursor: pointer;
}
.toast.hide {
  display: none;
}

.section__title:nth-of-type(n+2) {
  margin-top: 140px;
}

.main__inner {
  max-width: none;
}

.padding {
  padding-top: 124px;
  padding-bottom: 20px;
}

.tab-p {
  display: inline-flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}
.tab-p__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  height: 100%;
  font-size: 16px;
  color: var(--color-dark-gray15);
  padding: 10.5px 24px;
  border: 1px solid var(--color-light-gray15);
  line-height: 23px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 999px;
  flex: 0 0 auto;
  box-sizing: border-box;
  flex-shrink: 0;
}
.tab-p__btn.active {
  background-color: var(--color-orange);
  color: white;
  border-color: transparent;
  font-weight: 700;
}

.blog-list {
  max-width: 1218px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 42px;
  column-gap: 36px;
}
.blog-list__item {
  width: calc(33.3333333333% - 24px);
}
.blog-list__thumbnail {
  width: 100%;
  aspect-ratio: 382/217;
}
.blog-list__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.blog-list__title {
  font-size: 24px;
  line-height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--color-dark-black01);
  font-weight: 600;
  margin-top: 24px;
}
.blog-list__desc {
  font-size: 16px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--color-dark-gray15);
  font-weight: 400;
  margin-top: 8px;
}
.blog-list__date {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--color-dark-gray16);
  margin-top: 20px;
}

.main__bottom {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  padding-bottom: 144px;
}
.main__bottom-btn {
  cursor: pointer;
  padding: 16px 148px;
  border-radius: 999px;
  border: 1px solid var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main__bottom-btn .txt-b {
  font-weight: 700;
  color: var(--color-orange);
  font-size: 18px;
  line-height: 18px;
}
.main__bottom-btn .txt-n {
  margin-left: 4px;
  line-height: 21px;
  color: var(--color-orange);
  font-weight: 400;
  font-size: 14px;
}
.main__bottom-btn .txt-n span {
  font-weight: 400;
  color: var(--color-orange);
}
.main__bottom-btn .ico-arrow {
  margin-left: 8px;
}

.editer {
  max-width: 672px;
  width: 100%;
}

.editer-mobile {
  display: none;
}

.detail-info__inner .flex--m0 {
  margin-top: 0;
}
.detail-info__inner .prev-btn {
  text-align: center;
  display: block;
  margin-top: 40px;
  width: 100%;
  padding: 16px 0;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  color: white;
  background-color: var(--color-orange);
}

.detail-info__text {
  max-width: 672px;
  width: 100%;
  margin: 0 auto;
}
.detail-info__text .title {
  color: var(--color-dark-black01);
  line-height: 32px;
}
.detail-info__text .desc {
  margin-top: 8px;
  color: var(--color-dark-gray15);
  line-height: 21px;
}
.detail-info__text .date {
  display: block;
  margin-top: 14px;
  color: var(--color-dark-gray16);
  font-size: 14px;
  line-height: 17px;
}

.recommend-content {
  max-width: 672px;
  width: 100%;
  margin: 0 auto;
}
.recommend-content .title {
  margin-top: 24px;
  color: var(--color-dark-black01);
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}
.recommend-content__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.recommend-content__item a {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}
.recommend-content__thumbnail {
  width: 123px;
  aspect-ratio: 123/70;
  flex-shrink: 0;
}
.recommend-content__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.recommend-content__txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recommend-content__title {
  color: var(--color-dark-gray05);
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}
.recommend-content__date {
  color: var(--color-dark-gray16);
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
}

.bottom-sticky-btn .share__btn {
  width: 70px;
  background-color: white;
  cursor: pointer;
}
.bottom-sticky-btn .prev-btn {
  width: calc(100% - 70px);
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}

.nav-blog-cate {
  display: none;
}

.section.padding9 {
  padding-bottom: 144px;
}/*# sourceMappingURL=blog.css.map */

/*0318*/
.blog-list__thumbnail-mob {
  display: none;
}

/*20250331*/
.editer span,
.editer p {
  font-size: 9pt;
  line-height: normal;
}

/* 0425 */
.editer {
  font-size: 9pt;
  /* 전체 기본 폰트 크기 */
  line-height: normal;
}
.editer span:not([style*="font-size"]),
.editer p:not([style*="font-size"]),
.editer div:not([style*="font-size"]) {
  font-size: inherit;
}
.editer ul,
ol {
  list-style: revert;
  list-style-position: inside;
}
.editer b {
  font-weight: 800;
}
.editer sup {
  vertical-align: super;
  font-size: 0.8em;
  line-height: 1;
}
.editer sub {
  vertical-align: sub;
  font-size: 0.8em;
  line-height: 1;
}

/*20250514*/
.editer p,
.editer span,
.editer b {
  color: inherit;
}