@charset "UTF-8";
* {
  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);
}

.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;
}

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

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

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

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

.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;
}

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

.main {
  display: block;
  top: 45%;
  left: 0;
  width: 100%;
  height: 700px;
}

.main .logo {
  width: 100%;
  height: 300px;
  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;
}

.main > .input {
  width: 500px;
  height: 45px;
  position: relative;
}

.main > .input input {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  padding: 0 50px;
  font-size: 105%;
}

.main > .input .icon {
  position: absolute;
  color: #000;
  font-size: 27.5px;
  color: #d1d1d1;
  display: block;
  top: 6.5px;
}

.main > .input .icon:first-of-type {
  left: 10px;
}

.main > .input .icon:hover {
  color: #3465BF;
}

.main .search-box {
  width: 100%;
}

.main .search-box .input {
  width: 450px;
  height: 50px;
  margin: 0 auto;
  outline: 2px solid #ccc;
  position: relative;
}

.main .search-box .input input {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  padding: 0 50px;
  font-size: 105%;
}

.main .search-box .input .icon {
  position: absolute;
  color: #000;
  font-size: 27.5px;
  color: #d1d1d1;
  display: block;
  top: 6.5px;
}

.main .search-box .input .icon:first-of-type {
  left: 10px;
}

.main .search-box .input .icon:last-of-type {
  right: 10px;
}

.main .search-box .input .icon:hover {
  color: #3465BF;
}

.main .search-box .filter {
  display: none;
  margin: 0 auto;
  margin-top: 20px;
  width: 450px;
  padding: 10px 20px;
  border: 1px solid #fdfdfd;
  border-radius: 5px;
}

.main .search-box .filter ul li {
  list-style: none;
}

.main .search-box .filter .submit {
  text-align: right;
}

.main .search-box .filter .submit button {
  padding: 3px 8px;
}

.main .search-box #switch:checked + .filter {
  display: block;
}

.main .comics {
  width: 100%;
  min-height: 200px;
  margin-top: 10px;
}

.main .comics:empty {
  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;
  width: 800px;
}

.main .comics:empty::before {
  content: "見つかりませんでした。";
  font-size: 2em;
}

.main .comics .card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 50px;
  width: 45%;
  margin: 20px;
}

.main .comics .card img {
  height: 200px;
  margin-right: 10px;
}
/*# sourceMappingURL=style.css.map */