@charset "UTF-8";

/* ==========================================================================
   WP Post
========================================================================== */
.article-header {
  margin-bottom: calc(var(--section-gy)*0.5);
  padding-bottom: calc(var(--section-gy)*0.5);
  border-bottom: 1px solid var(--border1);
}
.article-header > .row {
  row-gap: .5rem;
}
.article-header .entry-meta {
  display: flex;
  row-gap: 1em;
  column-gap: 1.5em;
  margin-bottom: .75rem;
}
.article-header .ttl + .entry-meta {
  margin-bottom: 0;
}
.article-header .ttl {
  margin: 0!important;
  line-height: 2;
}

.article-thumbnail {
  margin-bottom: calc(var(--section-gy)*0.5);
  padding-top: calc(var(--section-gy)*0.5);
  padding-bottom: calc(var(--section-gy)*0.5);
  border-bottom: 1px solid var(--border1);
}
.article-thumbnail > .row {
  row-gap: var(--bs-gutter-x);
}

.article-note {
  margin-top: calc(var(--section-gy)*-0.25);
  margin-bottom: calc(var(--section-gy)*0.5);
  padding-bottom: calc(var(--section-gy)*0.25);
  border-bottom: 1px solid var(--border1);
  color: var(--color1);
  font-size: 1em;
}
@media (max-width: 575px) {
  .article-thumbnail > .row {
    --bs-gutter-x: 1rem;
  }
}
@media (min-width: 992px) {
  .article-header .entry-meta .meta {
    line-height: calc(1.714em*2);
  }
  .article-note {
    font-size: 1.286em;
  }
}

.article-footer {
  margin: calc(var(--section-gy)*0.5) auto;
  padding-top: calc(var(--section-gy)*0.5);
  border-top: 1px solid var(--border1);
}

.entry-meta {
  display: flex;
  align-items: flex-start;
}
.entry-meta time {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.857em;
  line-height: 2.3;
}

/* entry-content */
.entry-content {
  letter-spacing: 0;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

.entry-content a {
  color: var(--color1);
  text-decoration: underline;
}

.entry-content dl {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.entry-content dt {
  font-weight: 700;
  font-size: 1.125em;
  margin-bottom: .75em;
  padding: .5em .75em;
}
.entry-content dd {
  margin-left: 0;
  margin-bottom: 1em;
  padding: 0 1em;
}
.entry-content dd + dt {
  margin-top: 1em;
}

.entry-content figure,
.entry-content picture {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
  
.entry-content .video{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.entry-content .video iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.entry-content table {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.entry-content table th {
  background-color: var(--l-gray2);
  border: 1px solid var(--border1);
  padding: .5em;
  font-weight: 400;
}
.entry-content table tbody th {
  text-align: left;
}
.entry-content table td {
  border: 1px solid var(--border1);
  padding: .5em;
}

.entry-content ul,
.entry-content ol {
  margin-left: 0;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.entry-content ol ol,
.entry-content ul ul,
.entry-content ol ul,
.entry-content ul ol {
  margin-top: .5em;
  margin-bottom: .5em;
}
.entry-content ol li,
.entry-content ul li  {
  margin-top: .5em;
  margin-bottom: .5em;
}

.entry-content ol li {
  list-style-type: none;
  padding-left: 1.5em;
  counter-increment: cnt;
  position: relative;
}
.entry-content ol li::before {
  content: counter(cnt)".";
  position: absolute;
  left: 0;
}
.entry-content ol li ol li {
  padding-left: 2em;
}
.entry-content ol li ol li::before {
  content: "("counter(cnt)")";
}
.entry-content ol li ol li ol {
  margin-left: 2em;
}
.entry-content ol li ol li ol li,
.entry-content .list-katakana-iroha li {
  list-style-type: katakana-iroha;
  padding-left: 1em;
  text-indent: -1em;
}
.entry-content ol li ol li ol li::before,
.entry-content .list-katakana-iroha li::before {
  display: none;
}

.entry-content hr  {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.entry-content p  {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 1.75em 0 1rem;
  font-family: var(--mincho); 
  font-size: revert;
  font-weight: 500;
  line-height: 2;
  position: relative;
}
.entry-content h1 { font-size: 1.5em; }
.entry-content h2 { font-size: 1.25em; font-family: var(--gothic); color: var(--color1); font-weight: 700; }
.entry-content h3 { padding-left: 1em; }
.entry-content h3::before { content: ''; display: inline-block; width: .3em; aspect-ratio:1/1; background: currentColor; border-radius: 100%; position: absolute; left: 0; top: 1em; transform: translateY(-50%); }

.entry-content > *:first-child {
  margin-top: 0;
}

/* not found */
#post-not-found {
  text-align: center;
  color: var(--color1);
  padding: 2rem 0;
}
#post-not-found .en_ttl {
  line-height: 1;
  font-weight: 700;
}




/* -----------------------------------
  管理画面だけ
----------------------------------- */
body.mce-content-body {
  font-family: var(--default-font);
  max-width: min(95%,60rem);
  margin: 3em auto;
  background: #fff;
  color: #000;
}


