@charset "UTF-8";


.learn-post-head {
  margin-top: 2rem;
  padding-inline: var(--gutter-x);
}

.learn-post-head-label {
  position: relative;
  padding: 0.25rem 0.5rem;
  display: block;
  width: fit-content;
  font-weight: 600;
  font-size: 0.6875rem;
  border: 2px dashed var(--color-black);
  border-radius: 0.4rem;
}

.learn-post-head-label::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  bottom: 100%;
  display: block;
  width: 1.9375rem;
  aspect-ratio: 31/30;
  background: bottom center / contain no-repeat url('../images/learn/poikusan02.webp');
  pointer-events: none;
}


.learn-post-head-title {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.4;
}

.learn-post-head-date {
  margin-top: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.learn-post-head-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}


.learn-post-eye-catch {
  margin-top: 1.5rem;
}

.learn-post-editor {
  --gap-value: 0.5rem;
  margin-top: 0.5rem;
  padding: 2.5rem var(--gutter-x) 3rem;
  background: var(--color-white);
}

.learn-post-editor>* {
  --gap: calc(var(--gap-value) * 3);
  margin-top: var(--gap);
}

.learn-post-editor>*:first-child {
  margin-top: 0;
}

.learn-post-editor h2 {
  padding: 0.125rem 1rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 0.375rem;
}

.learn-post-editor h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-orange);
}

.learn-post-editor h4 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.8;
}

.learn-post-editor p {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.learn-post-editor ul {
  font-size: 1rem;
}

.learn-post-editor ul li {
  font-weight: 500;
  display: flex;
  gap: 0.25rem;
}

.learn-post-editor ul li::before {
  flex-shrink: 0;
  content: '';
  display: block;
  width: 1.25rem;
  height: 1.5rem;
  background: center/ 0.875rem 0.875rem no-repeat url('../images/common/unordered-list-mark.svg');

}

.learn-post-editor ol {
  font-weight: 500;
  font-size: 1rem;
  counter-reset: number-counter;
}

.learn-post-editor ol li {
  display: flex;
  gap: 0.25rem;
  counter-increment: number-counter;
}

.learn-post-editor ol li::before {
  flex-shrink: 0;
  content: counter(number-counter);
  display: flex;
  align-items: center;
  width: 1.25rem;
  height: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-orange);
}

.learn-post-editor li:not(:first-child) {
  margin-top: 0.5rem;
}

.learn-post-editor a:not([class]) {
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-orange);
}

.learn-post-editor blockquote {
  --gap: calc(var(--gap-value) * 2);
}

.learn-post-editor blockquote::before {
  content: '“';
  display: block;
  height: 1.5rem;
  font-weight: 500;
  font-size: 1.9375rem;
}

.learn-post-editor blockquote::after {
  content: '”';
  display: block;
  font-weight: 500;
  height: 1.5rem;
  font-size: 1.9375rem;
  text-align: right;
}

.learn-post-editor blockquote>* {
  padding-inline: 1.25rem;
}

.learn-post-editor .wp-block-image {
  --gap: calc(var(--gap-value) * 4);
}

.learn-post-editor .wp-block-image img {
  border-radius: 1rem;
}

.learn-post-editor .wp-block-image figcaption {
  margin-block: 0.5rem 0;
  padding-inline: 0.8rem;
  font-size: 0.8125rem;
}

.learn-post-editor .wp-block-embed {
  --gap: calc(var(--gap-value) * 4);
}

.learn-post-editor .wp-block-embed-youtube .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
}

.learn-post-editor .wp-block-embed-youtube iframe {
  width: 100%;
  height: 100%;
}

.learn-post-editor .wp-block-lazyblock-table {
  --gap: calc(var(--gap-value) * 4);
}

.learn-post-editor .wp-block-lazyblock-table .items-list {
  border-top: 1px solid var(--color-black);
}

.learn-post-editor .wp-block-lazyblock-table .items-list dt {
  padding-top: 1.25rem;
  font-weight: 700;
  color: var(--color-orange);
}

.learn-post-editor .wp-block-lazyblock-table .items-list dd {
  margin-top: 0.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-black);
}


.learn-post-editor .wp-block-lazyblock-bg-block {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  background: top left / 110px auto repeat url('../images/common/bg_beige.png');
  border-radius: 1rem;
}

.learn-post-editor .wp-block-lazyblock-bg-block .lazyblock-inner-blocks>* {
  --new-gap: calc(var(--gap) - var(--gap-value));
  margin-top: var(--new-gap);
}

.learn-post-editor .wp-block-lazyblock-bg-block .lazyblock-inner-blocks>*:first-child {
  margin-top: 0;
}

.learn-post-editor .wp-block-lazyblock-link-button {
  --gap: calc(var(--gap-value) * 4);
}

.learn-post-editor .wp-block-lazyblock-download-button {
  --gap: calc(var(--gap-value) * 4);
}

.learn-post-bottom {
  padding: 4rem var(--gutter-x);
}

.learn-post-bottom-section:not(:first-child) {
  margin-top: 4rem;
}

.learn-post-bottom-section__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8;
}

.learn-post-bottom-section-content {
  margin-top: 1.5rem;
}


.learn-post-bottom-back {
  margin-top: 4rem;
}