@charset "UTF-8";
/* ==========================================
   Template: 空にうたえば（https://do.gt-gt.org/）
   Copyright: 2019 do
   利用規約を遵守の上お使いください。二次配布・販売を禁じます。
   ========================================== */
/* ==========================================
  リセットCSS
  基本的には触らないでください
  ========================================== */
ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

/* ==========================================
  以下、デザインを決める記述です
   ========================================== */
body {
  background-size: auto auto;
  background-color: #2e2a94;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #afe3ff 4px, #afe3ff 5px);
  /* 以上の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;
  max-width: 100%;
  overflow-x: hidden;
}

dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

dl dd,
dl dt {
  display: block;
}

.container {
  background: #fff;
  display: block;
  /* コンテンツの背景色 */
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.container .row .col-sm-9 {
  width: 100%;
}

main {
  width: 100%;
}


a {
  text-decoration: none;
  color: #479bbd;
  /* リンクの色 */
}

a:hover {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
  /* リンクをホバーすると色が明るくなります */
}

p,
ul {
  font-size: 14px;
  padding-left: 20px;
  padding-right: 30px;
}

@media (max-width: 575px) {
  p,
  ul {
    padding-left: 10px;
    padding-right: 10px;
  }
}

h4 {
  color: #5a3cbe;
  padding-left: 10px;
}

.margin-top {
  margin-top: 30px;
}

.margin-bottom {
  margin-bottom: 30px;
}

img {
  max-width: 100%;
}

img + img {
  margin-left: 5px;
}

.artwork {
  max-width: 45%;
  height: auto;
}

p a img .p-icon {
  max-width: 100px;
}

.p-sel-lang {
  font-size: 20px;
}

h2 {
  font-size: 130%;
  font-weight: normal;
  margin: 20px 5px;
  width: 95%;
}

h2:after {
  content: '';
  display: block;
  width: 100%;
  position: relative;
  top: 3px;
  height: 5px;
  /* ここから見出しの下線のストライプ */
  background-size: auto auto;
  background-color: #221989;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 2px, #a9d2f5 2px, #a9d2f5 3px);
  /* ここまで見出しの下線のストライプ */
}

@media (max-width: 575px) {
  h2 {
    font-size: 110%;
  }
}

.row > h2 {
  padding-left: 15px;
  padding-right: 15px;
}

h3 {
  font-weight: normal;
  font-size: 100%;
  display: block;
  margin: 30px auto 15px 15px;
  width: 80%;
}

h3:before {
  content: '';
  display: block;
  float: left;
  width: 6px;
  height: 30px;
  position: relative;
  top: 0;
  right: 13px;
  /* ここから見出しの下線のストライプ */
  background-size: auto auto;
  background-color: #1b1d74;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 2px, #cedff6 2px, #cedff6 3px);
  /* ここまで見出しの下線のストライプ */
}

input[type=submit] {
  /* ここから背景のストライプ */
  background-size: auto auto;
  background-color: #90e9f7;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 2px, #8173df 2px, #8173df 3px);
  /* ここまで背景のストライプ */
  border: 1px solid #8173df;
  padding: 2px 8px;
  font-size: 12px;
}

input[type=submit]:focus {
  outline: none;
}

header img.heroimg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
}

@media (max-width: 575px) {
  header img.heroimg {
    height: 200px;
  }
  header h1 {
    font-size: 150%;
  }
  header p {
    font-size: 12px;
  }
}

header .container {
  padding: 0;
}

header .wrapper {
  position: relative;
}

/* Media query for small screens (less than 481px) */
@media (max-width: 480px) {
  header .wrapper .logo-pc {
      display: none;
  }
}

/* Media query for larger screens (greater than or equal to 481px) */
@media (min-width: 481px) {
  header .wrapper .logo-m {
      display: none;
  }

  header #select-lang {
      margin-right: 20px; /* Add some spacing between logo and language selector */
  }
}

#select-lang {
  position: relative;
}

#lang-list {
  display: none; /* Hide the language list initially */
  position: absolute;
  top: 100%;
  z-index: 10;
  background-color: #b4befd; /* Optional: Add a background color */
  padding: 10px; /* Optional: Add padding for better appearance */
  margin: 0 10px;
  box-shadow: 0 0 5px rgba(61, 55, 173, 0.2); /* Optional: Add a box shadow for a dropdown effect */
}

#lang-list li {
  display: block;
  width: 100px;
  margin-bottom: 10px;
}

#lang-list li img {
  text-align: center;
  margin: 3px;
  padding: 3px;
}

#select-lang:hover #lang-list {
  display: block; /* Show the language list on hover */
}

#select-lang {
  cursor: pointer; /* Add a pointer cursor to indicate it's clickable */
}



header .wrapper .inner {
  position: absolute;
  top: 5%;
  margin-left: 5%;
}

header a img:after {
  filter: brightness(120%);
}

header h1,
header p {
  color: #5264CC;
  padding: 10px;
  font-family: 'HG正楷書体-PRO';
  text-shadow:
     1px 1px 0px #fff, -1px -1px 0px #fff,
    -1px 0.1px 0px #fff,  1px -1px 0px #fff,
     1px 0px 0px #fff, -1px  0px 0px #fff,
     0px 1px 0px #fff,  0px -1px 0px #fff;
   margin: 0;
/*  -webkit-filter: drop-shadow(0 0 4px #c0c5cf);
          filter: drop-shadow(0 0 4px #c0c5cf);*/
}

#text header img.heroimg {
  height: 50px;
}

#nav-container {
  /* ここから１カラムデザインのメニューバースクロール追従 */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  /* ここまで１カラムデザインのメニューバースクロール追従。不要なら削除してください */
}

#nav-container nav {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  margin: 14px auto;
  border-top: 1px solid #9ebefa;
  border-bottom: 1px solid #9ebefa;
}

#nav-container nav ul {
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  width: 85%;
  list-style: none;
  position: relative;
}

#nav-container nav ul li {
  position: relative;
	font-size: 14px;
}

#nav-container nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #ffffff;
  padding: 3px;
  border: 1px solid #ddd;
  width: 120px;
}

#nav-container nav ul li ul .nav-works {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #ffffff;
  padding: 3px;
  border: 1px solid #ddd;
  width: 120px;
}

#nav-container nav ul li ul .nav-post {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #ffffff;
  padding: 3px;
  border: 1px solid #ddd;
  width: 120px;
}

#nav-container nav ul li ul .nav-shop {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #ffffff;
  padding: 3px;
  border: 1px solid #ddd;
  width: 100px;
}

#nav-container nav ul li:hover ul {
  display: block;
}

#nav-container nav ul li a {
  display: block;
  padding: 5px;
  text-decoration: none;
  color: #333;
}

#nav-container nav ul li a:hover {
  background-color: #b9c1ff;
}

#nav-container nav ul li a img{
  max-width: 20%;
}

@media (max-width: 480px){
  #nav-container nav ul li a img{
    max-width: 55%;
  }  
}

/* 追加：言語メニュー用のスタイル */
#nav-container nav ul li:last-child {
  position: relative;
}

#nav-container nav ul li:last-child ul {
  top: 100%; /* 変更：ulが下にスライドするように修正 */
  bottom: auto; /* 変更：ulが下にスライドするように修正 */
}

/* 追加：横一列に並んだ際のスタイル */
#nav-container nav ul li {
  flex: 1;
  text-align: center;
}

/* 追加：ドロップダウンメニューのスライドダウンアニメーション */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#nav-container nav ul li ul {
  animation: slideDown 0.3s ease; /* アニメーションを追加 */
}

.sidebarinner nav ul li ul {
  animation: slideDown 0.3s ease; /* アニメーションを追加 */
}


.sidebarinner {
  padding: 20px;
  /* ここから２カラムデザインのPC閲覧時サイドバースクロール追従 */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* ここまで２カラムデザインのPC閲覧時サイドバースクロール追従。不要なら削除してください */
}

@media (min-width: 481px) {
  .sidebarinner ul li {
    font-size: 16px;
    display: inline;
  }
}

@media (max-width: 991px) {
  .sidebarinner {
    padding: 20px 0;
  }
}

.sidebarinner ul {
  padding: 0 0 20px;
}

.sidebarinner p {
  padding: 0 0 20px;
}

@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: 10px;
    margin: 10px auto;
    border-top: 1px solid #c0c5cf;
    border-bottom: 1px solid #c0c5cf;
    position: relative;
  }
  
  #sidebar nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 0;
    width: calc(100% - 80px);
  }
  
  #sidebar nav ul li {
    position: relative;
  }
  
  #sidebar nav ul li a {
    display: block;
  }
  
  #sidebar nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #f0f0f0;
    padding: 10px;
  }
  
  #sidebar nav ul li:hover > ul {
    display: block;
  }  
}

.updateinfo {
  background: #e5e6fa;
  padding: 10px;
  width: 95%;
  overflow: hidden;
  font-size: 14px;
  margin: 20px auto;
  border-radius: 4px;
}

.updateinfo .inner {
  height: 350px;
  overflow-y: scroll;
}

.updateinfo .inner::-webkit-scrollbar {
  width: 5px;
}

.updateinfo .inner::-webkit-scrollbar-track {
  background: #e9e8fa;
}

.updateinfo .inner::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 2px;
}

.updateinfo .inner dt {
  width: 150px;
}

.updateinfo .inner dd {
  width: calc(100% - 150px);
}


@media (max-width: 575px) {
  .updateinfo .inner {
    font-size: 12px;
  }
  .updateinfo .inner dt {
    width: 80px;
  }
}


.updateinfo .inner-b dt {
  width: 100px;
  float: left;
}

.updateinfo .inner-b dd {
  width: calc(100% - 100px);
}


@media (max-width: 575px) {
  .updateinfo .inner {
    font-size: 12px;
  }
  .updateinfo .inner dt {
    width: 80px;
  }
}

.radiopro {
  background: #e5e6fa;
  padding: 10px;
  width: 95%;
  overflow: hidden;
  font-size: 14px;
  margin: 20px auto;
  border-radius: 4px;
}

.radiopro  dt {
  width: 100px;
  float: left;
}

.radiopro  dd {
  width: calc(100% - 100px);
}

.radiopro dt dd {
  clear: left;
  float: left;
  margin-left: -6em;
}

ul.novel-1 {
  margin-bottom: 30px;
}

ul.novel-1 li {
  display: -webkit-box;
  display: flex;
}

ul.novel-1 li.new:after {
  content: 'new';
  color: #f75e5e;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.update:after {
  content: 'update';
  color: #DBA901;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.warning:after {
  content: 'warning';
  color: #F0A84B;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.ageChange:after {
  content: '年齢操作';
  color: #30BE5A;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.ageChange-en:after {
  content: 'Change of age';
  color: #30BE5A;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.parents:after {
  content: '親子妄想';
  color: #3934DA;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.parents-en:after {
  content: 'Parents-children';
  color: #3934DA;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.r-18:after {
  content: 'R-18';
  color: #F788CE;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-2 li.bloodOrDead:after {
  content: 'Blood or Dead';
  color: #EB2929;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

ul.novel-1 li a {
  display: block;
  margin-right: 10px;
  white-space: nowrap;
}

ul.novel-1 li span {
  display: block;
}

ul.novel-2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

ul.novel-2 li {
  display: -webkit-box;
  display: flex;
}

ul.novel-2 li.new:after {
  content: 'new';
  color: #f75e5e;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

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: 5px;
  padding-right: 5px;
  border-right: 1px solid #e8f3fa;
}

ul.novel-1 {
  margin-bottom: 30px;
}

ul.link01 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 10px 0;
  text-align: center;
}

ul.link01 li {
  margin-right: 8px;
  margin-top: 5px;
  width: 200px;
}

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: 5px;
  margin-right: 5px;
  border-right: 1px solid #ece8fa;
}

ul.link03 li {
  display: -webkit-box;
  display: flex;
  font-size: 18px;
}

ul.link03 li.new:after {
  content: 'new';
  color: #f75e5e;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
}

ul.link03 li a {
  display: block;
  margin-right: 10px;
  white-space: nowrap;
}

ul.link03 li span {
  display: block;
}

ul.link-doujin {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 10px 0;
  text-align: center;
}

ul.link01 li {
  margin-right: 8px;
}

.formTable textarea {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #acb2f2;
  padding: 3px 5px;
  width: 80%;
  vertical-align: bottom;
}

.formTable input[type="submit"] {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #acb7f2;
  padding: 3px 5px;
}

.formTable input[type=text] {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #acc7f2;
  padding: 3px 5px;
  width: 80%;
}

.newsletter textarea {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #acb2f2;
  padding: 3px 5px;
  width: 80%;
  vertical-align: bottom;
}

.newsletter input[type="button"] {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #acb7f2;
  padding: 3px 5px;
}

.newsletter input[type=text] {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #acc7f2;
  padding: 3px 5px;
  width: 80%;
}

footer {
  width: 100%;
  position: absolute;
  left: 0;
}

footer .container {
  width: 100%;
  padding: 5px 10px;
  background: #3c3c3c;
  color: #ddd;
  font-size: 12px;
}

footer .container .snsLink img {
  width: 70px;
  padding: 3px;
}

footer .container a {
  color: #ddd;
}

footer a.home {
  text-decoration: none;
  color: #54c6ff;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}

footer ul.menu {
  list-style: none;
}

footer ul.menu li a {
  font-size: 14px;
  display: block;
  padding: 5px 0;
}

footer ul.menu li a:hover {
  color: #c0feff;
}

footer ul.menu ul {
  list-style: none;
}

hr {
  height: 1px;
  background-color: #ced7f8;
  width: 80%;
  border: none;
  margin: 40px auto;
}

h2.h2-a {
  margin: 30px auto 40px;
  text-align: center;
  border-top: solid 1px #121578;
  border-bottom: solid 1px #cedbf6;
  padding: 10px;
}

h2.h2-a:after {
  display: none;
}

h2.h2-b {
  padding: 10px 20px;
  background: transparent;
  text-align: center;
  color: #000000;
}

h2.h2-b:before {
  content: '';
  height: 1px;
  width: 10%;
  display: inline-block;
  background: #000000;
  vertical-align: middle;
  margin-right: 30px;
}

h2.h2-b:after {
  content: '';
  height: 1px;
  width: 10%;
  display: inline-block;
  background: #000000;
  vertical-align: middle;
  margin-left: 30px;
}

h3.h3-a {
  padding: 10px 5px;
  background: transparent;
  color: #000000;
  border-left: none;
  border-bottom: 1px dotted #3a469f;
}

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;
}

h3.h3-c {
  content: '';
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  right: 13px;
  background-size: auto auto;
  background-color: #858585;
  font-style: normal;
}

h3.h3-c {
  padding: 10px 20px;
}

h3.h3-c:before {
  content: none;
}

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: upper-alpha inside;
  margin: 1em 0.5em;
}

ol.li-b li {
  margin-bottom: 0.5em;
  margin-left: 1em;
}

ol.li-b li ol {
  list-style: lower-alpha inside;
  margin: 1em 0.5em;
}

ol.li-b li ol li {
  margin-bottom: 0.5em;
  margin-left: 1em;
}

.center {
  text-align: center;
}

.book {
  display: -webkit-box;
  display: flex;
  width: 80%;
  max-width: 800px;
  margin: 80px auto;
}

.book:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.book .book__image {
  margin: 0 20px;
  -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: 1px solid #cccccc;
    padding-bottom: 60px;
  }

  .book .book__image {
    margin: 0 auto 20px;
    max-width: 300px;
  }
}

dl.book-01 {
  margin: 20px 0;
}

dl.book-01 dt {
  width: 100px;
  font-weight: 600;
  margin-bottom: 10px;
}

dl.book-01 dd {
  width: calc(100% - 100px);
  margin: 0;
  margin-bottom: 10px;
}

a.btn {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background: gray;
  color: #ffffff;
  margin: 20px auto;
  -webkit-transition: .2s;
  transition: .2s;
  box-shadow: 0 7px #0A0A2A;
}

a.btn:hover, a.btn:active {
  background: #b3b3b3;
  -webkit-transition: .2s;
  transition: .2s;
  box-shadow: none;
  position: relative;
  top: 7px;
}

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.red {
  background: #ff0000;
}

a.btn.red:hover {
  background: #fa3c72;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

a.btn.lpink {
  background: #F6A3D5;
}

a.btn.lpink:hover {
  background: #F6BCD8;
  -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;
}

a.btn.lblue {
  background: #70B1F1;
}

a.btn.lblue:hover {
  background: #9DDAF1;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

a.btn.purple {
  background: #8551EC;
}

a.btn.purple:hover {
  background: #D3A0F4;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

a.btn.yellow {
  background: #D3B82B;
}

a.btn.yellow:hover {
  background: #F1F38F;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

a.btn.green {
  background: #31C889;
}

a.btn.green:hover {
  background: #7BE9D5;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

a.btn.discord {
  background: #8551EC;
}

a.btn.discord:hover {
  background: #D3A0F4;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

p a img .follow-me {
  max-width: 100px;
}

@media (min-width: 800px){
  .comic-wrap{
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
  }

  .comic-wrap .inner{
    display: block;
    flex-direction: row-reverse;
    padding: 0 10%;
  }

  .comic-wrap .inner img {
    max-width: 50%;
    padding: 0 10px;
  }

  #comics .p .comic-wrap .inner img {
    max-width: 50%;
    padding: 0 10px;
  }
}

span.pink {
  color: #fa3c72;
}

#text .atogaki p {
  color: #a1a1a1;
  font-size: 14px;
}

#text main h2 {
  margin: 20px auto 40px;
}

#text main p {
  line-height: 2em;
  font-size: 16px;
}

.page {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 30px auto;
}

.page a {
  display: block;
  /* ここから背景のストライプ */
  background-size: auto auto;
  background-color: #FAD5EA;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 2px, #95abec 2px, #95abec 3px);
  /* ここまで背景のストライプ */
  color: #333;
  padding: 3px 10px;
}

blockquote {
  background: #ededed;
  padding: 20px 30px;
  margin: 20px;
  font-size: 15px;
  font-style: italic;
}

@media (max-width: 575px) {
  .only-pc {
    display: none;
  }
}

/*小説ページ*/
#novelBox {
  margin: auto;
  width: 95%;
}


@media screen and (max-width:480px){
.cnSashie {
  width: 100%;
  display: flex;
  animation: fadeIn 1.2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
}


@media screen and (min-width:481px){
.cnSashie {
  width: 50%;
  display: flex;
  animation: fadeIn 1.2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#novel {
  width: calc(100% - 3px);
}

#novel p{
	color: black;
	font-size: 100%;
	padding: 20px;
}

#noveltitle p{
	font-family: serif;
	color: black;
	font-size: 120%;

	display: flex;
	align-items: center;
}

#noveltitle:before,
#noveltitle:after {
  content: "";
  flex-grow: 1;
  height: 1.2px;
  background: #000;
  margin:0 2em;
  margin-right: .4em;
}

#noveltitle:before {
  background: linear-gradient(-90deg, #5880ed, transparent);
}

#noveltitle:after {
  background: linear-gradient(90deg, #58a5ed, transparent);
}

#note{
  background: linear-gradient(#ffffff, #b3f6e0);
}

@media screen and (min-width:481px){
  #note{
    padding-left: 15%;
    padding-right: 15%;
  }
}

.note{
  background: linear-gradient(#ffffff, #b3d1f6);
  margin-left: auto;
  margin-right: auto;
}


.note p{
	color: black;
	font-size: 100%;
	padding: 10px;
}

#radiotitle p{
  font-size: 26px;
  color: #535DE1;
  z-index: 10;
}

#radiotitle {
  background-color: #ceddf6;
  border-radius: 100px;
  position: relative;
  z-index: 9;
}

#note audio{
  text-align: center;
}

.underwhite {
  background-color: #ffffff;
}

.underwhite p{
  color: #ffffff;
}



.radiopro dd.new:after {
  content: 'new';
  color: #f75e5e;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}


.radiopro dd.updatepage:after {
  content: 'update';
  color: #0000ff;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

.radiopro dd.audio:after {
  content: 'audio';
  color: #3BB764;
  font-size: 13px;
  font-weight: bold;
  margin-left: 5px;
}

/*感想欄*/
.impression{
  margin-left: auto;
  margin-right: auto;
  background: #92F7BC;
  margin: auto;
  overflow: hidden;
	width: 50%;
	margin: 2em auto;
	text-align: center;
}
.impression select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.impression select::-ms-expand {
    display: none;
}
.impression {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.impression::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.impression select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}

/*SM*/
.shortMessage{
  margin-left: auto;
  margin-right: auto;
  background: #92F7BC;
  margin: auto;
  overflow: hidden;
	width: 50%;
	margin: 2em auto;
	text-align: center;
}
.shortMessage select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.shortMessage select::-ms-expand {
    display: none;
}
.shortMessage {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.shortMessage::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.shortMessage select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}

@media (max-width: 480px) {
  /*SM*/
.shortMessage{
  margin-left: auto;
  margin-right: auto;
  background: #92F7BC;
  margin: auto;
  overflow: hidden;
	width: 100%;
	margin: 2em auto;
	text-align: center;
}
.shortMessage select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.shortMessage select::-ms-expand {
    display: none;
}
.shortMessage {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.shortMessage::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.shortMessage select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}
}

/*スクショ画像*/
@media screen and (max-width:480px){

.swtichScr {
  text-align: center;
}

.swtichScr video {
   max-width: 100%;
}

.swtichScr img {
   max-width: 100%;
}

}


@media screen and (min-width:481px){

.swtichScr {
  text-align: center;
}

.swtichScr video {
   max-width: 80%;
}

.swtichScr img {
   max-width: 80%;
}

}




/*漫画レイアウト*/
@media screen and (max-width:480px){

#comics {
  text-align: center;
  padding: auto;
  width: calc(100% - 30px);
}

#comics img {
  text-align: center;
  width: 100%;
}

}


@media screen and (min-width:481px){

#comics {
  text-align: center;
  padding: 0 10%;
  width: calc(100% - 3px);
}

#comics img {
  text-align: center;
  width: 60%;
}

}

/*メルフォレイアウト*/
#formWrap {
  width:700px;
  margin:0 auto;
  color:#555;
  line-height:120%;
  font-size:90%;
}
table.formTable{
  width:100%;
  margin:0 auto;
  border-collapse:collapse;
}
table.formTable td,table.formTable th{
  border:1px solid #ccc;
  padding:10px;
}
table.formTable th{
  width:30%;
  font-weight:normal;
  background:#efefef;
  text-align:left;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
  width:95%;
  margin:0 auto;
}
table.formTable th, table.formTable td {
  width:auto;
  display:block;
}
table.formTable th {
  margin-top:5px;
  border-bottom:0;
}
input[type="text"], textarea {
  width:80%;
  padding:5px;
  font-size:110%;
  display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
  display:block;
  width:100%;
  height:40px;
}
}


/*表*/
table, td, th {
  border: 1px solid #dcdcdc;
  border-collapse: collapse;
}

td, th {
  padding: 5px 10px;
}

th {
  background: #fdffda;
}

table.center {
  margin: 20px auto;
}

/* 検索ボックスのコンテナ */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: #bdbdbd 1px solid;
  border-bottom: 1px solid #ddd;
  max-width: 500px;
}

.search-container input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 300px;
  font-size: 16px;
}

.search-container button {
  padding: 10px 15px;
  margin-left: 10px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.search-container button:hover {
  background-color: #0056b3;
}

/* 親要素のコンテナ */
.image-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 20px;
}

/* 作品一覧のスタイル */
.image-gallery a {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.3s ease;
  width: 470px;
  min-height: 120px;
  box-sizing: border-box;
  position: relative;
}

.image-gallery a.hidden {
  display: none;
}

.image-gallery a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* サムネイル画像のスタイル */
.image-gallery img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 16px;
}

/* タイトルとURLのスタイル */
.image-gallery .image-gallery-content {
  flex-grow: 1;
  overflow: hidden;
}

.image-gallery .image-gallery-title {
  font-size: 16px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-gallery a .data-tags {
  display: none;
}

/* レスポンシブデザイン */
@media (max-width: 600px) {
  .image-gallery .image-gallery {
    align-items: stretch;
  }

  .image-gallery .image-gallery a {
    width: 100%;
    padding: 12px;
  }

  .image-gallery .image-gallery img {
    width: 80px;
    height: 80px;
    margin-right: 12px;
  }
}

/*カラム*/
.wrap {
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (min-width: 768px) {
  .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

@media (min-width: 768px) and (max-width: 1029px) {
  .container {
    max-width: 720px;
  }
}


.wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.wrap .inner {
  -webkit-box-flex: 1;
          flex: 1;
  margin-bottom: 30px;
}

.wrap .inner-30 {
  -webkit-box-flex: 1;
          flex: 1;
  margin-bottom: 30px;
}

.wrap .inner-70 {
  -webkit-box-flex: 1;
          flex: 1;
  margin-bottom: 30px;
}

.wrap-3col {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.wrap-3col .inner {
  -webkit-box-flex: 1;
          flex: 1;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  
  .wrap-table {
    display: table;
  }

  .wrap-table .inner-30 {
    width: 27%;
    display: table-cell;
    -webkit-box-flex: 0;
            flex: none;;
  }
  
  .wrap-table .inner-70 {
    width: 70%;
    display: table-cell;
    -webkit-box-flex: 0;
            flex: none;
  }

  .wrap-3col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .wrap-3col .inner {
    width: 31%;
    -webkit-box-flex: 0;
            flex: none;
  }

blockquote {
  background: #A9F5F2;
  margin: 2em 0;
  padding: 15px;
  border-left: 3px solid #045FB4;
}

blockquote > *:first-of-type {
  margin-top: 0;
}

blockquote > *:last-of-type {
  margin-bottom: 0;
}


blockquote.codequote {
  background: #2a2a2a;
  padding: 20px 30px;
  margin: 20px;
  font-size: 15px;
  border-left: 3px solid #cdcdcd;
}

blockquote.codequote p {
  font-style: normal;
  color: #fff;
}

blockquote.codequote > *:first-of-type {
  margin-top: 0;
}

blockquote.codequote > *:last-of-type {
  margin-bottom: 0;
}

.box {
  background: #40fcf9;
  margin: 2em 0;
  padding: 15px;
}

.box > *:first-of-type {
  margin-top: 0;
}

.box > *:last-of-type {
  margin-bottom: 0;
}


.marker-normal {
  background: linear-gradient(transparent 75%, #58FAAC 75%);
}
.marker-bold {
  background: linear-gradient(transparent 50%, #58FAAC 50%);
}
.marker-all {
  background: linear-gradient(transparent 0%, #58FAAC 0%);
}
}

/*展開できる要素*/
details {
  color: #0e0b61;
  background: #cee3f6;
  border-radius: 15px;
  padding-left: 10px;
}

details summary {
  display: block;
  list-style: none;
}

details p {
  color: black;
}

details strong {
  color: #0430b4;
}

details ol li {
  color: black;
}


.illust .top-i {
  display: flexbox;
  width: 500px;
  height: 250px;
}

.photoshot {
  display: flexbox;
  height: 500px;
  overflow-y: auto;
}

/* to top */
a#totop {
  display: block;
  position: fixed;
  z-index: 10000;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #006dd2;
  border-radius: 50%;
}

a#totop:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid black;
  border-right: 2px solid black;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 5%;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

a#totop:hover:before {
  -webkit-transform: translateY(-3px) rotate(-45deg);
          transform: translateY(-3px) rotate(-45deg);
}

/*lang-menu*/
#lang-menu {
  display: block;
  position: fixed;
  z-index: 10000;
  bottom: 60px;
  right: 0;
  width: 60px;
  height: 60px;
  background: #006dd2;
  border-radius: 50%;
}

#lang-menu ul {
  list-style-type: none;
  margin: 0; /* 余分なマージンを削除 */
  padding: 0;
  display: none;
  position: fixed;
  bottom: 60px;
  right: 0;
}

#lang-menu.open ul {
  display: block; /* ulがクリックされたときに表示 */
}

#lang-menu ul img {
  width: 75%;
  display: block;
  margin: 12px 0 10px 8px; /* 画像を中央に配置 */
}

#lang-menu ul li {
  display: block;
  margin: 0;
  width: 60px;
  height: 60px;
  background: #006dd2;
  border-radius: 50%;
  transition: transform 0.3s;
}

#lang-menu ul li img {
  width: 75%;
  display: block;
  margin: 12px 0 10px 8px; /* 画像を中央に配置 */
}

#lang-menu button {
  background: none;
  border: none;
  cursor: pointer;
}

.language-content {
  display: none;
}

.active {
  display: block;
}

@media (max-width: 760px) {
  ul.illust li {
    height: 90px;
    width: 200px;
  }
  ul.illust li a img {
    height: 90px;
    width: 90px;
  }
}

@media (max-width: 480px) {
  .top-wrapper {
    padding: 15px 10px
  }

  .top-wrapper button {
    width: 80px;
  }
}

/*二次創作ガイドライン*/
.wrap-60-25 {
  display: flex;
  width: 100%;
}

.inner-60 {
  width: 60%;
}

.inner-25 {
  width: 25%;
}


/*プロフィール*/

.about-prf img {
  width: 250px;
  height: auto;
  border-radius: 50%;
}

.about-prf dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.about-prf dl dt,
.about-prf sl dd {
  display: block;
}

.about-prf dl dt {
  color: #2940c4;
  font-family: "HG明朝E";
  float: left;
  width: 300px;
  clear: left;
}

.main-prf {
  text-align: center;
  margin: 15px, 20px;
}

.main-prf img {
  width: 250px;
  height: auto;
  border-radius: 50%;
}

.main-prf .myNameEng {
  font-size: 100%;
  font-family: "HG明朝E";
}

.myData {
  text-align: center;
  margin: 0 25%;
  padding: 15px 10px;
  width: 60%;
}

.myData dt {
  width: 100px;
}

.myData dd {
  width: 100%;
}

.myData-inner {
  width: 100%;
  padding: 10px
}

.myData-inner dt {
  width: 200px;
}

.myData-inner dd {
  width: 100%;
}

.myLoveColour {
  content: "";
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

@media (max-width: 575px) {
  .myData {
    font-size: 16px;
    width: 95%;
    margin: 10px;
  }

  .myData dt {
    width: 370px;
    padding: 5px 10px;
  }
  
  .myData dd {
    width: 370px;
    padding: 5px 10px;
  }  

  .myData-inner {
    font-size: 16px;
    width: 95%;
  }

  .myData-inner dt {
    width: 370px;
    padding: 5px 10px;
  }
  
  .myData-inner dd {
    width: 370px;
    padding: 5px 10px;
  }  
}

.link-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.icon-link {
  border: 1px solid #ccc; /* 枠のスタイル */
  padding: 10px; /* 内側の余白 */
  margin: 5px;
  width: 30%;
  border-radius: 10px;
}

.icon-link a {
  display: flex;
  align-items: flex-start; /* 上に揃える */
  text-decoration: none;
  color: black;
  width: 100%;
}

.icon-link .icon {
  width: 20%; /* リンク幅の20% */
  margin-right: 10px;
}

.text-container {
  display: flex;
  flex-direction: column;
}

.icon-link a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .link-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .icon-link {
    border: 1px solid #ccc; /* 枠のスタイル */
    padding: 10px; /* 内側の余白 */
    margin: 5px;
    width: 100%;
    border-radius: 10px;
  }
  
  .icon-link a {
    display: flex;
    align-items: flex-start; /* 上に揃える */
    text-decoration: none;
    color: black;
    width: 100%;
  }
  
  .icon-link .icon {
    width: 30%; /* リンク幅の20% */
    margin-right: 10px;
  }
  
  .text-container {
    display: flex;
    flex-direction: column;
  }
  
  .icon-link a:hover {
    text-decoration: underline;
  } 
}

.achvm {
  width: 45%;
}

@media (max-width: 480px) {
  .achvm {
    width: 100%;
  }
}

/* リンクカードのスタイル */
.link-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #f5f5f5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.link-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* サムネイル画像のスタイル */
.link-card img {
  width: 120px;
  border-radius: 4px;
  margin-right: 16px;
}

/* タイトルとURLのスタイル */
.link-card-content {
  flex-grow: 1;
}

.link-card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.link-card-url {
  font-size: 12px;
  color: #666;
}

/*ぼかし*/
.blur {
  /* filter: blur(); ~px: ぼかす（にじませる）具合 */
  filter: blur(5px);
}

.calendar-iframe {
  border: 0;
  max-width: 800px;
  width: 100%;
}

@media (max-width: 480px) {
  .calendar-iframe {
    max-width: 400px;
  }
}
