@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;
}

/* 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: -2px;
}

/* ==========================================
  以下、デザインを決める記述です
   ========================================== */
body {
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(220, 230, 247, 0.2) 1px, rgba(220, 230, 247, 0.2) 9px );
  /* 以上の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: #4682b4;
  /* リンクの色 */
}

a:hover {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
  /* リンクをホバーすると色が明るくなります */
}

p,
ul {
  font-size: 14px;
  padding-left: 25px;
  padding-right: 30px;
}

@media (max-width: 575px) {
  p,
  ul {
  font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

h4 {
  padding-left: 10px;
}

.margin-top {
  margin-top: 30px;
}

.margin-bottom {
  margin-bottom: 30px;
}

img {
  max-width: 100%;
}

img + img {
  margin-left: 5px;
}

h2 {
  font-size: 140%;
  font-weight: normal;
  margin: 20px 5px;
  width: 95%;
}

h2:after {
  content: '';
  display: block;
  width: 100%;
  position: relative;
  top: 5px;
  height: 5px;
  /* ここから見出しの下線のストライプ */
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(220, 230, 247, 0.5) 1px, rgba(220, 230, 247, 0.5) 9px );
  /* ここまで見出しの下線のストライプ */
}

@media (max-width: 575px) {
  h2 {
    font-size: 110%;
  }
}

.row > h2 {
  padding-left: 15px;
  padding-right: 15px;
}

h3 {
  font-weight: normal;
  font-size: 120%;
  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: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(220, 230, 247, 0.5) 1px, rgba(220, 230, 247, 0.5) 9px );
  /* ここまで見出しの下線のストライプ */
}
@media (max-width: 575px) {
  h3 {
    font-size: 100%;
  }
}

input[type=submit] {
  /* ここから背景のストライプ */
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(220, 230, 247, 0.5) 1px, rgba(220, 230, 247, 0.5) 9px );
  /* ここまで背景のストライプ */
  border: 1px solid #e2e2e2;
  padding: 2px 8px;
  font-size: 11px;
  
}

input[type=submit]:focus {
  outline: none;
}

header img.heroimg {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: 0px;
}

@media (max-width: 575px) {
  header img.heroimg {
    height:0px;
  }
  header h1 {
    font-size: 100%;
  }
  header p {
    font-size: 8px;
  }
}

header .container {
  padding: 0;
}

header .wrapper {
  position: relative;
}

header .wrapper .inner {
  position: absolute;
  top: 35%;
  margin-left: 5%;
}

header h1,
header p {
  color: #ffffff;
  padding: 0;
  -webkit-filter: drop-shadow(0 0 4px #c0c5cf);
          filter: drop-shadow(0 0 4px #c0c5cf);
}

#text header img.heroimg {
  height: 50px;
}

#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;
  margin: 10px auto;
  border-top: 0px dotted #c0c5cf;
  border-bottom: 1px dotted #c0c5cf;
}

#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: 10px;
  width: calc(100% - 80px);
}

#headernav nav ul li a {
  display: block;
}

.sidebarinner {
  padding: 20px;
  /* ここから２カラムデザインのPC閲覧時サイドバースクロール追従 */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* ここまで２カラムデザインのPC閲覧時サイドバースクロール追従。不要なら削除してください */
}

@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;
  }
  #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% - 80px);
  }
  #sidebar nav ul li a {
    display: block;
  }
}

.update {
  background: #DCE6F733;
  padding: 10px;
  width: 95%;
  overflow: hidden;
  font-size: 15px;
  margin: 10px auto;
  border-radius: 4px;
}

.update .inner {
  height: 80px;
  overflow-y: scroll;
}

.update .inner::-webkit-scrollbar {
  width: 5px;
}

.update .inner::-webkit-scrollbar-track {
  background: #DCE6F733;
}

.update .inner::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 2px;
}

.update .inner dt {
  width: 100px;
}

.update .inner dd {
  width: calc(100% - 100px);
}

@media (max-width: 575px) {
  .update .inner {
    font-size: 12px;
  }
  .update .inner dt {
    width: 80px;
  }
}

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-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.illust {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
}

ul.illust li {
  position: relative;
  height: 150px;
  width: 150px;
  margin-bottom: 10px;
}

ul.illust li:not(:last-of-type) {
  margin-right: 10px;
}

ul.illust li a {
  display: block;
}

ul.illust li a img {
  border: 1px solid #dcdfe2;
  border-radius: 10px;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

ul.illust li.new::after {
  content: 'new';
  /* ここから背景のストライプ */
 background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(220, 230, 247, 0.5) 1px, rgba(220, 230, 247, 0.5) 9px );
  /* ここまで背景のストライプ */
  position: absolute;
  padding: 0 5px;
  right: 1px;
  bottom: 0;
  display: block;
  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 575px) {
  ul.illust li {
    height: 60px;
    width: 60px;
  }
  ul.illust li a img {
    height: 60px;
    width: 60px;
  }
}
ul.log {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
}

ul.log li {
  position: relative;
  height: 100px;
  width: 100px;
  margin-bottom: 10px;
}

ul.log li:not(:last-of-type) {
  margin-right: 10px;
}

ul.log li a {
  display: block;
}

ul.log li a img {
  border: 1px solid #dcdfe2;
  border-radius: 10px;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

ul.log li.new::after {
  content: 'new';
  /* ここから背景のストライプ */
 background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(220, 230, 247, 0.5) 1px, rgba(220, 230, 247, 0.5) 9px );
  /* ここまで背景のストライプ */
  position: absolute;
  padding: 0 5px;
  right: 1px;
  bottom: 0;
  display: block;
  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 575px) {
  ul.log li {
    height: 60px;
    width: 60px;
  }
  ul.log li a img {
    height: 60px;
    width: 60px;
  }
}
ul.link01 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 10px 0;
}

ul.link01 li {
  margin-right: 8px;
}

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 #e8f3fa;
}

.mailform textarea {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  padding: 3px 5px;
  width: 80%;
  vertical-align: bottom;
}

.mailform input[type="submit"] {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  padding: 3px 5px;
}

.mailform input[type=text] {
  margin: 0 0 5px;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  padding: 3px 5px;
  width: 80%;
}

footer .container {
  padding: 30px 0 0;
}

footer .template {
  text-align: right;
  width: 100%;
  padding: 5px 10px;
  background: #333;
  color: #ddd;
  font-size: 12px;
}

footer a.home {
  text-decoration: none;
  color: #54c6ff;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}

hr {
  height: 1px;
  background-color: #cccccc;
  width: 80%;
  border: none;
  margin: 40px auto;
}

h2.h2-a {
  margin: 30px auto 40px;
  text-align: center;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  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 #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: 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: 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;
}

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: 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: white;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 2px, #e2e2e2 2px, #e2e2e2 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;
  }
 }
/* ==========================================
  以下、追加用
   ========================================== */
/*アイコンメモ*/
.box-006 {
    display: flex;
    grid-gap: 0 .7em;
    margin: 0 auto;
    padding: 1em;
    border-radius: 5px;
    background-color: #fff;
    color: #b0c4de;
}

.box-006::before {
    width: 24px;
    height: 24px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.8995 6.85453L17.1421 11.0972L7.24264 20.9967H3V16.754L12.8995 6.85453ZM14.3137 5.44032L16.435 3.319C16.8256 2.92848 17.4587 2.92848 17.8492 3.319L20.6777 6.14743C21.0682 6.53795 21.0682 7.17112 20.6777 7.56164L18.5563 9.68296L14.3137 5.44032Z' fill='%23b0c4de'%3E%3C/path%3E%3C/svg%3E");
}

.box-006 p {
    margin: 0;
    padding: 0 0 0 .7em;
    border-left: 1px solid #b0c4de;
    font-size: 100%;
}
  /* marker色付き */
span.marker {
    background-image: repeating-linear-gradient(-45deg,
        #dce6f7 0, #dce6f7 3px,
        transparent 3px, transparent 6px);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 50%;
    font-size: 100%;
}
span.marker2 {
    background-image: repeating-linear-gradient(-45deg,
        #dce6f7 0, #dce6f7 3px,
        transparent 3px, transparent 6px);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 50%;
    font-size: 110%;
}

 /* テーブル */
.table_design05 {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}
.table_design05 th, .table_design05 td {
  padding: 1em;
}
.table_design05 th {
  color: #4d9bc1;
  font-weight: normal;
  text-align: left;
  width: 25%;
  min-width: 4em;
  position: relative;
}
.table_design05 th::after {
  content: '';
  background-color: #c1c7c6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
}
 /* テーブル 2*/
.table_design06 {
  border-collapse: collapse;
  width: 100%;
  max-width: 400px;
  margin: 1% 15px;
}
.table_design06 th, .table_design06 td {
  padding: 5px;
}
.table_design06 th {
  color: #666;
  font-weight: lighter;
  text-align: left;
  width: 20%;
   font-size: 90%;
  min-width: 4em;
  position: relative;
}
.table_design06 td {
  color: #666;
  font-size: 85%;
}
.table_design06 th::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translateY(-50%);
  width: 0px;
  border: dashed 0.5px #ccc;
  height: 60%;
}  /*-------------------------------------------
  コミックページ　キャラ紹介
  -------------------------------------------*/
  #about .content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #about Img {
    width: 35%;
    height: 35%;
    border-radius: 50%;
    margin-right: 5px;
  }
  #about .text {
    text-align: left;
  }
 #about .txt {
   font-size: 12px;
}
    /*-------------------------------------------
    comic
    -------------------------------------------*/
/*－－－－－－－－－－ 横並び －－－－－－－－－－*/
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px 6%;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .comic {
    gap: 10px;
  }
}
.comic .comic_v{
  width: calc((100% - 60px) / 4);
}
.comic .comic_v a .comic_img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .comic .comic_v {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 520px) {
  .comic .comic_v {
    width: calc((100% - 10px) / 2);
  }
  .comic .comic_v a .comic_img {
    height: 140px;
  }
}
  
 .cp_card {
  position: relative;
}
/*リボンの位置*/
.cp_ribbon09 {
  position: absolute;
  top: 15px;
  right: 5px;
  display: flex;
  align-items: center;1r;
  height: 40px;
  padding: 0 10px;
  color: #ffffff;
  background: #4d90ae;
  font-size: 13px;
  font-weight: bold;
}
.cp_ribbon09:before,
.cp_ribbon09:after {
  position: absolute;
  content: '';
}
.cp_ribbon09:before {
  top: 0px;
  right: 0;
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 0px solid #14455b;
  border-left: 0px solid #14455b;
}
.cp_ribbon09:after {
  top: 0;
  left: -20px;
  border-top: 20px solid #4d90ae;
  border-bottom: 20px solid #4d90ae;
  border-left: 20px solid transparent;
}

/*ボタン*/
.buttons{
  text-align: center;
  font-weight: bold;
  margin: 1em;
}
.buttons2{
  text-align: center;
  font-weight: bold;
  margin: 4em auto;
}
.buttons3{
  text-align: right;
}
/* 装飾用 */

.display-inline-block {
  display: inline-block;
  width: 150px;
  padding: 7px 0;
  margin: 1% 5px;
  text-decoration: none;
  text-align: center;
  font-size: 80%;
  border-radius: 100px;
  color: #fff;
  background-color: #4682b4;
}
.menu2 {
display: flex;
flex-flow: column;
  width: 85%;
  padding: 7px 0;
  margin: 1em;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  color: #666;
  /* ここから背景のストライプ */
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(220, 230, 247, 0.5) 1px, rgba(220, 230, 247, 0.5) 9px );
  /* ここまで背景のストライプ */
}
  /* 上部へ戻るボタン */
/* ボタン全体 */
.button5{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 15px;
  bottom: 5px;
  width: 50px;
  height: 50px;
  color: #fff;
  background:#4682b4;
  border-radius: 50px;
  transition: .3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
.is-active{
  /* 表示する */
  opacity: 0.6;
  visibility: visible;
}

/* フッター改変 */
.footer-3 {
    padding: 3rem 2rem 1.5rem;
    background-color: #101010;
}

.footer-3__container {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-3__logo {
    width: 15px;
    height: 15px;
    margin-bottom: .2em;
}

.footer-3__caption {
    margin-top: 0;
    color: #a6adb3;
    font-size: .50em;
}

.footer-3__title,
.footer-3__link {
    margin: 0 0 .8em;
    color: #a6adb3;
    font-size: .9em;
}

.footer-3__title {
    font-weight: 300;
}

.footer-3__list {
    padding: 0;
    list-style-type: none;
}

.footer-3__link {
    display: block;
    color: #4682b4;
}

.footer-3__link:not(:hover) {
    text-decoration: none;
}

@media only screen and (max-width: 575px) {
    .footer-3__container {
        justify-items: center;
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
       text-align: center;
    }
    .footer-3__head {
        grid-column: 1/3;
    }
}
.wrap_original {
overflow: hidden;
}
/* main */
header {
    height: 330px;
    z-index: 10;
}
.header-banner {
    background-color: #000;
    background-image: url('https://memoirescape.com/img/top.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
}

header h1 {
    color: #fff;
    font-size:  150%;
    padding: 0 1rem;
    position: absolute;
    top: 6rem; 
    left: 4rem;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
}

.nav_h {
    width: 100%;
    height: 60px;
    background: #000;
    postion: fixed;
    z-index: 10;
}

.nav_h div {
    color: white;
    font-size:  2rem;
    line-height: 60px;
    position: absolute;
    top: 0;
    left: 2%;
    visibility: hidden;
}
.visible-title {
    visibility: visible;
}

.nav_h ul { 
    list-style-type: none;
    margin: 0 6% auto 0;
    padding-left: 0;
    text-align: right;
    max-width: 100%;
    white-space:nowrap
}
.nav_h ul li { 
    display: inline-block; 
    line-height: 60px;
    margin-left: 10px;
}
.nav_h ul li a {
    text-decoration: none; 
    color: #a9abae;
}