@charset "UTF-8";
@font-face {
  font-family: myni;
  src: url(runcomic_header_font.woff2);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#3465BF), to(#C7A19B));
  background: linear-gradient(#3465BF, #C7A19B);
}

.wrapper {
  max-width: 1200px;
  min-height: calc(100vh - 50px);
  margin: 0 auto;
  position: relative;
  /* 詳細サイト用 */
}

.wrapper .header {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
}

.wrapper .header .logo {
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.wrapper .header .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrapper .header .links .btn1 {
  display: inline-block;
  padding: 5px 20px;
  background-color: #C7A19B;
  border-radius: 500px;
  text-decoration: none;
  color: #fff;
}

.wrapper .header .links .btn2 {
  display: inline-block;
  padding: 5px 20px;
  color: #d1d1d1;
  text-decoration: none;
}

.wrapper .header .links .search {
  color: #3465BF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
}

.wrapper .header .links .search:hover {
  background-color: #5cc76b;
}

.wrapper .header .hum {
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2em;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
}

.wrapper .header .hum:hover {
  -webkit-box-shadow: inset -2px -2px 2px 0px rgba(255, 255, 255, 0.5), inset 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
          box-shadow: inset -2px -2px 2px 0px rgba(255, 255, 255, 0.5), inset 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.wrapper .sum {
  width: 100%;
  height: 500px;
  background: -webkit-gradient(linear, right top, left top, from(#5cc75b), color-stop(#5b67c7), to(#5b9bc7));
  background: linear-gradient(270deg, #5cc75b, #5b67c7, #5b9bc7);
  background-size: 600% 600%;
  -webkit-animation: AnimationName 33s ease infinite;
          animation: AnimationName 33s ease infinite;
  margin-bottom: 20px;
  position: relative;
  padding: 50px;
}

.wrapper .sum h1 {
  margin: 50px;
  text-align: center;
  font-family: myni;
  letter-spacing: .3em;
  text-shadow: -2px 2px 4px white;
}

.wrapper .sum .box {
  display: block;
  padding: 50px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 90%;
  background-color: #fff;
  margin: 0 auto;
}

.wrapper .sum .box p {
  font-size: 1.06em;
}

.wrapper .sum .box .btns {
  margin-top: 50px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.wrapper .sum .box .btns .btn1 {
  background-color: #5cc75b;
  padding: 15px 35px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
}

.wrapper .sum .box .btns .btn2 {
  background-color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  color: #555;
  outline: #5cc75b 2px solid;
  outline-offset: -2px;
  display: inline-block;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.wrapper .fixed-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.wrapper .fixed-menu div {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.wrapper .fixed-menu div .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

.wrapper .fixed-menu div .search {
  position: relative;
  display: block;
  width: 80%;
  height: 50px;
  background-color: #3465BF;
  margin: 45px auto;
}

.wrapper .fixed-menu div .search input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  -webkit-box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  padding-left: 55px;
  padding-right: 5px;
}

.wrapper .fixed-menu div .search .icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  background-color: #3465BF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.wrapper .fixed-menu div a {
  display: block;
  margin: 20px;
  padding: 10px 0;
  border-bottom: 2px solid #555;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.wrapper .fixed-menu div a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 0%;
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
  background-color: #5cc76b;
  display: block;
}

.wrapper .fixed-menu div a:hover::before {
  width: 100%;
}

.wrapper #fixed_menu:checked + .fixed-menu {
  opacity: 1;
  pointer-events: auto;
}

.wrapper #fixed_menu:checked + .fixed-menu div {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.wrapper .comic-list {
  width: 100%;
}

.wrapper .comic-list h1 {
  color: #fff;
  padding: 10px;
  font-size: 1.2em;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.7);
}

.wrapper .comic-list .section {
  padding: 20px;
  border-top: 2px solid #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1rem;
  grid-auto-rows: 300px;
}

.wrapper .comic-list .section::-webkit-scrollbar {
  width: 5px;
}

.wrapper .comic-list .section::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.3);
}

.wrapper .comic-list .section::-webkit-scrollbar-thumb:hover {
  background-color: rgba(92, 199, 107, 0.8);
}

.wrapper .comic-list .section::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.3);
}

.wrapper .comic-list .section .card {
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  margin: 0 20px;
  -webkit-transition: -webkit-box-shadow, -webkit-transform .3s ease;
  transition: -webkit-box-shadow, -webkit-transform .3s ease;
  transition: box-shadow, transform .3s ease;
  transition: box-shadow, transform .3s ease, -webkit-box-shadow, -webkit-transform .3s ease;
  will-change: transform;
}

.wrapper .comic-list .section .card .img {
  width: 80%;
  height: calc(3px * 100 / 1.3);
  -o-object-fit: contain;
  object-fit: contain;
}

.wrapper .comic-list .section .card .detail {
  padding: 12px;
}

.wrapper .comic-list .section .card .detail h2 {
  font-size: 1em;
  font-weight: 100;
}

.wrapper .comic-list .section .card::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: #5cc76b solid;
  border-left: #5cc76b solid;
  border-width: 6px;
  position: absolute;
  top: -10px;
  left: -10px;
}

.wrapper .comic-list .section .card::after {
  content: '';
  width: 10px;
  height: 10px;
  border-bottom: 6px #5cc76b solid;
  border-right: 6px #5cc76b solid;
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.wrapper .comic-list .section .card:hover {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.02, 1.02);
  transform: scale(1.02, 1.02);
  z-index: 1;
}

.wrapper .frame {
  width: calc(100% - 10px);
  margin: 20px auto;
  min-height: 300px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
}

.wrapper .frame h1 {
  color: #5cc76b;
  font-size: 1.5em;
  padding: 10px 0;
}

.wrapper .frame h2 {
  font-weight: 300;
}

.wrapper .frame h2::before {
  content: '・';
}

.wrapper .frame p {
  font-size: 1.1em;
  text-indent: .3em;
  font-weight: 300;
  margin: 20px 0;
}

.wrapper .frame img {
  display: block;
  margin: 20px auto;
  width: 500px;
}

.wrapper .centre-box {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wrapper .centre-box h2 {
  padding: 10px 0;
  color: #5cc76b;
  font-weight: 300;
}

.wrapper .centre-box .penname {
  width: 230px;
  height: 45px;
  margin: 5px 0;
  background-color: #fff;
}

.wrapper .centre-box .penname input {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  padding: 0 10px;
}

.wrapper .centre-box .error-area {
  margin-top: 10px;
}

.wrapper .centre-box .error-area .red {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #ff6));
  background: linear-gradient(transparent 90%, #ff6 90%);
}

.wrapper .centre-box .points {
  padding: 10px;
}

.wrapper .centre-box .points .point {
  font-size: .8em;
}

.wrapper .centre-box .points .point.checked > span {
  text-decoration: line-through;
  font-style: italic;
}

.wrapper .centre-box .points .point.checked::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #5cc76b;
  margin-right: 5px;
  margin-left: 0;
  -webkit-transition: margin-left .3s ease;
  transition: margin-left .3s ease;
}

.wrapper .centre-box .points .point::before {
  content: "\f00d";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #505050;
  margin-right: 5px;
  margin-left: 0;
  -webkit-transition: margin-left .3s ease;
  transition: margin-left .3s ease;
}

.wrapper .centre-box .send {
  background-color: #408b4b;
  color: #fff;
  width: 230px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin: 5px 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  border: none;
  outline: none;
}

.wrapper .centre-box .send span {
  margin-right: 5px;
}

.wrapper .centre-box .send.disable {
  -webkit-filter: grayscale(0.7);
  filter: grayscale(0.7);
  color: #d1d1d1;
  opacity: .3;
  cursor: not-allowed;
}

.wrapper .centre-box .anothor {
  color: #363636;
}

.footer {
  position: relative;
  height: 280px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.footer .container {
  max-width: 800px;
  margin: 0 auto;
}

.footer .container.douka {
  text-align: center;
}

.footer .container.douka .main {
  background-color: transparent;
  border: none;
  margin: 0 auto;
}

.footer .container .main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer .container .main .label {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0 20px;
  border-left: #fff 2px solid;
  height: 50px;
  line-height: 50px;
}

.footer .container .main .label::before {
  content: 'RUNCOMIC is being made by MTUGB';
}

.footer .container .main div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .container .main div > * {
  margin: 0 10px;
}

.footer .container .main div .twitter {
  display: block;
  background-color: aliceblue;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 1em;
}

.footer .container .main div img {
  vertical-align: middle;
}

.footer .container .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 230px;
  padding-top: 20px;
  text-align: left;
}

.footer .container .links div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}

.footer .container .links div h2 {
  color: #fff;
  font-size: 1.1em;
  padding-left: 10px;
}

.footer .container .links div ul {
  padding: 10px;
  margin-left: 10px;
}

.footer .container .links div ul li {
  list-style: none;
  text-indent: -5px;
  margin: 5px 0;
}

.footer .container .links div ul li a {
  color: #d1d1d1;
  text-decoration: none;
}

.footer .container .links div ul li:before {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #5cc76b;
  margin-right: 5px;
  margin-left: 0;
  -webkit-transition: margin-left .3s ease;
  transition: margin-left .3s ease;
}

.footer .container .links div ul li:hover::before {
  margin-left: 5px;
}

.footer .container .links div + div {
  border-left: 2px solid #fff;
}

@media screen and (max-width: 767px) {
  .wrapper .fixed-menu {
    display: block;
  }
  .wrapper .header .logo {
    font-size: 1em;
  }
  .wrapper .header .links {
    display: none;
  }
  .wrapper .header .hum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wrapper .sum {
    padding: 20px;
    height: auto;
  }
  .wrapper .sum h1 {
    margin: 20px;
  }
  .wrapper .sum .box .btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .wrapper .sum .box .btns div {
    width: 100%;
  }
  .wrapper .sum .box .btns div .btn1,
  .wrapper .sum .box .btns div .btn2 {
    width: 100%;
    text-align: center;
  }
  .wrapper .sum .box .btns div .btn2 {
    margin: 20px 0;
  }
  .footer {
    height: auto;
  }
  .footer .container .links {
    display: none;
  }
  .footer .container .main .label::before {
    content: 'MTUGB';
  }
}
/*# sourceMappingURL=style.css.map */