.container {
  display: grid;
  grid-template-columns: [full-start] minmax(10px, 1fr) [main-start] minmax(0, 85vw) [main-end] minmax(10px, 1fr) [full-end];
}

.container > * {
  grid-column: main;
}

.container-full {
  grid-column: full;
}

html {
  font-size: 62.5%;
}

html {
  overflow-y: scroll;
}

body {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-areas: "header" "main" "footer";
}

.wrapper {
  overflow: hidden;
}

.header {
  grid-area: header;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 40px;
  }
}

.header-title {
  display: block;
}
.header-title img {
  width: 100%;
  height: auto;
}

.sp-img {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-img {
    display: none;
  }
}

.pc-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-img {
    display: block;
  }
}

.footer {
  grid-area: footer;
  text-align: center;
  color: #333;
  padding: 20px 0;
}

.product-wrapper {
  grid-area: main;
}

.product-banner {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  row-gap: 10px;
}
.product-banner:hover {
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .product-banner {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 0;
  }
}
.product-banner-item {
  grid-column: 1/-1;
}
.product-banner-item img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .product-banner-item {
    grid-column: span 3;
  }
}
.product-banner-item-grandchild {
  grid-column: 1/-1;
  width: 100%;
  height: auto;
}
.product-banner-item-grandchild img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .product-banner-item-grandchild {
    grid-column: span 1;
  }
}

.product-banner-item:first-of-type {
  display: grid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .product-banner-item:first-of-type {
    grid-column: span 2;
  }
}

.download {
  text-align: center;
}

.download-btn {
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
  padding: 1em 2em;
  background-color: #136DF5;
  color: #fff;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
.download-btn:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .download-btn {
    width: initial;
  }
}

.icon-download {
  margin-left: 1em;
}
/*# sourceMappingURL=style.css.map */