@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
/*
'Alegreya Sans SC' is licensed under the Open Font License.
https://fonts.google.com/specimen/Alegreya+Sans+SC
*/

@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,
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: #f8f8f8;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255, 255, 255, 0.5) 14px, rgba(255, 255, 255, 0.5) 27px);
  /* ↑上記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: #da2b5c;
  /* ↑リンクの色　一括置換すると見出し色も一緒に変わります ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: lightpink;
  /* ↑リンクをホバーしたときの色 ※ */
  -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 {
  color: #da2b5c;
  /* ↑見出し色　リンク色と同じになります ※ */
  font-family: "Kosugi Maru", sans-serif;
}

h4 {
  padding-left: 10px;
  margin: 20px 0 10px;
  font-size: 120%;
}

.center {
  text-align: center;
}

.header {
  background-color: #fdadc8;
  background-image: url(../img/header.jpg);
  /* ↑ヘッダー画像 ※ */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.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: #da2b5c;
  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: 30px 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: 20px;
  margin: 1em auto;
  color: #da2b5c;
  width: 100%;
}

section > h2 {
  text-align: center;
  font-size: 24px;
}

h3 {
  margin: 1em auto;
}

.update {
  font-size: 80%;
  color: #bcbcbc;
  text-align: center;
}

.box {
  background: #ffe8eb;
  /* ↑色付きボックスの背景色 ※ */
  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: #e6e6e6;
  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: #da2b5c;
  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: 14px;
  border: 2px solid #65676d;
  color: #65676d;
  padding: 5px 8px;
  border-radius: 20px;
}

ul.sns-list li a:hover {
  background: #65676d;
  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: #FC4D50;
  border: 2px solid #FC4D50;
  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;
}


/* 共通設定 */

input[type],textarea,button,select {
    border: none;
    box-sizing: border-box;
    color: inherit;
    font-family: inherit;
    font-size: .9em;
    letter-spacing: .1em;
    line-height: inherit;
}



/* 段落設定 */
p {
    padding: 0 2em;
}
section {
    margin: 10vh 0;
}
section[id] {
    scroll-margin-top: 15vh;
    scroll-snap-margin-top: 15vh;/* safari用 */
}


/* 余白、基本リンク色設定 */
.wrap {
    position: relative;
    padding: 10vh 3em 10vh;
    margin: 0 auto;
     width: 60vw;
     min-width: 700px;
     max-width: 1000px;
    box-sizing: border-box;
}

.wrap main {

}

.space {
    margin: 5vh 2em;
}

main a {
    color: #55b7d9;
    transition: .3s;
}
.main-page a:hover {
    color: #6393a3;
}


/* メインページ（小説部分）設定 */

/* 長編リスト */
.longList {
    display: flex;
     flex-wrap: wrap;
     align-items: stretch;
     align-content: stretch;
}
.longList li {
    display: flex;
    margin: 2em 5% 2em 0;
    width: 30%;
    background: #aeb2b9;
    border-radius: 4px;
    box-shadow: 2px 2px 1rem #e4e4e4;
    overflow: hidden;
}
.longList li a {
    display: flex;
     flex-direction: column;
     justify-content: space-between;
    padding: 2em 0;
    width: 100%;
    height: auto;
    color: #5c6981;
}
.longList li:nth-of-type(3n) {
    margin: 2em 0;
}
.longInfo {
    padding: 1rem;
    font-size: .8em;
}
.longTitle {
    padding: .5em 1em;
    background: rgba(255, 255, 255, 0.7);
    text-align: right;
}



/* 名前変換フォーム */
.nameChange {
    text-align: center;
}
.nameChange input {

    margin-right: 1em;
}
.nameChange input[type="text"] {
    padding: .2em;
    width: 10em;
    border: #aeb2b9 solid 1px;
}
.nameChange input[type="submit"] {
    padding: .2em 1em;
}

/* 短編リスト */
.shortList {
    columns: 2;
}
.shortList li {
    margin: .5em 0;
}
.shortList li a:visited {
    color: #9baaaf;
}
.shortList li > span {
    margin: 0 1em;
    font-size: .9em;
}

/* 小説本文 */
.wrap-text, .wrap-text + aside {
    margin: 0 auto;
     width: 80%;
     min-width: 600px;
    line-height: 200%;
}
.wrap-text h4 {
    margin-bottom: 3em;
}
.wrap-text + aside {
    padding: 1em;
    margin: 5vh auto;
    width: 70%;
    border: #aeb2b9 solid 1px;
    font-size: .9em;
}


/* ブックマークリスト */
.list {
    display: flex;
     flex-wrap: wrap;
}
.list li {
    margin: 0 .5em;
}


/* メールフォーム */
.mailForm input[type],.mailForm textarea {
     -webkit-appearance: none;
    margin: .5em 0;
}
.mailForm input[type="submit"] {
    -webkit-appearance: none;
    padding: .2em 1em;
    background: #f7d4df;
}
.mailForm input[type="text"],.mailForm textarea {
    padding: .2em;
    width: 50%;
     min-width: 400px;
    border: solid 1px #aeb2b9;
}

.mailForm textarea {
    height: 6em;
}

input[type="reset" i] {

background-color:#f0f0f0;

}

input[type="button" i] {
background-color:#f0f0f0;
}



/* ヘッダー */
.mainHeader {
    display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
    position: relative;
    margin: 15vh auto 5vh;
}
.mainHeader::before,.mainHeader::after {
    content: '';
    display: block;
}

.mainHeader::before {
    position: absolute;
     top: -6em;
     right: calc(50% - 2.5em);
    width: 5em;
    height: 5em;
    background: url('../img/design50_icon.png') center / contain no-repeat transparent;
    z-index: 2;
}

.mainHeader::after {
    position: absolute;
    top: -6em;
    right: calc(50% - 3em);
    width: 6em;
    height: 6em;
    border-radius: 50%;
    background: url('../img/design50_4.jpg') left center / cover no-repeat #dbf5ff;
    mix-blend-mode: screen;
    z-index: 3;
}
h1 {
    font-family: 'Pacifico', 'メイリオ', 'Marcellus', serif;
    padding: .5em 1em;
    font-size: 4em;
}


.mainHeader > div {
    color: #aeb2b9;
    font-size: 1rem;
    letter-spacing: 0.1em;
}


/* ナビゲーション */
.mainNav {
    position: sticky;
    padding: 2rem 0;
    width: 100%;
    background: url('../img/design50_4.jpg') center / auto #dbf5ff;
    box-shadow: 1px 0 1em #e4e4e4;
    z-index: 4;
   position: fixed;
    bottom: 0;
}
.mainNav ul {
    display: flex;
     justify-content: center;
    margin: 0 auto;
    padding-left: 0;
}
.mainNav li {
    margin: 0.3em;
    padding: 0 0.4em;
}

.mainNav li a {
    padding:0.5em 0.5em;
    color: #384d66;
    font-size: 1.2em;
    transition: 0.3s ease-in-out;
}
.mainNav li a:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #294257;
}


/* モバイル用CSS */
@media (max-width:800px) {
    body {
        font-size: 1.1rem;
    }
    h4 {
        margin: 1em;
    }
    p {
        padding: 0 1em;
    }
    section {
        margin: 3em 0;
    }
    .wrap {
        padding: 1em 0;
        margin: 3vh auto;
         width: 90%;
         max-width: 500px;
         min-width: 200px;
    }

    .space {
        margin: 2em 1em;
    }
    .longList {
        flex-direction: column;
        margin: 0 auto;
         width: 90%;
         max-width: 350px;
    }
    .longList li {
        margin: 1em 0;
        width: 100%;
        overflow: hidden;
    }
    .longList > li:nth-of-type(even) {
        margin: 2em 0;
    }
    .longList li a {
        padding: 2rem 0;
    }
    .longInfo {
        padding: 1rem 2em;
    }
    .shortList {
        columns: 1;
    }
    .wrap-text,.wrap-text + aside {
        width: 100%;
        min-width: 300px;
    }
    .wrap-text + aside {
        width: 70%;
    }
    .mailForm input[type="text"],.mailForm textarea {
        width: 80%;
        min-width: 200px;
    }
    .mainNav {
        padding: 1rem 0;
    }
    .mainNav li a {
        font-size: 1.2em;
    }
}

