*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden='until-found'])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}

:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui,sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has( > input:disabled), label:has( + input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: .2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html body {
  font-family: "Noto Sans JP", sans-serif;
  color: #493f37;
  font-size: clamp(13px, 2vw, 17px);
  background-color: #f6f6f6;
}

html body a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: .3s ease;
  color: #222;
}

html body a:hover {
  transition: .3s ease;
  opacity: .7;
}

html body ul {
  list-style: none;
}

html body img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

html body header {
  background: #fff;
  margin: auto;
  text-align: center;
}

html body header a {
  width: 30%;
  max-width: 200px;
  margin: auto;
  padding: 10px;
  display: block;
}

html body .fixed {
  position: fixed;
  right: -10px;
  bottom: -10px;
  background-color: #60968e;
  color: #fff;
  border-top-left-radius: 30px;
  display: grid;
  place-content: center;
  padding: 30px 40px;
  outline: 2px dotted white;
  outline-offset: -8px;
  z-index: 2;
  text-align: center;
}

html body main {
  background: #f6f6f6;
}

html body .flx {
  display: flex;
}

html body .inner {
  max-width: 1000px;
  margin: auto;
  padding: 5% 20px 10%;
}

html body .top_ttl p {
  background: #60968e;
  color: #fff;
  border-radius: 30px;
  padding: 5px 20px;
  font-size: clamp(11px, 2vw, 15px);
}

html body h1 {
  font-size: clamp(24px, 3vw, 35px);
  margin: 20px 0 10px;
  line-height: 1.5;
  color: #222;
}

html body h1 + h2 {
  font-weight: normal;
  font-size: clamp(18px, 3vw, 25px);
  margin-bottom: 25px;
}

html body h3 span img {
  object-fit: contain;
}

html body .txt_center {
  text-align: center;
}

html body .align_center {
  align-items: center;
}

html body .red {
  color: #b34545;
}

html body .hashtag {
  gap: 20px;
}

html body .hashtag li a {
  color: #493f37;
  border: solid 1px #493f37;
  padding: 5px 15px;
  font-size: clamp(11px, 2vw, 15px);
}

html body figure.mv {
  margin: 20px 0 40px;
}

html body figure {
  position: relative;
}

html body figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  padding: 5px 10px;
  font-size: clamp(10px, 2vw, 13px);
}

html body section.reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}

html body section.reverse .sidebar {
  width: 28%;
  max-width: 300px;
  padding: 20px;
  margin-left: 40px;
  height: fit-content;
}

html body section.reverse .sidebar h3 {
  color: #60968e;
  border-bottom: dotted 2px #60968e;
  padding-bottom: 5px;
  letter-spacing: 2px;
}

html body section.reverse .sidebar ul {
  margin: 20px 0;
}

html body section.reverse .sidebar ul li {
  margin-bottom: 20px;
  filter: drop-shadow(1px 2px 2px #ddd);
}

html body section.reverse .sidebar ul li .img {
  width: 100%;
}

html body section.reverse .sidebar ul li .txt {
  background-color: #fff;
  color: #493f37;
  padding: 10px;
  font-size: clamp(10px, 2vw, 13px);
  width: 100%;
}

html body section.reverse .btn {
  background-color: #60968e;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

html body section.reverse .btn .img {
  width: 8%;
  margin-left: 5px;
  max-width: 20px;
}

html body section.reverse article {
  width: 100%;
}

html body section.reverse article .share {
  border-top: solid 1px #493f37;
  border-bottom: solid 1px #493f37;
  padding: 20px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

html body section.reverse article .share li {
  font-weight: 600;
}

html body section.reverse article .share li:nth-child(n+2) {
  width: 5%;
  max-width: 50px;
}

html body section.reverse article .txt {
  padding: 30px 10px 20px;
  line-height: 2;
  text-align: justify;
}

html body section.reverse article .txt .bg {
  background-color: #ddedea;
  padding: 30px;
  filter: drop-shadow(1px 2px 2px #bbd4d0);
}

html body section.reverse article .txt .bg .box {
  background-color: #f6f6f6;
}

html body section.reverse article .txt ol {
  list-style: none;
  padding-left: 20px;
}

html body section.reverse article .txt ol li {
  position: relative;
}

html body section.reverse article .txt ol li:before {
  content: "";
  position: absolute;
  top: 20%;
  left: -16px;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
  width: 6px;
  height: 12px;
  border-right: 3px solid #60968e;
  border-bottom: 3px solid #60968e;
}

html body section.reverse article .same_as_mokuji {
  color: #60968e;
  border-bottom: dotted 3px #60968e;
  padding-bottom: 10px;
  letter-spacing: 3px;
  font-size: clamp(18px, 3vw, 25px);
  margin-bottom: 30px;
}

html body section.reverse article .same_as_mokuji.ttl {
  margin-top: 0;
}

html body section.reverse article h2 {
  line-height: 1.5;
}

html body section.reverse article .mark {
  background: linear-gradient(transparent 60%, #ffff00ad 30%);
  font-weight: bold;
  color: #222;
}

html body section.reverse article .mokuji {
  background-color: #ddedea;
  color: #222;
  padding: 30px;
  filter: drop-shadow(1px 2px 2px #bbd4d0);
}

html body section.reverse article .mokuji h3 {
  color: #60968e;
  border-bottom: dotted 3px #60968e;
  padding-bottom: 10px;
  letter-spacing: 3px;
  font-size: clamp(18px, 3vw, 25px);
}

html body section.reverse article .mokuji ul {
  margin: 20px 0 0;
}

html body section.reverse article .mokuji ul li {
  margin: 10px 0;
}

html body section.reverse article .mokuji ul li a {
  display: flex;
  align-items: center;
}

html body section.reverse article .mokuji ul li a span {
  color: #60968e;
  font-weight: bold;
  font-size: clamp(28px, 3vw, 30px);
  margin-right: 10px;
}

html body section.reverse article .mokuji ul li a p {
  font-weight: bold;
  font-size: clmap(18px, 3vw, 20px) !important;
}

html body section.reverse article .mokuji ul li a .matome {
  white-space: pre;
  letter-spacing: -3px;
  font-size: clamp(18px, 3vw, 25px);
  padding: 3px 10px 3px 5px;
}

html body section.reverse article .mokuji ul li:last-of-type {
  margin-bottom: 0;
}

html body section.reverse article .ttl {
  font-size: clamp(18px, 3vw, 25px);
  border-bottom: dotted 3px #60968e;
  padding-bottom: 10px;
  margin-top: 40px;
  align-items: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

html body section.reverse article .ttl span {
  display: block;
  color: #60968e;
  margin-right: 15px;
  font-size: clamp(40px, 8vw, 65px);
  letter-spacing: -2px;
  transform: scaleY(1.2) translateY(-2px);
}

html body section.reverse article .ttl .matome {
  white-space: pre;
  font-size: clamp(28px, 3vw, 30px);
  letter-spacing: -4px;
  padding: 5px 10px 5px 5px;
}

html body section.reverse article .ttl p {
  color: #222;
}

html body section.reverse article .ttl.other P {
  color: #60968e;
  letter-spacing: 2px;
}

html body section.reverse article .list {
  list-style: inside;
  line-height: 2;
  margin: 20px 0;
  font-weight: 600;
}

html body section.reverse article .list li::marker {
  color: #4c7771;
}

html body section.reverse article .ttl_s {
  color: #222;
  font-weight: 600;
  margin-bottom: 5px;
}

html body section.reverse article .ttl_s span {
  display: inline-block;
  margin-right: 5px;
}

html body section.reverse article .link {
  text-decoration: underline;
  color: #60968e;
}

html body section.reverse article h4 {
  color: #60968e;
  margin: 5px 0;
}

html body section.reverse article .box {
  border: solid 1px;
  padding: 10px 20px 15px;
  margin-top: 10px;
}

html body section.reverse article .bold {
  font-weight: 600;
  color: #222;
}

html body section.reverse article .splide {
  cursor: pointer;
  margin-bottom: 1.5em;
}

html body section.reverse article .splide__pagination {
  bottom: -1.5em;
}

html body section.reverse article .splide__pagination__page {
  background-color: #999999;
}

html body section.reverse article .splide__pagination__page.is-active {
  background-color: #60968e;
}

html body section.reverse article .other_article, html body section.reverse article .other_article2, html body section.reverse article .other_article3, html body section.reverse article .other_article4 {
  margin: 20px 0;
}

html body section.reverse article .other_article li, html body section.reverse article .other_article2 li, html body section.reverse article .other_article3 li, html body section.reverse article .other_article4 li {
  margin-bottom: 20px;
  filter: drop-shadow(1px 2px 2px #ddd);
}

html body section.reverse article .other_article li a, html body section.reverse article .other_article2 li a, html body section.reverse article .other_article3 li a, html body section.reverse article .other_article4 li a {
  align-items: center;
}

html body section.reverse article .other_article li .img, html body section.reverse article .other_article2 li .img, html body section.reverse article .other_article3 li .img, html body section.reverse article .other_article4 li .img {
  width: 30%;
}

html body section.reverse article .other_article li .txt, html body section.reverse article .other_article2 li .txt, html body section.reverse article .other_article3 li .txt, html body section.reverse article .other_article4 li .txt {
  padding: 0;
}

html body section.reverse article .other_article li .icon, html body section.reverse article .other_article2 li .icon, html body section.reverse article .other_article3 li .icon, html body section.reverse article .other_article4 li .icon {
  width: 18%;
  max-width: 20px;
  margin-left: 10px;
}

html body section.reverse article .other_article li .icon img, html body section.reverse article .other_article2 li .icon img, html body section.reverse article .other_article3 li .icon img, html body section.reverse article .other_article4 li .icon img {
  object-fit: contain;
}

html body section.reverse article .other_article li .wrap, html body section.reverse article .other_article2 li .wrap, html body section.reverse article .other_article3 li .wrap, html body section.reverse article .other_article4 li .wrap {
  background-color: #fff;
  color: #493f37;
  font-size: #493f37;
  width: 100%;
}

html body section.reverse article .other_article li .between, html body section.reverse article .other_article2 li .between, html body section.reverse article .other_article3 li .between, html body section.reverse article .other_article4 li .between {
  width: 100%;
  justify-content: space-between;
  padding: 20px;
}

html body section.reverse article .other_article li .center, html body section.reverse article .other_article2 li .center, html body section.reverse article .other_article3 li .center, html body section.reverse article .other_article4 li .center {
  justify-content: center;
}

html body section.reverse article .other_article li .clm, html body section.reverse article .other_article2 li .clm, html body section.reverse article .other_article3 li .clm, html body section.reverse article .other_article4 li .clm {
  flex-direction: column;
}

html body section.reverse article .other_article li .clm .img, html body section.reverse article .other_article2 li .clm .img, html body section.reverse article .other_article3 li .clm .img, html body section.reverse article .other_article4 li .clm .img {
  width: 100%;
  aspect-ratio: initial;
}

html body section.reverse article .other_article li .auto, html body section.reverse article .other_article2 li .auto, html body section.reverse article .other_article3 li .auto, html body section.reverse article .other_article4 li .auto {
  margin: auto;
}

html body section.reverse article .other_article2 {
  justify-content: center;
}

html body section.reverse article .other_article2 li {
  width: 80%;
  margin-bottom: 0;
}

html body section.reverse article .other_article2 li .flx.center {
  padding: 0px 5px;
}

html body section.reverse article .other_article3, html body section.reverse article .other_article4 {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 5px 10px;
}

html body section.reverse article .other_article3 li, html body section.reverse article .other_article4 li {
  width: 48%;
  filter: drop-shadow(1px 2px 2px #ddd);
}

html body section.reverse article .other_article3 li p:not(.txt, .icon), html body section.reverse article .other_article4 li p:not(.txt, .icon) {
  aspect-ratio: 16/9 !important;
  width: 100% !important;
}

html body section.reverse article .other_article3 li .flx.center, html body section.reverse article .other_article4 li .flx.center {
  background-color: #fff;
  padding: 20px;
  align-items: center;
  max-height: 80px;
  height: 11vw;
}

html body section.reverse article .other_article3 li .txt, html body section.reverse article .other_article4 li .txt {
  font-size: clamp(11px, 2vw, 15px);
  line-height: 1.6;
}

html body section.reverse article .other_article li {
  filter: drop-shadow(1px 2px 2px #ddd);
}

html body section.reverse article .other_article li .img {
  width: 20%;
}

html body section.reverse article .other_article4 li {
  width: 32%;
}

html body section.reverse article .other_article4 li .txt {
  font-size: clamp(10px, 2vw, 13px);
  letter-spacing: -.5px;
}

html body section.reverse article .other_article4 li .flx.center {
  height: 15vw;
  max-height: 108px;
}

html body section.reverse article .other_article4 li span.num {
  color: #aaa;
  display: inline-block;
  margin-bottom: 5px;
}

html body footer {
  background-color: #fff;
  text-align: center;
  color: #707070;
  padding: 40px 20px;
  font-size: clamp(10px, 2vw, 13px);
}

html body .pc {
  display: block;
}

html body .sp {
  display: none;
}

html body #archive .inner {
  padding: 6% 20px 5%;
}

html body #archive hr {
  max-width: 1000px;
  margin: auto;
  border: none;
  border-bottom: dotted 3px #60968e;
  outline: none;
}

html body #archive .note,
html body .note .list2025 {
  display: none;
}

html body #articles2025 .note .list2025 {
  display: inline;
}

@media screen and (max-width: 768px) {
  html body .sp {
    display: block !important;
  }
  html body .pc {
    display: none !important;
  }
  html body header a {
    width: 36%;
  }
  html body .hashtag {
    gap: 10px;
  }
  html body h1 {
    margin: 10px 0;
    word-break: keep-all;
  }
  html body section.reverse {
    display: block;
  }
  html body section.reverse article {
    width: 100%;
  }
  html body section.reverse article .mokuji {
    padding: 20px;
  }
  html body section.reverse article h4 {
    text-align: left;
  }
  html body section.reverse article .share {
    gap: 30px;
    flex-wrap: wrap;
    padding: 16px 20px 10px;
  }
  html body section.reverse article .share li:first-of-type {
    width: 100%;
    text-align: center;
    margin-bottom: -20px;
  }
  html body section.reverse article .share li:nth-child(n+2) {
    width: 12%;
  }
  html body section.reverse article .txt {
    padding: 20px 0px 15px;
  }
  html body section.reverse article .txt .bg {
    padding: 20px 15px;
  }
  html body section.reverse article .ttl_s span {
    max-width: 18px;
  }
  html body section.reverse article .ttl_s span img {
    object-fit: contain;
  }
  html body section.reverse article .other_article li, html body section.reverse article .other_article2 li, html body section.reverse article .other_article3 li, html body section.reverse article .other_article4 li {
    margin-bottom: 10px;
  }
  html body section.reverse article .other_article li .between, html body section.reverse article .other_article2 li .between, html body section.reverse article .other_article3 li .between, html body section.reverse article .other_article4 li .between {
    padding: 10px;
  }
  html body section.reverse article .other_article li .icon, html body section.reverse article .other_article2 li .icon, html body section.reverse article .other_article3 li .icon, html body section.reverse article .other_article4 li .icon {
    width: initial;
    max-width: 16px;
  }
  html body section.reverse article .other_article3 {
    margin-top: 0 !important;
  }
  html body section.reverse article .other_article3 li .flx.center {
    padding: 10px;
    height: initial !important;
    max-height: initial !important;
  }
  html body section.reverse article .other_article4 {
    margin-top: 30px !important;
  }
  html body section.reverse article .other_article4 li {
    width: 48%;
  }
  html body section.reverse article .other_article4 li .txt {
    line-height: 1.4;
  }
  html body section.reverse article .other_article4 li .flx.center {
    padding: 10px;
    height: 25vw !important;
    max-height: 90px !important;
  }
  html body section.reverse article .other_article {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  html body section.reverse article .other_article li {
    width: 48%;
  }
  html body section.reverse article .other_article li .flx.wrap {
    display: block;
  }
  html body section.reverse article .other_article li .img {
    width: 100%;
  }
  html body section.reverse .sidebar {
    width: 100%;
    max-width: initial;
    margin: 0 0 50px;
    padding: 0;
  }
  html body section.reverse .sidebar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  html body section.reverse .sidebar ul li {
    width: 48%;
    margin-bottom: 20px;
  }
  html body section.reverse .sidebar ul li .txt {
    height: 18vw;
    max-height: 70px;
  }
  html body section.reverse .sidebar .btn {
    margin-top: 10px;
  }
  html body footer {
    padding: 40px 20px 100px;
  }
  html body .fixed {
    padding: 20px 40px;
  }
}
