@charset "UTF-8";

/* ==========================================
  ベースCSS
  ========================================== */
html {
  font-size: 16px; /* ブラウザのデフォルトに合わせる */
}

body {
  font-size: 1rem; /* ＝16px */
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  color: #000000;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -0.125em;
}

/* ==========================================
  デザイン
   ========================================== */
body {
  background-size: auto auto;
  background-color: #3D2B30;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 0.3125rem, rgba(0, 0, 0, 0.26) 0.3125rem, rgba(0, 0, 0, 0.26) 0.375rem);
  /* 以上の3行が背景のストライプです。
     background-colorがベース色、background-imageが縞の色を制御しています。
     ストライプの色や太さを変えたい場合は、
     https://css-stripe-generator.firebaseapp.com/　で作ったCSSを上書きするといいです。
   */
  font-family: YuGothic,'Yu Gothic','TsukuBRdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Cambria Math','Avenir',sans-serif;
}

dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

dl dd,
dl dt {
  display: block;
}

.container {
  background: #fff;
  /* コンテンツの背景色 */
}

a {
  text-decoration: none;
  color: #ba4165;
  /* リンクの色 */
}

a:hover {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
  /* リンクをホバーすると色が明るくなります */
}

p,
ul {
  font-size: 0.875rem;
  padding-left: 1.25rem;
  padding-right: 1.875rem;
}

.bold {
font-weight:bold;
}

@media (max-width: 575px) {
  p,
  ul {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

h4 {
  padding-left: 0.625rem;
}

.margin-top {
  margin-top: 1.875rem;
}

.margin-bottom {
  margin-bottom: 1.875rem;
}

img {
  max-width: 100%;
}

img + img {
  margin-left: 0.3125rem;
}

h2 {
  font-size: 130%;
  font-weight: normal;
  margin: 1.25rem 0.3125rem;
  width: 95%;
}

h2:after {
  content: '';
  display: block;
  width: 100%;
  position: relative;
  top: 0.1875rem;
  height: 0.3125rem;
  /* ここから見出しの下線のストライプ */
  background-size: auto auto;
  background-color: #ebe3de;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 0.3125rem, white 0.3125rem, white 0.375rem);
  /* ここまで見出しの下線のストライプ */
}

@media (max-width: 575px) {
  h2 {
    font-size: 110%;
  }
}

.row > h2 {
  padding-left: 1.9375rem;
  padding-right: 0.9375rem;
}

h3 {
  font-weight: normal;
  font-size: 100%;
  display: block;
  margin: 1.875rem auto 0.9375rem 0.9375rem;
  width: 80%;
}

h3:before {
  content: '';
  display: block;
  float: left;
  width: 0.375rem;
  height: 1.875rem;
  position: relative;
  top: 0;
  right: 0.8125rem;
  /* ここから見出しの下線のストライプ */
  background-size: auto auto;
  background-color: #ebe3de;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 0.3125rem, white 0.3125rem, white 0.375rem);
  /* ここまで見出しの下線のストライプ */
}

h3.past {
  margin-top: 0.5rem !important;
}

input[type=submit] {
  /* ここから背景のストライプ */
  background-size: auto auto;
  background-color: #ebe3de;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 0.3125rem, white 0.3125rem, white 0.375rem);
  /* ここまで背景のストライプ */
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
}

input[type=submit]:focus {
  outline: none;
}

header img.heroimg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 18.75rem;
}

@media (max-width: 575px) {
  header img.heroimg {
    height: 9.375rem;
  }
  header h1 {
    font-size: 150%;
    font-family: cursive;
  }
  header p {
    font-size: 0.75rem;
  }
}

header .container {
  padding: 0;
}

header .wrapper {
  position: relative;
}

header .wrapper .inner {
  position: absolute;
  top: 30%;
  margin-left: 5%;
}

header h1 {
  color: #ffffff;
  padding: 0;
  -webkit-filter: drop-shadow(0 0 0.25rem #3b3239);
          filter: drop-shadow(0 0 0.25rem #3b3239);
  font-family: cursive;
}
header p {
  color: #ffffff;
  padding: 0;
  -webkit-filter: drop-shadow(0 0 0.25rem #3b3239);
          filter: drop-shadow(0 0 0.25rem #3b3239);
}

#text header img.heroimg {
  height: 3.125rem;
}

#headernav {
  /* ここから１カラムデザインのメニューバースクロール追従 */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  /* ここまで１カラムデザインのメニューバースクロール追従。不要なら削除してください */
}

#headernav nav {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  padding: 0.625rem;
  margin: 0.625rem auto;
  border-top: 0.0625rem solid #3D2B30;
  border-bottom: 0.0625rem solid #3D2B30;
}

#headernav nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  padding: 0;
  width: calc(100% - 5rem);
}

#headernav nav ul li a {
  display: block;
}

.sidebarinner {
  padding: 1.25rem;
  /* ここから２カラムデザインのPC閲覧時サイドバースクロール追従 */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* ここまで２カラムデザインのPC閲覧時サイドバースクロール追従。不要なら削除してください */
}

@media (max-width: 991px) {
  .sidebarinner {
    padding: 1.25rem 0;
  }
}

.sidebarinner ul {
  padding: 0 0 1.25rem;
}

.sidebarinner p {
  padding: 0 0 1.25rem;
}

@media (max-width: 575px) {
  #sidebar {
    /* ここから１カラムデザインのメニューバースクロール追従 */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    /* ここまで１カラムデザインのメニューバースクロール追従。不要なら削除してください */
  }
  #sidebar .sidebarinner {
    padding: 0;
  }
  #sidebar nav {
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    padding: 0.625rem;
    margin: 0.625rem auto;
    border-top: 0.0625rem solid #c0c5cf;
    border-bottom: 0.0625rem solid #c0c5cf;
  }
  #sidebar nav ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 0;
    width: calc(100% - 5rem);
  }
  #sidebar nav ul li a {
    display: block;
  }
}

.update {
  background: #f2eee6;
  padding: 0.625rem;
  width: 95%;
  overflow: hidden;
  font-size: 0.875rem;
  margin: 1.25rem auto;
  border-radius: 0.25rem;
}

.update .inner {
  height: 8rem;
  overflow-y: scroll;
}

.update .inner::-webkit-scrollbar {
  width: 0.3125rem;
}

.update .inner::-webkit-scrollbar-track {
  background: #f2eee6;
}

.update .inner::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 0.125rem;
}

.update .inner dt {
  width: 6.25rem;
}

.update .inner dd {
  width: calc(100% - 6.25rem);
}

@media (max-width: 575px) {
  .update .inner {
    font-size: 0.75rem;
  }
  .update .inner dt {
    width: 5rem;
  }
}

ul.novel-1 {
  margin-bottom: 1.875rem;
}

ul.novel-1 li {
  display: -webkit-box;
  display: flex;
}

ul.novel-1 li.new:after {
  content: 'new';
  color: #f75e5e;
  font-size: 0.8125rem;
  font-weight: bold;
  margin-left: 0.3125rem;
}

ul.novel-1 li a {
  display: block;
  margin-right: 0.625rem;
  white-space: nowrap;
}

ul.novel-1 li span {
  display: block;
}

ul.novel-2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
}

ul.novel-2 li {
  display: -webkit-box;
  display: flex;
}

ul.novel-2 li.new:after {
  content: 'new';
  color: #f75e5e;
  font-size: 0.813rem;
  font-weight: bold;
  margin-left: 0.3125rem;
}

ul.novel-2 li a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

ul.novel-2 li:not(:last-of-type) {
  margin-right: 0.3125rem;
  padding-right: 0.3125rem;
  border-right: 0.0625rem solid #f2eee6;
}

ul.illust {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 1.25rem auto;
}

ul.illust li {
  position: relative;
  height: 6.25rem;
  width: 6.25rem;
  margin-bottom: 0.3125rem;
}

ul.illust li:not(:last-of-type) {
  margin-right: 0.3125rem;
}

ul.illust li a {
  display: block;
}

ul.illust li a img {
  border: 0.0625rem solid #dcdfe2;
  border-radius: 0.1875rem;
  width: 6.25rem;
  height: 6.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

ul.illust li.new::after {
  content: 'new';
  /* ここから背景のストライプ */
  background-size: auto auto;
  background-color: #ebe3de;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 0.3125rem, white 0.3125rem, white 0.375rem);
  /* ここまで背景のストライプ */
  position: absolute;
  padding: 0 0.3125rem;
  right: 0;
  bottom: 0;
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
}

@media (max-width: 575px) {
  ul.illust li {
    height: 4.375rem;
    width: 4.375rem;
  }
  ul.illust li a img {
    height: 4.375rem;
    width: 4.375rem;
  }
}

ul.link01 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 0.625rem 0;
}

ul.link01 li {
  margin-right: 0.5rem;
}

ul.link02 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

ul.link02 li a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

ul.link02 li:not(:last-of-type) {
  padding-right: 0.3125rem;
  margin-right: 0.3125rem;
  border-right: 0.0625rem solid #f2eee6;
}

.mailform textarea {
  margin: 0 0 0.3125rem;
  font-size: 0.875rem;
  border: 0.0625rem solid #e2e2e2;
  padding: 0.1875rem 0.3125rem;
  width: 80%;
  vertical-align: bottom;
}

.mailform input[type="submit"] {
  margin: 0 0 0.3125rem;
  font-size: 0.875rem;
  padding: 0.1875rem 0.3125rem;
}

.mailform input[type=text] {
  margin: 0 0 0.3125rem;
  font-size: 0.875rem;
  border: 0.0625rem solid #e2e2e2;
  padding: 0.1875rem 0.3125rem;
  width: 80%;
}

footer .container {
  padding: 1.875rem 0 0;
}

footer .template {
  text-align: right;
  width: 100%;
  padding: 0.3125rem 0.625rem;
  background: #EBE3DE;
  font-size: 0.75rem;
}

footer a.home {
  text-decoration: none;
  color: #ba4165;
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

hr {
  height: 0.0625rem;
  background-color: #cccccc;
  width: 80%;
  border: none;
  margin: 2.5rem auto;
}

h2.h2-a {
  margin: 1.875rem auto 2.5rem;
  text-align: center;
  border-top: solid 0.0625rem #cccccc;
  border-bottom: solid 0.0625rem #cccccc;
  padding: 0.625rem;
}

h2.h2-a:after {
  display: none;
}

h2.h2-b {
  padding: 0.625rem 1.25rem;
  background: transparent;
  text-align: center;
  color: #000000;
}

h2.h2-b:before {
  content: '';
  height: 0.0625rem;
  width: 10%;
  display: inline-block;
  background: #000000;
  vertical-align: middle;
  margin-right: 1.875rem;
}

h2.h2-b:after {
  content: '';
  height: 0.0625rem;
  width: 10%;
  display: inline-block;
  background: #000000;
  vertical-align: middle;
  margin-left: 1.875rem;
}

h3.h3-a {
  padding: 0.625rem 0.3125rem;
  background: transparent;
  color: #000000;
  border-left: none;
  border-bottom: 0.0625rem dotted #c5c5c5;
}

h3.h3-a:before {
  content: none;
}

h3.h3-b {
  border-left: none;
}

h3.h3-b:before {
  display: inline-block;
  float: none;
  width: auto;
  height: auto;
  position: initial;
  top: auto;
  right: auto;
  background-size: auto auto;
  background-color: transparent;
  background-image: none;
  content: '//';
  font-size: 105%;
  margin-right: 1em;
}

h3.h3-b:after {
  content: '//';
  font-size: 105%;
  margin-left: 1em;
}

ul.li-a {
  list-style: square inside;
  margin: 1em 0.5em;
}

ul.li-a li {
  margin-bottom: 0.5em;
}

ul.li-b {
  list-style: disc inside;
  margin: 1em 0.5em;
}

ul.li-b li {
  margin-bottom: 0.5em;
}

ol.li-a {
  list-style: decimal inside;
  margin: 1em 0.5em;
}

ol.li-a li {
  margin-bottom: 0.5em;
  margin-left: 1em;
}

ol.li-b {
  list-style: lower-alpha inside;
  margin: 1em 0.5em;
}

ol.li-b li {
  margin-bottom: 0.5em;
  margin-left: 1em;
}

.center {
  text-align: center;
}

.book {
  display: -webkit-box;
  display: flex;
  width: 80%;
  max-width: 50rem;
  margin: 5rem auto;
}

.book:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.book .book__image {
  margin: 0 1.25rem;
  -webkit-box-flex: 0;
          flex: 0 0 40%;
}

.book .book__discription h4 {
  margin-top: 0;
}

@media (max-width: 991px) {
  .book {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .book:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .book:not(:last-of-type) {
    border-bottom: 0.0625rem solid #cccccc;
    padding-bottom: 3.75rem;
  }
  .book .book__image {
    margin: 0 auto 1.25rem;
    max-width: 18.75rem;
  }
}

dl.book-01 {
  margin: 1.25remrem 0;
}

dl.book-01 dt {
  width: 6.25rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

dl.book-01 dd {
  width: calc(100% - 6.25rem);
  margin: 0;
  margin-bottom: 0.625rem;
}

a.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem 1.875rem;
  background: gray;
  color: #ffffff;
  margin: 1.25rem auto;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn:hover {
  background: #b3b3b3;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn.white {
  background: #ffffff;
  color: #000000;
}

a.btn.white:hover {
  color: #333333;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn.black {
  background: #000000;
}

a.btn.black:hover {
  background: #262626;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn.pink {
  background: #fa3c72;
}

a.btn.pink:hover {
  background: #fc87a8;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

a.btn.blue {
  background: #4169e1;
}

a.btn.blue:hover {
  background: #839deb;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

span.pink {
  color: #fa3c72;
}

#text .atogaki p {
  color: #a1a1a1;
  font-size: 0.875rem;
}

#text main h2 {
  margin: 1.25rem auto 2.5rem;
}

#text main p {
  line-height: 1.6;
  font-size: 1rem;
}

.page {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 1.875rem auto;
}

.page a {
  display: block;
  /* ここから背景のストライプ */
  background-size: auto auto;
  background-color: #ebe3de;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 0.3125rem, white 0.3125rem, white 0.375rem);
  /* ここまで背景のストライプ */
  color: #333;
  padding: 0.1875rem 0.625rem;
}

blockquote {
  background: #ededed;
  padding: 1.25rem 1.875rem;
  margin: 1.25rem;
  font-size: 0.938rem;
  font-style: italic;
}

/*折りたたみベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1rem 1rem 0.5rem;
	display: block;
	color: #666;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 0.375rem;
	height: 0.375rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 0.1875rem );
	right: 1.25rem;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:0; //
	padding:0 1.25rem;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding: 0 1.25rem 1.25rem;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

.x-small{
	font-size:x-small;
	margin-right:0.1rem;
}
.small{
	font-size:0.75rem;
	margin-right:0.1rem;
}

/* PCデフォルト */
.only-pc { display:block; }
.only-sp { display:none; }

/* モバイルで逆転 */
@media (max-width:575px) {
  .margin-top {margin-top: 0;}
  .only-pc { display:none !important; }
  .only-sp { display:block !important; }
  table {
    width:100%;
    font-size:0.85rem!important;; /* 文字少し小さく */
  }
  table th, table td {
    padding:0.25rem 0.5rem!important;; /* 余白を縮小 */
  }
  
}