@charset "UTF-8";
/* Scss Document */
html {
  font-size: 62.5%; }

/*------------------------------------------------------------
　共通
------------------------------------------------------------*/
body {
  font-family: YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  font-size: 1.4rem;
  font-weight: 100;
  color: #252525;
    background-color: #e5e4e6; 
  line-height: 1.6;
  letter-spacing: 1px; }
  @media screen and (max-width: 1023px) {
    body {
      padding: 0 10px;
      width: 100%; } }

#rounded-box {
  width: 500px;
  height: 500px;
  border-radius: 10px;
  background-color: lightgray;
  display: grid;
  justify-content: center;
  align-items: center;
}

/*文字*/
txt {
   font-family:"Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
   font-size: xx-large;
 letter-spacing: 2px;
}

example6{
    color:f6ad49;;
}

p {
  margin: 32px 0; }
  @media screen and (max-width: 1279px) {
    p {
      margin: 24px 0; } 
 }

a {
  position: relative;
  transition: 0.2s;
  color: #252525; }

 a:hover {
    color: #fcc800;
    transition: 1.2s;
    }*/

.cp_link {
  position: relative;
  padding: 2px;
  color: #fff;
  z-index: 0;
  transition: .5s ease-in-out .1s;/*テキストは0.1遅れて色が変わる*/
}
/*hover後の表示*/
.cp_link::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fcc800;
  z-index: -1;
  transition: .2s;
}
.cp_link:hover {
  color: #fff;/*hover時の色*/
}
.cp_link:hover::after {
  width: 100%;/*hover時*/
}

.cp_link2 {
  position: relative;
  padding: 2px;
  color: #252525;
  z-index: 0;
  transition: .5s ease-in-out .1s;/*テキストは0.1遅れて色が変わる*/
}
/*hover後の表示*/
.cp_link2::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fcc800;
  z-index: -1;
  transition: .2s;
}
.cp_link2:hover {
  color: #252525;/*hover時の色*/
}
.cp_link2:hover::after {
  width: 80%;/*hover時*/
}

h1, h2, h3, h4, h5 {
  font-family: 'Julius Sans One','Noto Sans JP',"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  letter-spacing: 2px; }

h2 {
  position: absolute;
  top: -16px;
  left: 240px;
  font-size: 3rem;
  margin: 24px 0 16px;
  background: #252525;
  color: #fff;
  width: 800px;
  padding-left: 80px;
  transform: rotate(-15deg);
  z-index: -3; }
  @media screen and (max-width: 1279px) {
    h2 {
      top: -10px;
      left: -20px;
      font-size: 2rem;
      width: 380px;
      padding-left: 40px; } }

h3 {
  position: relative;
  font-size: 2.4rem;
  margin: 0px 0 24px;
  padding-left: 24px; }
  h3::before {
    position: absolute;
    left: 0;
    top: calc(50% - 8px);
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 8px solid transparent;
    border-left-color: #202f55;
    border-left-width: 14px; }
  @media screen and (max-width: 1023px) {
    h3 {
      font-size: 1.8rem; } }

h4 {
  position: relative;
  font-size: 1.8rem;
  margin: 0px 0 24px;
  padding-left: 24px; }
  h4::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 16px;
    height: 14px;
    border-bottom: 1px dashed #252525; }
  @media screen and (max-width: 1023px) {
    h4 {
      font-size: 1.6rem; } }

h5 {
    position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background: #fcc800;
}

h5:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #fff;
}

em {
  text-decoration: underline;
  font-style: normal; }

ul, ol, dl {
  margin: 24px 0; }
  ul li, ol li, dl li {
    margin: 8px 0; }

.textlink01 a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 10px;
	background-color: rgba(185,155,0,0.5);
	transition: width 0.3s;
}

.textlink03 a:hover::after {
	width: 100%;
}

/*フォーム　ボタン*/
input, textarea {
  border: none;
  border: 1px solid #252525;
background: #d3d3d8;}

input[type="submit"] {
  cursor: pointer; }

.btn {
  background-color: #252525;
  border: 1px solid #252525;
  margin: 10px 0;
  color: #fff;
  transition: 0.2s;
  text-decoration: none;
  letter-spacing: 2px; }
  .btn:hover {
    background: #fcc800;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s; }

a.btn {
  padding: 4px 10px; }


/*レイアウト*/

.top-banner{
	display: flex;
	flex-wrap:wrap;
}
.top-banner li {
	width: calc(100%/2);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.top-banner li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
	border:solid 1px #000; /*←画像を1pxのグレーの枠線で囲む指定の場合*/
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.grid {
  display: grid;
  grid-template-columns: auto 1fr; }

ul.yoko {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px; }
  ul.yoko li {
    margin-right: 16px; }
    ul.yoko li:last-child {
      margin-right: 0; }

ul.yoko2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px; }
  ul.yoko li {
    margin-right: 20px; }
    ul.yoko li:last-child {
      margin-right: 20; }

/*装飾*/
.arrow{
	border: 2px solid #252525;
	border-right: none;
	border-bottom: none;
	width: 8px;
	height: 8px;
}

.label-double {
  display: inline-block;
  position: relative;
  padding: 5px 8px 4px;
  background: #202f55;
  color: #fff;
  font-family: 'Julius Sans One','Noto Sans JP',"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  margin-bottom: 24px;
  width: auto; }
  .label-double::after {
    position: absolute;
    top: -3px;
    left: -3px;
    content: "";
    display: block;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 1px solid #202f55; }

.label dt, .label dd {
  padding: 4px 8px;
  margin-bottom: 8px;
  margin-right: 40px; }
.label dt {
  background-color: #202f55;
  color: #fff;
  text-decoration: none; }

.hr {
  margin-bottom: 80px; }

/*---------------------------------
2カラム
---------------------------------*/
.wrapper {
  flex-wrap: nowrap; }
	/*左　メニュー*/
  .wrapper .left {
    position: fixed;
    left: 40px;
    padding: 0 40px;
    width: 240px;
    height: 100vh;
    color: #fff; }
    @media screen and (max-width: 1279px) {
      .wrapper .left {
        left: auto;
        right: -320px;
        width: 320px;
        transition: 0.3s;
        z-index: 8; }
        .wrapper .left.active {
          transform: translateX(-320px);
          transition: 0.3s; } }
    .wrapper .left::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 240px;
      height: 100vh;
      background: linear-gradient(to bottom, #252525, rgba(14, 4, 4, 0) 90vh), url("../img/menu-bg.jpg") no-repeat center bottom;
      background-size: cover;
      z-index: -2; }
      @media screen and (max-width: 1279px) {
        .wrapper .left::before {
          width: 320px; } }

 .wrapper .left2 {
    position: fixed;
    left: 40px;
    padding: 0 40px;
    width: 240px;
    height: 100vh;
    color: #fff; }
    @media screen and (max-width: 1279px) {
      .wrapper .left2 {
        left: auto;
        right: -320px;
        width: 320px;
        transition: 0.3s;
        z-index: 8; }
        .wrapper .left.active {
          transform: translateX(-320px);
          transition: 0.3s; } }
    .wrapper .left2::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 240px;
      height: 100vh;
      background: url("../img/top-bg.jpg") ;
      background-size: cover;
      z-index: -2; }
      @media screen and (max-width: 1279px) {
        .wrapper .left2::before {
          width: 320px; } }


/*右　コンテンツ*/
  .wrapper main {
    padding: 120px 80px 0 540px; }
    @media screen and (max-width: 1279px) {
      .wrapper main {
        padding: 120px 8px 40px; } }

/*---------------------------------
サイト名
---------------------------------*/
header h1 {
  margin: 50px 0;
  color: #fff; }

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

LINK

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.linklist__item a {
 text-decoration: none;
}

img.example1 {
width: 30px;
height: 30px;
}
/*---------------------------------
メニュー
---------------------------------*/
/*メニューボタン*/
.menubtn {
  position: fixed;
  top: 40px;
  right: 0;
  display: inline-block;
  background-color: #fcc800; 
  color: #fff;
  padding: 8px;
  border-radius: 8px 0 0 8px;
  z-index: 7;
  transition: 0.3s; }
  @media screen and (min-width: 1280px) {
    .menubtn {
      display: none; } }
  .menubtn p {
    margin: 0; }
  .menubtn.active {
    transform: translateX(-318px);
    transition: 0.3s;
    background-color: #fcc800;
    color: #fff;
    border-right-color: #fff; }

/*メニュー*/
nav .menu > li {
  letter-spacing: 4px;
  margin-bottom: 32px; }
  nav .menu > li a {
    color: #fff;
    text-decoration: none; }
  nav .menu > li ul {
    margin: 0;
    margin-left: 24px;
    padding: 0;
    height: calc(30px * 2 - 16px);
    /*４をnovelのカテゴリーの数に変えてください*/
    padding-left: 24px;
    border-left: 1px dashed #fff; }
    nav .menu > li ul li {
      position: relative;
      margin-top: 8px;
      list-style: none; }
      nav .menu > li ul li::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: -24px;
        width: 16px;
        height: 16px;
        border-bottom: 1px dashed #fff; }

/*小説、オフライン　目次ボタン*/
.mokujibtn {
  position: fixed;
  top: 84px;
  right: 0;
  display: inline-block;
  background-color: #fcc800;
  color: #fff;
  padding: 8px;
  border-radius: 8px 0 0 8px;
  z-index: 9;
  transition: 0.3s; }
  @media screen and (min-width: 1280px) {
    .mokujibtn {
      display: none; } }
  .mokujibtn p {
    margin: 0; }
  .mokujibtn.active {
    transform: translateX(-218px);
    transition: 0.3s;
    background-color: #fff;
    color: #fcc800;
    border: 1px solid #252525;
    border-right-color: #fff; }

/*------------------------------------------------------------
　コンテンツ
------------------------------------------------------------*/
main section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #252525; }
  @media screen and (max-width: 1279px) {
    main section {
      margin-bottom: 40px; } }

/*-------------------- up date --------------------*/
.update ul {
  margin-left: 24px;
  padding: 0;
  height: calc(30px * 5 - 10px);
  padding-left: 24px;
  border-left: 1px dashed #252525;
     background: #d3d3d8;
  overflow: scroll }
  .update ul li {
    position: relative;
    margin-top: 10px;
    list-style: none; }
    .update ul li time {
      margin-right: 40px; }
      @media screen and (max-width: 1279px) {
        .update ul li time {
          display: block; } }
    .update ul li::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: -24px;
      width: 12px;
      height: 12px;
      border-bottom: 1px dashed #252525; }

.update ul::-webkit-scrollbar{
    display: none;}

/*-------------------- mail --------------------*/
.mail dl dt {
  margin: 2px;
  margin-right: 16px;
}
.mail textarea {
  width: 100%;
  height: 100px;
  background: #d3d3d8;}


/*------------------------------------------------------------
　novel
------------------------------------------------------------*/
  .novel h3 a {
    text-decoration: none; }

/*小説カテゴリーごとメニュー*/
  .novel .novel-menu {
    position: fixed;
    top: 0;
    left: 288px;
    width: 220px;
    height: 100vh;
    border-left: 1px solid #252525;
    border-right: 1px solid #252525;
    padding: 170px 40px 40px 40px;
    overflow: auto;
    z-index: 10; }
    .novel .novel-menu dl dt {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 8px;
      margin-bottom: 24px;
      border-bottom: 2px solid #252525;
      font-weight: 700;
      cursor: pointer; }
      .novel .novel-menu dl dt .arrow {
        display: inline-block;
        transform: rotate(-135deg); }
    .novel .novel-menu dl dd {
      display: none;
      margin-bottom: 24px; }
      .novel .novel-menu dl dd a {
        display: block;
        text-decoration: none; }
    @media screen and (max-width: 1279px) {
      .novel .novel-menu {
        left: auto;
        right: -220px;
        padding-top: 80px;
        background: #fff;
        transition: 0.3s; }
        .novel .novel-menu.active {
          transform: translateX(-220px);
          transition: 0.3s; } }

/*-------------------- タイトル一覧ページ --------------------*/
  .novel section h4 {
    padding-left: 24px; }
    .novel section h4::before {
      display: none; }
    .novel section h4::after {
      content: "";
      display: block;
      position: absolute;
      top: 10px;
      left: 0;
      width: 100%;
      height: 15px;
      background: #fcc800;
      z-index: -1; }

  .novel section .noveltitle {
    position: relative;
    display: inline-block;
    padding-left: 24px; }
    .novel section .noveltitle:not(:first-of-type) {
      margin-top: 40px; }
    .novel section .noveltitle::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 16px;
      height: 12px;
      border-bottom: 1px dashed #252525; }

	/*タイトルと説明を並べる場合*/
  .novel section .wrapper dl {
    margin: 00;
    width: 100%; }
    .novel section .wrapper dl dt {
      margin-right: 20px; }
      .novel section .wrapper dl dt a {
        text-decoration: none; }
    .novel section .wrapper dl dd {
      color: #202f55; 
margin-right: 60px;}
　　　.novel section .wrapper sp{
          margin-left: 20px; } }
  @media screen and (max-width: 1279px) {
    .novel section .wrapper {
      display: block; }
      .novel section .wrapper dl {
        width: 100%;
        display: block; }
        .novel section .wrapper dl dd {
          margin-left: 20px; } }

	/*タイトルのみ並べる場合*/
  .novel section .enum {
    margin: 0; }
    .novel section .enum li {
      display: inline-block;
      margin: 0 8px 0 0; }
      .novel section .enum li a {
        text-decoration: none; }
      .novel section .enum li:not(:last-of-type)::after {
        content: "/";
        margin-left: 8px; }

	/*カップリングなど見出し*/
  .novel section .cp {
    border: 0;
    margin-bottom: 40px; }

/*--------------------まんが------------------*/

.comicpage  {     
      text-align: center;
/* スマホ 767px以下 */
@media only screen and (max-width: 767px){
  img{
    width: 100%;
    height: auto;
  }
}
/* pc 768px以上 */
@media only screen and (min-width: 768px), print {
  img{
    width: 800px;
    height: auto;
  }
}
}

/*－－－－－－－－－－ 連載一覧 －－－－－－－－－－*/
.cardlist a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cardlist {
    gap: 10px;
  }
}
.cardlist .cardlist__item {
  width: calc((50% - 0px) / 2);
}
.cardlist .cardlist__item a .cardlist__img {
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .cardlist .cardlist__item {
    width: calc((100% - 0px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .cardlist .cardlist__item {
    width: calc((100% - 10px) / 2);
    a {
     .cardlist__img {
      height: 100px;
     }
    }
  }
}

/*-------------------- 小説ページ --------------------*/
.page-novel section {
  margin: 40px auto;
  width: 90%;
  max-width: 800px; }
.page-novel .title h2 {
  position: static;
  background: none;
  color: #252525;
  transform: none;
  padding: 80px 0;
  width: auto; }
  .page-novel .title h2:first-letter {
    font-size: 5rem;
    color: #fcc800; }
  @media screen and (max-width: 1279px) {
    .page-novel .title h2 {
      padding: 60px 0; } }


/*------------------------------------------------------------
　offline
------------------------------------------------------------*/
/*オフライン　カテゴリーごとメニュー*/
.offline .offline-menu {
  position: fixed;
  top: 0;
  left: 288px;
  width: 220px;
  height: 100vh;
  border-left: 1px solid #252525;
  border-right: 1px solid #252525;
  padding: 170px 40px 40px 40px;
  overflow-y: auto;
  z-index: 10; }
  .offline .offline-menu dl dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #252525;
    font-weight: 700;
    cursor: pointer; }
    .offline .offline-menu dl dt .arrow {
      display: inline-block;
      transform: rotate(-135deg); }
  .offline .offline-menu dl dd {
    display: none;
    margin-bottom: 24px; }
    .offline .offline-menu dl dd a {
      display: block;
      text-decoration: none; }
  @media screen and (max-width: 1279px) {
    .offline .offline-menu {
      left: auto;
      right: -220px;
      background: #fff;
      transition: 0.3s; }
      .offline .offline-menu.active {
        transform: translateX(-220px);
        transition: 0.3s; } }

/*-------------------- 同人誌一覧ページ --------------------*/
.offline .doujin-list section {
  border: none; }
.offline .doujin-list .grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px; }
  @media screen and (max-width: 1279px) {
    .offline .doujin-list .grid {
      display: block; } }

	/*個別*/
  .offline .doujin-list .grid .doujin-item {
    margin-bottom: 40px; }
    .offline .doujin-list .grid .doujin-item .title {
      display: block;
      font-size: 1.8rem;
      margin: 24px 0; }
    .offline .doujin-list .grid .doujin-item .grid {
      gap: 8px; }
      .offline .doujin-list .grid .doujin-item .grid li {
        margin: 0; }
        .offline .doujin-list .grid .doujin-item .grid li .btn {
          display: block;
          width: 100%;
          text-align: center;
          margin: 0; }
        @media screen and (max-width: 1279px) {
          .offline .doujin-list .grid .doujin-item .grid li {
            margin-bottom: 4px; } }



/*------------------------------------------------------------
　クレジット
------------------------------------------------------------*/
footer {
  position: absolute;
  bottom: 8px;
  right: 8px;
  text-align: right; }
  footer small {
    display: inline-block;
    line-height: 1.2;
    opacity: 0.5; }
    footer small a {
      color: #fff; }
