@charset "UTF-8";
:root {
  --color-base: #111111;
  --color-body: #fff;
  --color-beige1: #ffeddf;
  --color-beige2: #FDF8E7;
  --color-brown1: #956134;
  --color-red1: #FF645F;
  --color-orange1: #F7792A;
  --color-gray1: #e7ded9;
  --color-gray2: #F0F5F7;
  --color-green1: #005F2F;
  --color-green2: #0C8F54;
  --color-green3: #B7D450;
  --color-green4: #0C8F2B;
  --color-blue1: #1C66A3;
  --color-white_op: rgb(from #fff r g b / 0.7);
}

/* ------------------------------------
// news
------------------------------------ */
#entry {
  z-index: 2;
  position: relative;
  width: min(900px, 100% - 10rem);
  margin: 0 auto;
}
#entry .category {
  background: var(--color-green1);
  padding: 0.5rem 1rem;
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  border-radius: 10px 10px 0 0;
  width: fit-content;
  margin-left: 2rem;
  color: #FFF;
}
#entry h2 {
  margin-bottom: 1rem;
  background: var(--color-green3);
  padding: 1rem;
  font-size: clamp(2rem, 0.2vw, 0.3rem);
  border-radius: 10px;
}
#entry .date {
  text-align: right;
}
#entry .entry {
  background: rgba(255, 255, 255, 0.6);
  padding: clamp(0rem, 2.1vw, 3rem);
  border-radius: 10px;
}
#entry .entry p {
  margin-bottom: 2rem;
}
#entry .entry a {
  text-decoration: underline;
  color: var(--color-green1);
}
@media screen and (max-width: 768px) {
  #entry {
    width: 100%;
  }
  #entry #entry {
    width: 100%;
    margin-bottom: 5rem;
  }
}

/* ------------------------------------
// pager
------------------------------------ */
.pager {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.pager li a,
.pager li span {
  background: var(--color-green3);
  padding: 5px 10px;
  color: #fff;
}
.pager li a.current,
.pager li span.current {
  background: #fff;
  color: var(--color-green3);
}
.pager li a.next, .pager li a.prev,
.pager li span.next,
.pager li span.prev {
  background: none;
  border: none;
  color: var(--color-green3);
}
.pager li a.nolink,
.pager li span.nolink {
  pointer-events: none;
  background: #CCC;
}

/* ------------------------------------
// wp class
------------------------------------ */
div.alignright,
img.alignright,
a.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

div.alignleft,
img.alignleft,
a.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

div.aligncenter,
img.aligncenter,
a.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 20px 0 0;
}

.entrybody::after,
.entry::after {
  content: "";
  clear: both;
  display: block;
}
.entrybody h1,
.entrybody h2,
.entrybody h3,
.entrybody h4,
.entrybody h5,
.entrybody h6,
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6 {
  font-weight: 700;
  margin: 2em 0 1em;
  border: none;
  color: #000;
  line-height: 1.4;
  width: fit-content;
  border-bottom: 1px solid;
}
.entrybody h1,
.entrybody h2,
.entrybody h3,
.entry h1,
.entry h2,
.entry h3 {
  font-size: 2.2rem;
}
.entrybody h4,
.entrybody h5,
.entrybody h6,
.entry h4,
.entry h5,
.entry h6 {
  font-size: 2rem;
}
.entrybody p,
.entry p {
  margin-bottom: 2em;
}
.entrybody p::before,
.entry p::before {
  content: "";
  clear: both;
  display: block;
}
.entrybody ul,
.entry ul {
  margin-bottom: 2em;
}
.entrybody ul li,
.entry ul li {
  padding-left: 1em;
  position: relative;
}
.entrybody ul li::before,
.entry ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.entrybody ol,
.entry ol {
  margin-bottom: 2em;
  counter-reset: number;
}
.entrybody ol li,
.entry ol li {
  padding-left: 1.5em;
  position: relative;
}
.entrybody ol li::before,
.entry ol li::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number) ".";
}
.entrybody #toc_container ul li,
.entry #toc_container ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.entrybody #toc_container ul li::before,
.entry #toc_container ul li::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .aligncenter,
  .alignright,
  .alignleft {
    float: none !important;
    padding: 0 0 20px 0 !important;
  }
}
.notFound {
  text-align: center;
  padding-bottom: 100px;
}
.notFound p + p {
  margin-top: 50px;
}