@charset "utf-8";
/*========= レイアウトのためのCSS ===============*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}
body {
  font-family: 'Zen Old Mincho', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #d4d9dc;
  background-color: #0d0015;
  position: relative;
  min-height: 100%;
}
a {
  text-decoration: none;
  color: #96001c;
  transition: .4s all linear;
}
a:hover {
  color: #d4d9dc;
  filter: blur(2px);
}
img {
  width: 100%;
  height: auto;
}
h2 {
  font-size: 4rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .3em;
}
h3 {
  font-size: 2.1rem;
  font-weight: 600;
}
p {
  padding-bottom: 20px;
}
li {
  list-style: none;
  font-size: 1.8rem;
}

/* ローディング背景画面設定　*/
#loading {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 9999;
  background-color: #0d0015;
  background-image: url("../../images/mirror.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #d4d9dc;
}
#loading img {
  width: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ローディング画像中央配置　*/
#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* poetの大きさ設定　*/
#loading_logo img {
  width: 500px;
}
.blur {
  width: 100%;
  filter: blur(25px);
  animation: blur-anime .7s linear forwards;
}
@keyframes blur-anime {
  100% {
    filter: blur(0);
  }
}

/* HEADER */
.header {
  position: relative;
  z-index: 999;
  color: #d4d9dc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer {
  height: 300px;
}
/* アニメーション設定 */
/*========= スクロールダウンのためのCSS ===============*/
.scroll {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 150px;
  margin: 0 auto;
  z-index: 2;
  padding: 10px 10px 90px;
  overflow-x: hidden;
  color: #d4d9dc;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .2em;
  text-decoration: none;
  text-align: center;
  transition: .4s all linear;
}
.scroll a {
  display: block;
  color: #d4d9dc;
}
.scroll:hover {
  filter: blur(2px);
  color: #96001c;
}
.scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: #d4d9dc;
  animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.contents {
  min-height: calc(var(--vh, 1vh) * 100);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  margin: 0 auto;
}
.wrapper {
  height: calc(var(--vh, 1vh) * 100);
  width: 850px;
  margin-left: 150px;
  text-align: left;
}
.wrapper2 {
  height: calc(var(--vh, 1vh) * 100);
  width: 850px;
  margin: 0 auto;
  margin-right: 150px;
  text-align: end;
}
#home {
  background-image: url("../../images/main.png");
  z-index: 1;
}
.img-wrap {
  min-height: calc(var(--vh, 1vh) * 100);
}
.logo {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
}
.copy {
  width: 125px;
  position: absolute;
  top: 60px;
  right: 150px;
}
.copy-mobile {
  width: 90px;
  position: absolute;
  top: 60px;
  right: 60px;
  opacity: 0;
  visibility: hidden;
}
#outline {
  background-color: #0d0015;
  background-image: url("../../images/lorenabg.png");
  background-position: right;
  background-repeat: no-repeat;
}
.title, .sub-title {
  display: inline-block;
  text-align: left;
}
.title {
  margin-top: 100px;
  padding-bottom: 40px;
}
.sub-title {
  padding-top: 40px;
  padding-bottom: 20px;
}
#outline .title img {
  height: 50px;
  width: auto;
}
#outline .sub-title img {
  height: 25px;
  width: auto;
}
#outline p {
  letter-spacing: -1px;
}
.copy2 {
  padding-bottom: 20px;
}
#retail {
  background-color: #0d0015;
  background-image: url("../../images/dahlia-bg.png");
  background-position: left;
  background-repeat: no-repeat;
}
#retail .title img {
  height: 40px;
  width: auto;
}
#retail .sub-title img {
  height: 40px;
  width: auto;
}
#retail ul {
  padding-bottom: 15px;
}
/*========= ページネーションCSS ===============*/
.pagination {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  z-index: 10;
  list-style: none;
}
.pagination li {
  margin-bottom: 20px;
}
.pagination a {
  display: block;
  height: 20px;
  margin-bottom: 5px;
  color: #d4d9dc;
  position: relative;
  padding: 4px;
  filter: none;
}
.pagination a.active:after {
  box-shadow: inset 0 0 0 5px #96001c;
  ;
  filter: none;
}
/*現在地表示のテキストの設定*/
.pagination a .hover-text {
  position: absolute;
  left: 20px;
  top: -20px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  padding-left: 20px;
  filter: none;
  font-size: 3rem;
  text-transform: lowercase;
  font-family: 'Monsieur La Doulaise', cursive;
}
.pagination a:hover .hover-text {
  opacity: 1;
  filter: none;
}
.pagination a:after {
  -webkit-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  width: 10px;
  height: 10px;
  display: block;
  border: 1px solid #96001c;
  border-radius: 50%;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  left: 10px;
  bottom: 0;
  filter: none;
}
/*1080px以下は現在地表示のテキストを非表示*/
@media screen and (max-width: 1080px) {
  .pagination a .hover-text {
    display: none;
  }
}
@media screen and (max-width: 850px) {
  .pagination a:after {
    left: 0;
  }
}
/* sample */
#sample {
  background-image: url("../../images/sample-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#novel {
  position: relative;
  margin: 0 auto;
}
#sample p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  padding-bottom: 15px;
}
.quote, .quote-right, .letter {
  font-size: 1.8rem;
  font-family: 'Hina Mincho', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif", serif;
  font-weight: 700;
}
.quote-right {
  text-align: end;
  padding-bottom: 30px;
}
#sample .title {
  width: 230px;
  margin-top: 120px;
  padding-bottom: 60px;
}
#sample .letter {
  opacity: .8;
  padding-top: 30px;
  padding-bottom: 30px;
}
[data-ruby] {
  position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.5em;
}
.accent {
  margin: 50px auto;
  width: 50px;
}
.sample-text {
  margin-bottom: 80px;
}
.page {
  display: flex;
  justify-content: space-around;
  height: 150px;
  align-items: flex-start;
}
.page .next {
  width: 100px;
}
.page .top {
  width: 60px;
}
.page .prev {
  width: 90px;
}
#sample .wrapper {
  padding-bottom: 100px;
}
/*＝＝＝＝＝＝＝＝＝＝＝タブレット以下の見え方＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 1399px) {
  #outline {
    background-image: url("../../images/lorena-bg2.png");
  }
  #retail {
    background-image: url("../../images/dahlia-bg2.png");
  }
  .title {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .wrapper, .wrapper2 {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .contents {
    background-attachment: scroll;
  }
  /* ローディング背景画面設定　*/
  #loading {
    background-image: url("../../images/mirror-mobile.png");
  }
  /* ローディング画像中央配置　*/
  #loading_logo {
    transform: rotate(90deg);
  }
  /* poetの大きさ設定　*/
  #loading_logo img {
    width: 500px;
  }
  #home {
    background-image: url("../../images/main-mobile2.png");
    background-position: center;
  }
  #sample {
    background-image: none;
  }
  .logo {
    width: 500px;
  }
  .scroll {
    left: 60px;
  }
  .copy {
    right: 60px;
  }
  .wrapper, .wrapper2 {
    width: 720px;
  }
  .title {
    margin-top: 60px;
  }
  .sub-title {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 800px) {
  #loading_logo img {
    width: 350px;
  }
  .copy {
    display: none;
  }
  .copy-mobile {
    opacity: .8;
    visibility: visible;
  }
  .logo {
    width: 420px;
    bottom: 75px;
  }
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .wrapper, .wrapper2 {
    width: 550px;
  }
  #sample p {
  font-size: 1.6rem;
  line-height: 1.8;
}
  h3, .quote, .quote-right, .letter {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  li {
    font-size: 1.6rem;
  }
  .title {
    padding-bottom: 20px;
  }
  .sub-title {
    padding-top: 35px;
  }
  #outline {
    background-image: url("../../images/lorena-bg3.png");
    background-size: contain;
  }
  #outline .title img {
    height: 40px;
  }
  #outline .sub-title img {
    height: 20px;
  }
  #retail {
    background-image: url("../../images/dahlia-bg3.png");
    background-size: contain;
  }
  #retail .title img {
    height: 30px;
  }
  #retail .sub-title img {
    height: 30px;
  }
  #sample {
  }
  #sample .title {
    margin-top: 80px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .wrapper, .wrapper2 {
    width: 450px;
  }
  .copy-mobile {
    width: 75px;
    right: 30px;
    opacity: 1;
    visibility: visible;
  }
  .logo {
    width: 375px;
    bottom: 100px;
  }
  .scroll {
    left: 30px;
    font-size: 1.6rem;
    padding: 10px 10px 70px;
  }
  .scroll::after {
    height: 55px;
  }
}
@media screen and (max-width: 499px) {
  body {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  p {
    padding-bottom: 10px;
  }
  li {
    font-size: 1.4rem;
  }
  .wrapper, .wrapper2 {
    width: 325px;
  }
  .copy-mobile {
    display: none;
  }
}
@media screen and (max-width: 399px) {
  #loading_logo img {
    width: 325px;
  }
  .wrapper, .wrapper2 {
    width: 290px;
  }
  #outline .copy2 {
    display: none;
  }
  .logo {
    width: 300px;
    bottom: 80px;
  }
}