@charset "UTF-8";
/* CSS Document */
/*------------------------------
TOPページオリジナル
------------------------------*/
main {
  row-gap: 0;
}
.top .contents__ttl {
  margin-top: 30px;
}
.ttl {
  grid-row: 1 / 2;
}
.contents {
  grid-row: 1 / 2;
}
.btnGray.topBtn__box li {
  display: flex;
}
.btnGray.topBtn__box a {
  width: 100%;
  min-height: 188px;
  padding: 34px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btnGray.topBtn__box img {
  margin: 0 auto 16px;
  display: block;
}
.linkSupportApp p {
  position: relative;
  padding-left: 50px;
}
.linkSupportApp p::before {
  position: absolute;
  display: inline-block;
  content: "";
  background: url("../img/icon_04.svg")no-repeat;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.linkSupportApp img {
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .ttl {
    order: 1;
    grid-row: auto;
  }
  .top .contents__ttl {
    margin-top: 0;
  }
  .contents {
    order: 2;
    grid-row: auto;
  }
  .topBtn__box a {
    min-height: 120px;
    padding: 12px;
  }
  .topBtn__box img {
    margin: 0 auto 8px;
  }
}