@charset "UTF-8";
/*======================================
layout
/*======================================*/
.post-style {
  background: var(--white);
}
.post-style main {
  text-align: left;
  margin: 0 auto;
}
#single aside {
  display: none;
}
@media (min-width: 768px) {
  html, body {
    overflow: visible !important;
  }
  #single article {
    flex: 1;
    margin-right: 5%;
  }
  #single aside {
    display: block;
    width: 30%;
    min-width: 300px;
    margin: 0;
    transition: opacity .4s ease, transform .4s ease;
  }
  #single aside.is-hidden {
    opacity: 0;
    transform: translateY(20px); /* 少し下げると自然 */
    pointer-events: none;
  }
  #single aside {
    align-self: flex-start; /* flex環境の保険 */
  }
  #single aside.is-sticky {
    position: sticky;
    top: calc(5em + 80px);
  }
} /*END query*/
/*======================================
article
/*======================================*/
#single main .thumbnail {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 1em;
  margin: 3em auto;
}
#single main .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/*======================================
rtoc
/*======================================*/
.rtoc-mokuji-content.noto-sans .decimal_ol > .rtoc-item::before, .rtoc-mokuji-content.noto-sans .decimal_ol.level-2 > .rtoc-item::before {
  font-family: "Oswald", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 5px;
}
#single article #rtoc-mokuji-wrapper {
  display: block;
  text-align: center;
}
#single article #rtoc-mokuji-wrapper ol {
  display: inline-block;
}
#single article #rtoc-mokuji-wrapper ol li {
  text-align: left;
}
@media (min-width: 768px) {
  #single aside .rtoc-mokuji-content {
    margin: 0 auto !important;
  }
  #single aside .rtoc-mokuji-content .rtoc-mokuji.level-1 {
    padding: 0 3em 3em !important;
    margin: 0 auto !important;
  }
  #single #rtoc-mokuji-title {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    letter-spacing: 5px;
    font-style: normal;
    padding: 1em 1em 0;
  }
  #single aside #rtoc-mokuji-title span {
    display: block;
    width: 100%;
  }
  #single #rtoc-mokuji-title button {
    display: none;
  }
}
@media screen and (min-width:1024px) {} /*END query*/
/*======================================
single_navi
/*======================================*/
#single_navi {
  text-align: center;
}
#single_navi .post_previous, #single_navi .post_next {
  text-align: center;
  width: calc((100% - 2.5%)/2);
  max-width: 240px;
}
#single_navi .post_next {
  margin-right: 2.5%;
}
#single_navi a {
  position: relative;
  font-size: 90%;
  line-height: 50px;
  display: block;
  text-align: center;
  border: 2px solid transparent; /* ← 必須 */
  border-radius: 50px;
  letter-spacing: normal;
  color: rgb(var(--navy-rgb) / .8);
  background:
    linear-gradient(#fff, #fff) padding-box, var(--grad-cmn) border-box;
}
#single_navi a span {
  text-indent: 0;
  white-space: normal;
  overflow: hidden;
  display: block;
}
#single_navi .post_next a {
  padding-left: 5px;
}
#single_navi .post_previous a {
  padding-right: 5px;
}
#single_navi a:after {
  position: absolute;
  width: 50px;
  line-height: 50px;
  color: rgb(var(--navy-rgb)/.8);
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
#single_navi .post_next a:after {
  content: "\f053";
  left: 0;
}
#single_navi .post_previous a:after {
  content: "\f054";
  right: 0;
}
#single_navi .post_next a:hover:after {
  transform: translateX(-5px);
}
#single_navi .post_previous a:hover:after {
  transform: translateX(5px);
}
@media screen and (min-width:860px) {
  #single_navi .post_previous a, #single_navi .post_next a {
    padding: 0;
  }
} /*END query*/
/*======================================
widget-area
/*======================================*/
.SNS-shere {
  position: relative;
  text-align: center;
  width: 120%;
  margin-left: -10%;
}
.SNS-shere:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(var(--block-rgb)/.5);
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  z-index: 1;
}
.SNS-shere .thumbnail {
  width: 100%;
  height: 100%;
}
.SNS-shere img {
  z-index: 0;
}
.SNS-shere .inner {
  position: relative;
  list-style: none;
  z-index: 2;
  padding: 2em 1em 1.5em;
}
.SNS-shere h4, .SNS-shere p {
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
}
.SNS-shere h4 {
  position: relative;
  font-size: 150%;
  margin-bottom: 0.5em;
}
.SNS-shere h4 img {
  position: unset;
  max-width: 130px;
  width: 40%;
  margin: 0 auto .5em;
  top: auto;
  left: auto;
  transform: none;
}
.SNS-shere p {
  font-size: 90%;
  margin: 1em auto 0.5em;
}
/*======================================
AddToAny Share Buttons
/*======================================*/
#a2a_copy_link_copied {
  background-color: rgba(210, 175, 85, 1) !important;
}