/*****************************/
/* ヘッダー*/
/*****************************/

/* 左：ロゴ */
.bl_header_left {
  display: flex;
  align-items: center;
  padding-left: 40px;
}

/* 右：ハンバーガーメニュー */
.bl_header_right {
  display: flex;
  width: 90px;
  align-items: center;
  justify-content: flex-end;
  padding-right: 30px;
}

.bl_sideBar {
  position: fixed;
  top: 80px;
  right: 0;
  width: 30%;
  height: calc(100% - 80px);
  background-color: #fdfdfd;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease; /* visibility は transition に含めない */
  z-index: 1000;
  pointer-events: none; /* 画面外でクリック不可 */
  border-radius: 40px 0 0 40px;
}

.bl_sideBar.is_active {
  transform: translateX(0);
  pointer-events: auto; /* 画面内でクリック可能 */
}

/* タブレット以下 */
@media screen and (max-width: 768px) {
  .bl_sideBar {
    width: 80%;
  }
}

/* スマホ */
@media screen and (max-width: 480px) {
  .bl_sideBar {
    width: 100%;
  }
}

/*****************************/
/* メイン*/
/*****************************/

/* 紹介文画像　*/
.bl_introductionWrapper {
  margin-top:80px;
  width: 100%;
  height: auto;
  max-height: 600px;
  min-height: 200px;
  background-size: cover;
  background-image: url("/html/template/default/assets/img/maresia_top_image.jpg");
}

/* 紹介文テキスト　*/
.bl_introduction {
  margin-left: 50px;
  padding-top: 100px;
  display : flex;
  flex-direction: column;
  gap : 200px;
  padding-bottom: 100px;
}

.bl_sectionTitle_wrapper {
  margin: 0 auto;
  justify-content: center;
  border-radius: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: hsl(0, 0%, 100%);
  padding: 20px 20px;
  margin-block: 30px;
}

.bl_newProductsList {
  margin: 0 auto;
  min-height: 300px;
  border-radius: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bl_newProductWrapper {
  border-radius: 40px;
  margin-block: 30px;
  min-width: 200px;
  box-shadow: 0 2px 4px rgba(102, 75, 75, 0.1);
  background-color: hsl(0, 100%, 99%);
}

.slick-slide > div {
  margin: 0 30px; /* スライドとスライドの左右に10pxの間隔を設定 */
}

.bl_categoryList {
  margin: 0 auto;
  margin-block: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* 全カテゴリ　*/
.bl_allCategoryWrapper {
  grid-column: 1/3;
}

.bl_allCategoryWrapper, .bl_categoryWrapper {
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: hsl(0, 100%, 99%);
  border-radius: 40px;
  padding: 10px;
}

@media screen and (max-width: 580px) {
  .bl_categoryWrapper {
    grid-column: 1/3;
  }
}

/*****************************/
/* フッター*/
/*****************************/
.bl_footer_links {
  width: 100%;
  display: grid;
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-content: center;
  gap: 20px;
}

/* タブレット以下 */
@media screen and (max-width: 768px) {
  .bl_footer_links {
    grid-template-columns: 1fr 1fr;
  }
}

 /* スマホ */
@media screen and (max-width: 480px) {
  .bl_footer_links {
    grid-template-columns: 1fr;
  }
}

