@charset "UTF-8";
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  margin: 0;
  font-family: "Meiryo", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "sans-serif";
}

header {
  padding: 20px 0 0 0;
  text-align: center;
}

header .header-container {
  background-image: url("rainbow.png");
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: left 40% bottom 100%;
}

header .header-container .site-title {
  width: 20%;
}

.link-wrapper {
  border-top: solid 1px #b6b6b6;
}

.link-wrapper .link-container {
  padding-top: 20px;
}

.link-wrapper .link-container .link-area {
  width: 70%;
  height: 60%;
  margin: 0 auto;
  text-align: center;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link-wrapper .link-container .link-area li {
  width: 15%;
  padding: 0 5%;
}

.link-wrapper .link-container .link-area li img {
  width: 100%;
  height: auto;
}

.link-wrapper .link-container .link-area li img:hover {
  cursor: pointer;
  opacity: 0.7;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.link-wrapper .wave-blue-container {
  margin-top: 12px;
}

.link-wrapper .wave-blue-container .wave-blue {
  vertical-align: bottom;
  width: 100%;
}

.main-wrapper {
  background-color: #0d79f2;
  background-image: url(bg-fish.png);
  padding: 32px 0;
}

.main-wrapper .main-container {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.main-wrapper .main-container .main-description {
  font-size: 2.2vw;
  color: white;
  padding-bottom: 8px;
}

.main-wrapper .main-container .main-description .icon {
  width: 6vw;
}

.main-wrapper .main-container .osakana-list-container .osakana-list {
  font-weight: bold;
  list-style: none;
  display: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-wrapper .main-container .osakana-list-container .osakana-list .list {
  padding: 20px 20px;
  display: inline-block;
  border-radius: 40px;
  background-color: white;
  text-align: center;
  width: 25%;
  margin-left: 2%;
  margin-bottom: 2%;
}

.main-wrapper .main-container .osakana-list-container .osakana-list .list:hover {
  cursor: pointer;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.9;
}

.main-wrapper .main-container .osakana-list-container .osakana-list .list .list-box {
  text-decoration: none;
}

.main-wrapper .main-container .osakana-list-container .osakana-list .list .list-box img {
  width: 95%;
  margin: 0 auto;
}

.main-wrapper .main-container .osakana-list-container .osakana-list .list .list-box p {
  color: black;
}

footer {
  text-align: center;
  padding: 20px 0 20px 0;
  border-top: solid 1px #b6b6b6;
}

footer .top-image .to-toppage {
  width: 10%;
}

footer .privacy-container {
  padding: 20px 0;
  text-align: center;
}

footer .privacy-container .p-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

footer .privacy-container .p-list a {
  color: black;
  font-size: 12px;
}

footer .privacy-container span {
  margin: 0 5px;
}

footer .site-rights {
  font-size: 10px;
}

@media screen and (max-width: 959px) {
  header {
    padding: 8px 0 4px 0;
  }
  header .header-container {
    background-size: 40%;
    background-position: left 20% bottom 100%;
  }
  header .header-container .site-title {
    width: 40%;
  }
  .link-wrapper .link-container .link-area {
    padding: 0;
    width: 68%;
  }
  .link-wrapper .link-container .link-area li {
    width: 30%;
    padding: 0 3%;
  }
  .main-wrapper .main-container {
    width: 92%;
  }
  .main-wrapper .main-container .main-description {
    color: white;
    padding-bottom: 8px;
  }
  .main-wrapper .main-container .main-description h2 {
    font-size: 4.5vw;
  }
  .main-wrapper .main-container .main-description h2 .icon {
    width: 6vw;
  }
  .main-wrapper .main-container .main-description p {
    font-size: 3.5vw;
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list {
    padding: 0;
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list .list {
    width: 38%;
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list .list:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list .list p {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 4vw;
  }
  footer .top-image .to-toppage {
    width: 16%;
  }
}

@media screen and (max-width: 480px) {
  header {
    padding: 8px 0 4px 0;
  }
  header .header-container {
    background-size: 50%;
    background-position: left 20% bottom 100%;
  }
  header .header-container .site-title {
    width: 50%;
  }
  .link-wrapper .link-container .link-area {
    padding: 0;
    width: 90%;
    height: auto;
  }
  .link-wrapper .link-container .link-area li {
    width: 30%;
    padding: 0 3%;
  }
  .main-wrapper .main-container {
    width: 92%;
  }
  .main-wrapper .main-container .main-description {
    color: white;
    padding-bottom: 8px;
  }
  .main-wrapper .main-container .main-description h2 {
    font-size: 5vw;
  }
  .main-wrapper .main-container .main-description h2 .icon {
    width: 6vw;
  }
  .main-wrapper .main-container .main-description p {
    font-size: 4vw;
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list {
    padding: 0;
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list .list {
    width: 32%;
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list .list:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .main-wrapper .main-container .osakana-list-container .osakana-list .list p {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 4vw;
  }
  footer .top-image .to-toppage {
    width: 28%;
  }
}
/*# sourceMappingURL=osakana.css.map */