@charset "UTF-8";
body {
  background-color: #ff008e;
}

.scroll {
  position: fixed;
  right: 30px;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 13px;
  flex-direction: column;
  align-items: center;
  display: none;
  z-index: 99;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .scroll {
    display: flex;
    bottom: min(124px, 22%);
  }
}
.scroll.is-up {
  flex-direction: column-reverse;
  cursor: pointer;
}
.scroll.is-up svg {
  transform: rotate(-90deg);
  position: relative;
  top: 0;
  transition: top 0.3s ease;
}
.scroll.is-up:hover svg {
  top: -6px;
  transition: top 0.3s ease;
}
.scroll svg {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.scroll.fade {
  opacity: 0;
}

.journal {
  position: relative;
  margin-bottom: 257px;
}
@media screen and (max-width: 767px) {
  .journal {
    margin-bottom: 151px;
  }
}
.journal__copyright {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  z-index: 10;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1230px) {
  .journal__copyright {
    display: block;
  }
}
.journal__copyright-text {
  font-size: 1.1rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
  color: #0d0d0d;
}
@media (max-width: 1360px) {
  .journal__copyright-text {
    /* 幅1360px以下の場合の非表示 */
    display: none;
  }
}
@media (max-height: 660px) {
  .journal__copyright-text {
    /* 高さ660px以下の場合の非表示 */
    display: none;
  }
}