@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Klee+One&family=Zen+Kaku+Gothic+New&display=swap");

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

全ページ共通

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
:root {
  --primary-color: #FF8A80;
  --secondary-color: #ABCDCB;
  --background-color: #E0e0e0;
  --text-color: #000;
  --white-color:#fff;
  --text-gray:#555;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-family: 'Zen Kaku Gothic New', YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  font-size: 1.4rem;
  color: var(--text-color);
  letter-spacing: 2px;
  line-height: 1.8;
  background: var(--background-color);
}
@media screen and (max-width: 415px) {
  body {
    font-size: 1.4rem;
  }
}
a:hover {
  background-color: var(--secondary-color);
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

文字

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
p {
  margin: 20px 0;
  padding-right: 0;
  text-align: justify;
  letter-spacing: 1px;
}
a {
  color: var(--text-color);
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
  letter-spacing: 4px;
}
h2 {
  font-size: 5rem;
  text-align: center;
  padding-top:150px;
  font-family: 'Klee One', cursive;
}
#menu1 h2:first-child{
  padding-top:60px;
  margin-top:20px;
}
@media screen and (max-width: 520px) {
  h2 {
    font-size: 4rem;
  }
}

h3 {
  position: relative;
  font-size: 2.8rem;
  padding-top:70px;
}
@media screen and (max-width: 520px) {
  h3 {
    margin: 20px 0;
    font-size: 2.4rem;
  }
}
h3::after {
  position: absolute;
  bottom: 9px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-color);
}
@media screen and (max-width: 520px) {
  h3::after {
    bottom: 8px;
  }
}
h4 {
  position: relative;
  font-size: 2rem;
  margin: 40px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, var(--white-color)), color-stop(60%, var(--primary-color)));
  background-image: linear-gradient(var(--white-color) 60%, var(--primary-color) 60%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 520px) {
  h4 {
    margin: 30px 0;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

ヘッダー

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
header{
  background: var(--white-color);
  padding-bottom:0;
  margin-bottom:0;
}
.menu {
  list-style: none;
  display: flex;
  padding-top:30px;
  margin:30px auto;
  margin-bottom:0;
}
.menu li {
  position: relative;
  width:19%;
  padding:5px 0;
  border-right:3px solid var(--background-color);
}
.menu li:first-child{
  border-left:3px solid var(--background-color);
}
.menu-child{
  list-style: none;
  position: absolute;
  top: 100%;
  left:0;
  margin-top:0;
  padding:0;
  opacity: 0;
  visibility: hidden;
}
.menu-child li{
  margin:3px 0;
  padding:5px 8px;
  min-width: 200px;
  background-color: var(--background-color);
  z-index: 999;
  text-align: left;
}
.menu-child li:hover{
  background-color: var(--secondary-color);
}
.has-child:hover .menu-child {
  opacity: 1;
  visibility: visible;
}
img[src="logo.png"]{
  max-width:250px;
  padding-top:60px;
}
@media screen and (max-width: 520px) {
.menu{
  padding:0;
}
.menu li {
  width:20%;
}
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

フッター

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
footer{
  text-align: center;
  min-height: 40px;
}
footer a{
  line-height: 40px;
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メイン

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.mainwrapper {
  position: relative;
  padding: 10px;
}
/* PC */
@media screen and (min-width: 1024px), print {
  .mainwrapper {
    max-width: 900px;
    margin: 0 auto;
    padding:10px 60px;
    border-top: none;
    border-bottom: none;
  }
}
main {
  min-height: calc(100vh - 60px - 1.8rem);
  background: var(--white-color);
}
main section{
  width: 100%;
  margin-bottom: 90px;
}

@media screen and (max-width: 1023px) {
  main {
    width: 100%;
  }
  .mainwrapper {
    padding-top: 60px;
  }
}
@media screen and (max-width: 520px) {
  main {
    padding: 40px 20px;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

更新履歴

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.news {
  overflow-y: auto;
  height: 200px;
  border: 0;
  padding-bottom:8px;
  background-color: var(--background-color);
}
.news ul{
  margin-top:8px;
  list-style: none;
}
.news ul li{
  line-height:1.9;
}
.news ul li time, genre{
  padding-right: 1rem;
}
@media screen and (max-width: 520px) {
  .news ul{
    padding-left:15px;
  }
  .news ul li {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0;
  }
}
.news ul li time {
  font-weight: bold;
  color: var(--text-color);
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

小説一覧

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.novelList{
  margin-bottom:70px;
}
ul.novelList li{
  padding:1px 0;
}
ul.novelList li .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--text-color);
}
ul.novelList li .text {
  color: var(--text-gray);
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

小説個別ページ

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.story{
  max-width:900px;
  display:block;
  margin:0 auto;
}
.story section {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom:40px;
}
.story section h2 {
  padding: 80px 0;
}
.story section .after {
  margin: 80px;
}
@media screen and (max-width: 520px) {
  .story section .after {
    margin: 40px;
  }
}
.dash{
  display: inline-block;
  letter-spacing: -0.2rem;
  transform:scale(1.6,0.8);
  margin:0 0.7rem;
}
@media screen and (max-width: 415px) {
  .dash{
    display: inline-block;
    letter-spacing: -0.2rem;
    transform:scale(1.6,0.7);
    margin:0 0.5rem;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

同人誌画像

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.garally{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.garally > div {
  width: calc(50% - 10px);
  margin: 0 10px 25px 10px;
}
.garally > div:first-child, .garally > div:nth-child(1n) {
  margin-left: 0;
}
.garally > div:last-child, .garally > div:nth-child(2n) {
  margin-right: 0;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

装飾

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.center{
  text-align: center;
}