/* EDKDS001-03_add */
@charset "utf-8";

@media screen and (max-width:768px) {
  /* 画面サイズが768pxまではここを読み込む */
  .catalog-top {
    margin-bottom: 40px;
  }
  .catalog-top__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .catalog-top__image {
    flex-shrink: 0;
    width: 30px;
    margin-right: 12px;
  }
  .catalog-top__image img {
    width: 100%;
  }
  .catalog-top__title {
    font-size: 20px;
    font-weight: bold;
  }
}

@media screen and (min-width: 769px) {
  /* 画面サイズが769pxからはここを読み込む */
  .catalog-top {
    width: 700px;
    margin: 0 auto 80px;
  }
  .catalog-top__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .catalog-top__image {
    flex-shrink: 0;
    width: 40px;
    margin-right: 24px;
  }
  .catalog-top__image img {
    width: 100%;
  }
  .catalog-top__title-text {
    font-size: 22px;
    font-weight: bold;
  }
}
