@charset "UTF-8";

/* =============================================
レイアウト
============================================= */
.post {
  padding-top: 60px;
}

.post__inner {
  width: 90vw;
  max-width: 1020px;
  margin: 20px auto 60px;
  padding: 40px 100px;
  background: var(--color-white);
}

.post__title {
  font-size: 41px;
  font-weight: 700;
}

.post__meta {
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.post__category {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4px 8px;
  font-weight: 700;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
}

.post__time {
  font-family: roboto;
  position: relative;
  padding-left: 20px;
  color: #8b8b8b;
}

.post__time::before {
  content: '';
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(0,0,0,0.3)'%3E%3Cpath d='M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM13 12V7H11V14H17V12H13Z'%3E%3C/path%3E%3C/svg%3E");
}

.post__content {
  border-top: solid 1px var(--color-gray);
  padding-top: 20px;
  margin-top: 20px;
}

/* =============================================
目次
============================================= */
#ez-toc-container {
  padding: 30px;
  background-color: var(--color-light-blue);
  border-left: solid 2px var(--color-navy);
}

.ez-toc-title.ez-toc-title {
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

.ez-toc-list {
  padding-left: 1em;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  list-style: decimal;
  text-align: left;
  margin-left: 3px;
  font-size: 16px;
  padding-right: 0;
}

.ez-toc-list ul {
  margin-top: 0;
}

.ez-toc-list li {
  padding: 10px 0 0;
  margin: 0;
  line-height: 1.4 !important;
}

.ez-toc-list li::marker,
.ez-toc-list li::before {
  display: none;
}

.ez-toc-list li a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.ez-toc-list li ul {
  margin: 5px;
  padding: 0 0 0 15px;
}

/* =============================================
パーツ
============================================= */
.wp-block-heading.wp-block-heading {
  font-weight: 700;
  margin-top: 2.2em;
  margin-bottom: 1em;
}

h2.wp-block-heading.wp-block-heading {
  font-size: 1.6rem;
  background-color: var(--color-light-blue);
  border-left: solid 4px var(--color-navy);
  padding: 1.2rem 1.4rem;
  margin-top: 2.8em;
}

h3.wp-block-heading.wp-block-heading {
  font-size: 1.4rem;
  border-bottom: solid 1px var(--color-gray);
  padding-bottom: 0.4em;
}

h4.wp-block-heading.wp-block-heading {
  font-size: 1.2rem;
}

h5.wp-block-heading.wp-block-heading {
  font-size: 1rem;
}

.post__inner p {
  line-height: 2;
  margin-bottom: 1.6em;
}

.post__inner strong {
  background: linear-gradient(transparent 66%, #ffc34461 66%);
  padding: 0px 2px;
  font-weight: 700;
}

.post__inner a {
  color: var(--color-navy);
  text-decoration: underline;
}

@media (hover: hover) {
  .post__inner a:hover {
    text-decoration: none;
  }
}

.wp-block-image,
.wp-block-list,
.wp-block-table,
.wp-block-embed,
.wp-block-audio {
  margin: 1.6em 0;
}

.wp-block-list {
  padding: 20px 40px 20px 60px;
  position: relative;
  background: var(--color-light-blue);
}

ol.wp-block-list {
  list-style: decimal;
}

.wp-block-list li {
  position: relative;
}

.wp-block-list li:not(:last-of-type) {
  margin-bottom: 0.6em;
}

ul.wp-block-list li::before {
  position: absolute;
  top: 0.54em;
  left: -18px;
  border-radius: calc(1px / 0);
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-gray);
}

.wp-block-list .wp-block-list {
  padding: 0.6em 0 0 1.3em;
  margin: 0;
}

.wp-block-list ul.wp-block-list li::before {
  top: 0.78em;
  border-radius: 0;
  height: 2px;
  width: 10px;
}

.wp-block-table thead,
.wp-block-table td,
.wp-block-table th {
  border: 0;
  vertical-align: middle;
}

.wp-block-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
  border: solid 2px var(--color-white);
  padding: 1rem 1.2rem;
  white-space: nowrap;
}

.wp-block-table td {
  background: var(--color-light-blue);
  border: solid 1px var(--color-white);
  padding: 1rem 1.2rem;
}

.wp-block-image {
  text-align: center;
}

.wp-block-embed iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.wp-block-image :where(figcaption) {
  text-align: center;
  font-weight: 500;
}

/* =============================================
著者ボックス
============================================= */
.author-box__profile {
  background-color: var(--color-light-blue);
  display: flex;
  padding: 24px;
  margin-bottom: 20px;
}

.author-box__image {
  text-align: center;
  padding-right: 20px;
}

.author-box__image img {
  max-width: 80px;
  border-radius: 100%;
  border: 1px solid var(--color-navy);
  padding: 2px;
}

.author-box__name.author-box__name {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 10px;
  margin-bottom: 4px;
}

.author-box__label {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 12px;
  border: 1px solid;
  padding: 1px 10px;
}

.author-box__description.author-box__description {
  font-size: 14px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .author-box__profile {
    padding: 20px;
  }

  .author-box__image {
    padding-right: 16px;
  }

  .author-box__image img {
    max-width: 60px;
  }
}
