html {
  height: 100%;
}

body {
  height: 100%;
}

.container {
  margin-left: 24px;
  margin-right: 24px;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

.header {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0F488A;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .logo-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .logo-title .logo {
  width: 56px;
  height: 56px;
}
.header .logo-title .title {
  margin-left: 4px;
  font-size: 32px;
  color: #0F488A;
  font-family: "Kodchasan", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.header .logo-title .subtitle {
  font-size: 16px;
}
.header .adpc-container {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.header .adpc-container .adpc-title {
  font-size: 14px;
}

.category-label {
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #404280;
  color: #ffffff;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 18px;
}

.product-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(510px, 1fr));
  gap: 16px 24px;
}
.product-list .product {
  border-radius: 8px;
  padding: 8px 16px;
  border: 1px solid #0F488A;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 8px 16px;
}
.product-list .product .product-img {
  grid-row: 1/3;
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-list .product .product-img img {
  width: 56px;
}
.product-list .product .product-title {
  grid-row: 1;
  grid-column: 2;
  font-size: 20px;
  color: #0F488A;
  font-family: "Kodchasan", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.product-list .product .product-description {
  grid-row: 2;
  grid-column: 2;
  font-size: 16px;
  line-height: 20px;
  color: #1D1D1D;
}
.product-list .unavailable .product-title {
  color: #adadad;
}
.product-list .unavailable .product-description {
  color: #adadad;
}

.footer {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 2px solid #0F488A;
}
.footer .footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  row-gap: 8px;
}
.footer .footer-nav .footer-nav-item {
  padding-right: 8px;
  padding-left: 8px;
  color: #4b4b4b;
  border-right: #0F488A 1px solid;
}
.footer .footer-nav .footer-nav-item:last-child {
  border-right: none;
}
.footer .footer-nav .footer-nav-item img {
  width: 14px;
  height: 14px;
}
.footer .footer-nav .img-center {
  height: 100%;
  display: flex;
  align-items: center;
}
.footer .footer-notice {
  margin-top: 8px;
  margin-left: 8px;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .container {
    margin-left: 8px;
    margin-right: 8px;
  }
  .header {
    padding-top: 8px;
    padding-bottom: 0;
    border-bottom-width: 1px;
  }
  .header .logo-title .logo {
    width: 44px;
    height: 44px;
  }
  .header .logo-title .title {
    font-size: 28px;
  }
  .header .adpc-container {
    display: none;
  }
  .category-label {
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 16px;
    width: auto;
    text-align: center;
  }
  .product-list {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 24px;
  }
  .product-list .product {
    border-radius: 8px;
    padding: 0;
    border: none;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 2px 8px;
  }
  .product-list .product .product-img img {
    width: 48px;
    height: 48px;
  }
  .product-list .product .product-title {
    font-size: 20px;
  }
  .product-list .product .product-description {
    font-size: 13px;
    line-height: 18px;
  }
  .footer {
    margin-top: 24px;
    font-size: 14px;
  }
  .footer .footer-notice {
    margin-top: 8px;
    margin-left: 8px;
    font-size: 10px;
  }
}/*# sourceMappingURL=index.css.map */