
      .kr-block {
        display: flex;
        flex-direction: row;
        justify-content: center;
        overflow-x: hidden;
      }
      .kr-content {
        width: 100%;
        max-width: 480px;
        margin: auto;
        min-height: 100vh; /*仮要素*/
        height: auto;
        padding: 0 2.2rem 4rem 2.2rem;
        position: relative;
        z-index: 1;
        transition: 1s ease;
      }
      .kr-content.is_hero {
      }
      .kr-content::before {
        border-width: 0 2px 0 2px;
        border-style: dashed;
        position: absolute;
        content: '';
        top: 0;
        left: 4px;
        height: calc(100% - 8px);
        width: 480px;
        border-color: rgba(255,255,255,0.3);
        pointer-events: none;
      }
      body {
      }
      img {
        max-width: 100%;
      }

      figure {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
      }
      figure.is-float-right {
        position: absolute;
        left: 100%;
        width: 100%;
        padding: 1rem;
      }
      figure img, .carousel-inner {
        border-radius: 48px;
      }
      figure p {
        font-size: 0.8em;
        width: 66.67%;
        padding-top: 1.5rem;
      }

      p, figure {
        margin-bottom: 2rem;
      }

      h2, h4 {
        margin-bottom: 2rem;
      }

      p, li {
        font-size: 0.9rem;
        font-family: "Zen Old Mincho", "PT Serif", serif;
        line-height: 2;
        font-weight: 100;
        text-align: justify;
        letter-spacing: 0.2;
        color: #a98c4b;
      }

      h1 {
        font-family: "Zen Old Mincho", "PT Serif", serif;
        font-size: 2rem;
        font-weight: 200;
        color: #a98c4b;
      }

      h2 {
        font-family: "Zen Old Mincho", "PT Serif", serif;
        font-weight: 200;
        font-size: 2rem;
        text-align: justify;
        line-height: 1.2;
      }

      h4 {
        font-family: "Zen Old Mincho", "PT Serif", serif;
        font-weight: 200;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #a98c4b;
      }

      h3 {
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.6;
        font-family: "Zen Old Mincho", "PT Serif", serif;
        line-height: 1.1;
      }

      .kr-heading {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        font-size: 4em;
        margin-bottom: 4rem;
      }
      .kr-heading span {
        line-height: 1;
        position: relative;
      }
      .kr-heading > .pseudo {
        width: 80%;
        height: 1px;
        background-color: #000;
      }
      .kr-heading span > .pseudo {
        position: absolute;
        right: 0;
        bottom: calc(100% + 0px);
        width: 100%;
        content: "";
        font-size: 1rem;
        aspect-ratio: 51.26 / 14.48;
        background-color: black;
        mask-position: bottom;
        mask-repeat: no-repeat;
      }
      .kr-band {
        position: fixed;
        top: 0;
        width: 16px;
        height: 100vh;
        background-size: 100% auto;
        opacity: 0.6;
      }
      .kr-band_left {
        left: 8px;
      }
      .kr-band_right {
        right: 8px;
      }
      .kr-background {
        width: 100%;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        box-sizing: border-box;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        color: #000;
        transition: 0.5s ease;
        background-color: #fff;
      }
      .kr-background_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 1.1;
        background-size: cover;
        background-repeat: no-repeat;
        background-blend-mode: soft-light;
        width: calc(50% - 240px);
        height: 100%;
        position: relative;
      }
      .kr-background_backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(4px);
        z-index: -1;
      }
      .kr-background_content {
        width: 100%;
        display: flex;
        justify-content: center;
      }
      .kr-background_content h3 {        
          -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
          line-height: 1.6;
          font-size: 1.4rem;
      }
      .kr-background_inner h2::after {
        content: '';
      }
      .kr-background.active {
        opacity: 1;
      }
      .kr-topic {
        padding: 2em;
        font-size: 0.9rem;
        position: relative;
        border: 1px dashed #fff;
        margin: 4rem 2rem;
      }
      .kr-topic p {
        margin: 0;
      }

.kr-vignette {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.2), inset 0 0 300px rgba(0, 0, 0, 0.1);
}

/* 右側のページング starts */
.kr-shiori {
    display: flex;
    flex-direction: row;
    justify-content: center;
    transition: 0.5s ease;
}
.kr-shiori.fade-out {
  opacity: 0;
}
.kr-shiori span {
    transform: translate(-50%,-50%);
    transition: 0.5s ease;
    margin: 0 0.2rem;
    opacity: 0.5;
    position: relative;
}
.kr-shiori a {
  color: inherit;
  text-decoration: none;
}
.kr-shiori span .pseudo {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transition: 0.1s;
}
.kr-shiori span.active {
    display: block;
    transform: translate(-50%,-50%) scale(1.2);
    font-weight: 800;
    opacity: 1;
    margin: 0 0.75rem;
}
.kr-shiori span.active .pseudo {
  transform: translateX(-50%) scaleX(1);
}
/* 右側のページング ends *

/* 切り抜き starts */

.kr-kirinuki {
    position: absolute;
    z-index: 1;
    height: 220px;
    width: auto;
}
.kr-kirinuki_right {
    left: 80%;
}
.kr-kirinuki_left {
    right: 80%;
}
/* 切り抜き ends */

/* */
.is-entrance {
  animation-name: anim-entrance;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

@keyframes anim-entrance {
    0% {
      opacity: 0;
      filter: blur(14px);
      transform: translateY(0) scale(0, 1.5);
    }
    25% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0) scale(1, 1);
    }
}

/* carousel override */
.carousel-indicators {
  position: relative;
  margin-top: 1rem;
}
.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 4px !important;
  border-width: 0 !important;
}

.carousel-inner {
  position: relative;

}
.carousel-item span {
  position: absolute;
  font-size: 0.75rem;
  border-radius: 24px;
  padding: 0.5rem 1rem;
  background-color: rgba(255,255,255,0.8);
}
.carousel-item span.start-0 {
  left: 24px !important;
}
.carousel-item span.end-0 {
  right:24px !important;
}
.carousel-item span.top-0 {
  top: 16.67% !important;
}
.carousel-item span.bottom-0 {
  bottom: 16.67% !important;
}

/* ページ内　アンカーリング */

[id^="anchor-"], [id*=" anchor-"] {
    margin-top: -60px;
    padding-top: 60px;
}

/* TOP戻る */

#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 36px;
  bottom: 0;
  opacity: 0.6;
  z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top:hover a::before {
  animation: pagetop-flip 0.4s ease forwards;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  text-shadow: 0 0 4px rgba(0,0,0,0.3);
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 4px rgba(0,0,0,0.8);
}
@keyframes pagetop-flip {
  0% 100% { transform: scaleX(1) translateY(0) }
  50% { transform: scaleX(0) translateY(-25%) }
}

@media screen and (max-width: 992px){
  #page_top {
    right: 0;
  }
  .kr-background_inner {
    width: calc(100vw - 400px);
    background-position-x: center;
  }
  .kr-content:not(.is_hero) {
    margin-left: auto;
    margin-right: 0;
    max-width: 400px;
  }
  .kr-content::before {
    display: none;
  }
  .kr-band {
    width: 12px;
  }
  .kr-band_left {
    left: 4px;
  }
  .kr-kirinuki {
    height: 180px;
  }
  .kr-kirinuki_left {
    left: 3%;
  }
  .kr-kirinuki_right {
    left: 3%;
  }
  .kr-kirinuki_left.is-hero {
    right: 78% !important;
    left: auto;
  }
  .kr-kirinuki_right.is-hero {
    left: 78% !important;
    right: auto;
  }
}

/* BOOTSTRAP */

.btn {
  position: relative;
}
a {
  text-decoration: none;
}
.btn .pseudo {
  border-width: 0 0 2px;
  border-style: dotted;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: calc(100% + 4px);
  border-radius: 8px;
}
.btn:hover {
  transform: translateY(6px);
  font-weight: 400;
}
.btn:hover .pseudo {
  transform: translateX(-50%) translateY(-6px);
  border-width: 0;
}