@charset "UTF-8";
/* ==========================================
   Template: matome（https://do.gt-gt.org/）
   Copyright: 2020 do.
   利用規約を遵守の上お使いください。二次配布・販売を禁じます。
   ========================================== */
/* ==========================================
  リセットCSS
  基本的には触らないでください
  ========================================== */
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap");
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

ol,
ul {
  list-style: none;
}

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

p {
  line-height: 1.6em;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

/* ==========================================
  以下、デザインを決める記述です。
 ※印で検索することで設定箇所へジャンプします。
   ========================================== */
body {
  background-size: auto auto;
  	background-color : #ffffff;
	background-image:
		repeating-linear-gradient( 45deg,rgba(228, 228, 228, 0.5) 0px 16px,	transparent 16px 50px),
		repeating-linear-gradient( -45deg,rgba(238, 238, 238, 0.5) 0px 16px,	transparent 16px 50px);
  /* ↑上記3行が背景のストライプの記述です。
      お好みの色などに変更してください。※ */
  font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  padding: 0;
  margin: 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #E62727;
  /* ↑リンクの色　一括置換すると見出し色も一緒に変わります ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #1E93AB;
  /* ↑リンクをホバーしたときの色 ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

dl,
ol,
p,
ul {
  margin: 10px auto 20px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  dl,
  ol,
  p,
  ul {
    margin: 15px auto;
  }
}

h1 {
  font-size: 80px;
  color: #333333;
  /* ↑見出し色　リンク色と同じになります ※ */
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

h4 {
  padding-left: 10px;
  margin: 20px 0 10px;
}

.center {
  text-align: center;
}

.header {
  background-color: #FFF6BD;
  background-image: url(../img/header.png);
  /* ↑ヘッダー画像 ※ */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.header img.icon {
  display: block;
  margin: auto;
  height: 150px;
  width: 150px;
  background: #fff;
  border-radius: 50%;
  border: solid 6px #ffffff;
  position: absolute;
  bottom: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .header {
    height: 200px;
  }
  .header img.icon {
    height: 100px;
    width: 100px;
    border: solid 4px #ffffff;
    bottom: -50px;
  }
}

dl.memo dt {
  width: 100%;
  font-weight: bold;
  color: #FAC213;
  padding: 0.5em 0;
}

dl.memo dd {
  border-left: 1px dotted #d0d0d0;
  margin: 0 0 0 1em;
  padding: 0 0 1em 1em;
}

section {
  width: 95%;
  max-width: 800px;
  margin: 60px auto;
}

.two-column {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.two-column .column {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .two-column .column {
    width: 100%;
  }
}

h2 {
  font-size: 40px;
  margin: 1em auto;
  color: #333333;
  width: 100%;
  font-family: "Kiwi Maru", serif;
  font-weight: 800;
  font-style: normal;
}

section > h2 {
  text-align: center;
  font-size: 24px;
}

h3 {
  margin: 1em auto;
}

h4 {
  font-size: 20px;
  margin: 1em auto;
  color: #E62727;
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

h5 {
  font-size: 20px;
  margin: 1em auto;
  color: #333333;
  width: 100%;
  font-family: "Kiwi Maru", serif;
  font-weight: 600;
  font-style: normal;
}

h6 {
  font-size: 40px;
  margin: 1em auto;
  color: #333333;
  width: 100%;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

.update {
  font-size: 80%;
  color: #bcbcbc;
  text-align: center;
}

.box {
  background: #D6D46D;
  /* ↑色付きボックスの背景色 ※ */
  padding: 5px 10px;
  border-radius: 5px;
}

.box2 {
  background: #FFF;
  /* ↑色付きボックスの背景色 ※ */
  padding: 10px 15px;
  border-radius: 5px;
}

.cs {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.cs li {
  width: 24%;
  padding: 0;
  margin: 0 0 20px 0;
}

.cs li:not(:nth-of-type(4n-3)) {
  margin-left: calc(4% / 3);
}

.cs li a {
  width: 100%;
  background: #FDFDBD;
  display: block;
}

.cs li a:hover {
  background: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cs li a img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cs li a .text {
  padding: 5px;
}

.cs li a .text p {
  font-size: 80%;
  color: #333333;
  text-align: center;
}

.cs li a .text p.name {
  font-size: 100%;
  color: #333333;
  text-align: center;
  font-weight: bold;
  margin: 0 auto 0.5em;
}

@media screen and (max-width: 767px) {
  .cs li {
    width: 49%;
  }
  .cs li li a img {
    height: 240px;
  }
  .cs li:not(:nth-of-type(4n-3)) {
    margin-left: 0;
  }
  .cs li:nth-of-type(odd) {
    margin-right: 2%;
  }
}

@media screen and (max-width: 575px) {
  .cs li {
    width: 90%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    height: 260px;
  }
  .cs li:nth-of-type(odd) {
    margin-right: auto;
  }
  .cs li:not(:nth-of-type(4n-3)) {
    margin-left: auto;
  }
}

ul.sns-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 1em auto;
  -webkit-box-pack: center;
          justify-content: center;
  max-width: 600px;
}

ul.sns-list li {
  margin-bottom: 1em;
}

ul.sns-list li a {
  font-size: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
  border: 2px solid #E62727;
  background: #E62727;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 30px;
}

ul.sns-list li a:hover {
  background: #FC4D50;
  color: #ffffff;
}

ul.sns-list li a.twitter:hover {
  background: #1DA1F2;
  border: 2px solid #1DA1F2;
  color: #ffffff;
}

ul.sns-list li a.tumblr:hover {
  background: #36465d;
  border: 2px solid #36465d;
  color: #ffffff;
}

ul.sns-list li a.lineat:hover {
  background: #00b900;
  border: 2px solid #00b900;
  color: #ffffff;
}

ul.sns-list li a.youtube:hover {
  background: #cd201f;
  border: 2px solid #cd201f;
  color: #ffffff;
}

ul.sns-list li a.note:hover {
  background: #2dcdb5;
  border: 2px solid #2dcdb5;
  color: #ffffff;
}

ul.sns-list li a.amazon:hover {
  background: #FF9900;
  border: 2px solid #FF9900;
  color: #ffffff;
}

ul.sns-list li a.marsh:hover {
  background: #F3969A;
  border: 2px solid #F3969A;
  color: #ffffff;
}

ul.sns-list li a.skeb:hover {
  background: #30B396;
  border: 2px solid #30B396;
  color: #ffffff;
}

ul.sns-list li a.pixiv:hover {
  background: #0096FA;
  border: 2px solid #0096FA;
  color: #ffffff;
}

ul.sns-list li a.booth:hover {
  background: #1E93AB;
  border: 2px solid #1E93AB;
  color: #ffffff;
}

ul.sns-list li a.fantia:hover {
  background: #FF5600;
  border: 2px solid #FF5600;
  color: #ffffff;
}

ul.sns-list li:not(:last-of-type) {
  margin-right: 20px;
}

footer .container {
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

footer .bottom {
  margin: 0;
}

footer .bottom a {
  opacity: 0.7;
  text-align: right;
  width: 100%;
  font-size: 12px;
  padding: 5px 10px;
  margin: 0 0 0 auto;
  display: block;
}

/* アンソロジー執筆者リスト用CSS */

/* 全体の枠 */
.anthology-member-section {
  width: 100%;
  max-width: 900px; /* 必要に応じて変更 */
  margin: 0 auto;
  padding: 10px 0;
}

/* カテゴリごとのブロック */
.member-category {
  margin-bottom: 40px;
}

/* カテゴリ見出し（小説・イラスト・漫画） */
.category-title {
  font-size: 45px;
  border-bottom: 1px solid #666; /* 下線 */
  padding-bottom: 2px;
  margin-bottom: 2px;
  color: #333; /* 文字色 */
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

/* リスト本体（グリッド表示設定） */
.member-list {
  display: grid;
  /* 幅140px以上の列を自動で作る（スマホ・PC対応） */
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px; /* 名前同士の間隔 */
  list-style: none; /* ・を消す */
  padding: 0;
  margin: 0;

}

/* 個々の名前のデザイン */
.member-list li {
  font-size: 0.95rem;
  padding: 4px 0;
  color: #333;
}

/* スマートフォン表示時の調整（任意） */
@media screen and (max-width: 480px) {
  .member-list {
    grid-template-columns: repeat(2, 1fr); /* スマホでは2列固定にする場合 */
  }
}
