@charset "UTF-8";
@import url("http://fonts.googleapis.com/earlyaccess/notosansjp.css");
body {
  margin: 0;
  background-color: #f8f8f8;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 600px) {
  .u-pc {
    display: none;
  }
}

@media print, screen and (min-width: 601px) {
  .u-sp {
    display: none;
  }
}
img {
  width: 100%;
}

header {
  background-image: url("/app/images/header_bg.png");
  background-position: center;
  background-size: cover;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 601px) {
  header {
    height: 260px;
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 120px;
  }
}

h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
}
@media print, screen and (min-width: 601px) {
  h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
}

h3 {
  font-weight: 300;
  text-align: center;
  padding: 0 0 40px 0;
  margin: 0 0 20px 0;
}
@media print, screen and (min-width: 601px) {
  h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 24px;
  }
}

._lead {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 601px) {
  ._lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  ._lead {
    font-size: 16px;
  }
}

@media print, screen and (min-width: 601px) {
  .container {
    max-width: 900px;
    margin: 0px auto;
    padding: 60px 0;
    display: flex;
    gap: 60px;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .container {
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
}

@media print, screen and (min-width: 601px) {
  .app-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .app-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
}

.app {
  display: block;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 601px) {
  .app {
    width: calc(50% - 22px);
  }
}
.app:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}
.app img {
  vertical-align: top;
}
.app a {
  display: block;
}
.app .app-image {
  background-color: #f8f8f8;
}
.app .app-content {
  padding: 20px;
}
.app .app-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.app .app-desc {
  margin-bottom: 0.6rem;
}

footer {
  border-top: 1px solid #eee;
  background-color: #fff;
  text-align: center;
  padding: 40px 0;
  font-size: 16px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
footer .links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer .links li {
  list-style: none;
}
footer a {
  color: #333;
  text-decoration: none;
  margin-right: 20px;
  position: relative;
  padding-left: 15px;
}
footer a:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: "";
  height: 5px;
  width: 5px;
  border: 1px solid #000;
  border-left-width: 0;
  border-top-width: 0;
  transform: translate(0, -50%) rotate(-45deg);
}
footer small {
  font-size: 14px;
  color: #888;
}