@charset "UTF-8";

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: 'Klee One', 'Noto Sans JP',"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif", cursive;
  font-size: 1.6rem;
  color: #f4ffff;
  line-height: 1.6;
  letter-spacing: 2px;
  height: 100%;
  
}

/*文字*/
p {
  margin: 24px 0;
}

a {
  color:#333;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

h1, h2, h3, h4 {
  font-family: 'La Belle Aurore', YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
  font-weight: normal;
}

h2 {
  font-size: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 64px 0 32px;
}

h2::before, h2::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #c691ad;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

h2::before {
  margin-right: 2rem;
}

h2::after {
  margin-left: 2rem;
}

h3 {
  display: inline-block;
  font-size: 2.4rem;
  margin: 40px 0 24px;
}

h3::after {
  content: '';
  display: block;
  margin-top: -1.7rem;
  width: 100%;
  border-bottom: 1px solid #c691ad;
}

h4 {
  margin: 40px 0 24px;
  font-size: 1.8rem;
}

em {
  text-decoration: underline;
  font-style: normal;
}

/*リスト*/
ul, ol, dl {
  margin: 24px 0;
}

ul {
  list-style: none;
}
/*グリッドリスト*/
.gridlist {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
}

.gridlist dt, .gridlist dd {
  border-bottom: 1px solid #fff;
  margin-bottom: 8px;
  padding: 4px;
}

.gridlist dt {
  padding-right: 24px;
}

.linebox {
  border-left: 1px solid #c691ad;
  padding-left: 24px;
}


.blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -98;
  /*すりガラス用プロパティ*/
  backdrop-filter: blur(6px);
  /*ベンダープレフィックス*/
  -webkit-backdrop-filter: blur(6px);
}
/*---------------------------------
ヘッダー
---------------------------------*/
.site-title {
  width: 100%;
  height: 100px;
  text-align: center;
}

.site-title {
  text-shadow: 0px 0px 8px #897277;
  color: #fff;
}

/* header (navigation)*/
a {
  text-decoration: none;
}

ul {
  list-style: none;
}


.header {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
}


/* クラスfixedが付与されたときのヘッダー背景色を指定 */
.header.fixed {
  background: rgba(255, 255, 255, 0.9);
}

/* 上部に固定させるスタイルを用意 */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-nav-list {
  display: flex;
  justify-content: space-between;
padding-right: 40px;
}

.header-nav-item-link {
  display: block;
  color: #333;
  height: 70px;
  line-height: 70px;
}

/* クラスfixedが付与されたときのヘッダーの高さを指定 */
.fixed .header-nav-item-link {
  height: 25px;
  line-height: 25px;
}


main {
  padding: 1px 64px 50px 64px;
  background-color: rgba(255, 255, 255, 0.8);
width: auto;
}

.multi-column {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-around;
}

/*ボックス*/
.titlebox {
  border: 1px solid #c691ad;
  margin: 20px 10px 20px 10px;
width: 95%;
  padding: 30px;
  position: relative;
  border-radius: 10px;
  vertical-align: middle;
}

.titlebox h3 {
  position: absolute;
  top: -2.4rem;
  left: 0;
  margin: 0;
}

.titlebox h3::after {
  display: none;
}

.titlebox:nth-child(1) {
  order: 1
}

.titlebox:nth-child(2) {
  order: 3
}

.titlebox:nth-child(3) {
  order: 2
}

.titlebox:nth-child(4) {
  order: 4
}

/*---------------------------------
フッター
---------------------------------*/
footer {
  text-align: center;
  margin: 24px auto;
}

footer small {
  color: #fff;
  padding: 16px 0;
  text-shadow: 0px 0px 8px #897277;
}

footer small a {
  color: #fff;
}

/*---------------------------------
　メイン　コンテンツ
---------------------------------*/
/*Novel*/
.novel .list li {
  margin-bottom: 8px;
}

.novel .list span {
  margin-right: 24px;
}

.novel .list span a {
  text-decoration: none;
  color: #c691ad;
  font-weight: bolder;
}


.index a {
  text-decoration: none;
}
.index a:hover {
  text-decoration: underline;
}
