@charset "UTF-8";
@media screen and (min-width: 981px) {
body {
  display: none;
}
}
/*---------------------------------
        category bar & btn
---------------------------------*/
@media screen and (max-width: 980px) {
.category_list-container {
  display: flex;
  width: 980px;
  height: auto;
  margin: -10px 0 40px 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.category-btn2 {
  position: relative;
  width: 205px;
  height: 205px;
  background-color: #FFFFFF;
  border-right: 6px solid #dfdfdf;
  border-bottom: 8px solid #414141;
  border-left: 3px solid #979797;
  border-radius: 10px;
  margin: 15px 10px 10px 10px;
  box-shadow: 7px 7px 1px rgb(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.category-btn2:after {
  content: '';
  position: absolute; /* 親要素に重なるように */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  /* 👇白の透明度を調整したグラデーション */
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0.4) 74%,
    rgba(255, 255, 255, 0.5) 86%,
    rgba(255, 255, 255, 0) 100%
  );
}
.category-btn3 {
  width: 205px;
  height: 150px;
  background-color: #FFFFFF;
  border: 2px solid #868686;
  border-radius: 30px;
  margin: 15px 10px 10px 10px;
  box-shadow: 7px 7px 1px rgb(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.category_list-container a,
.category-btn a,
.category-btn2 a {
  text-decoration: none;
}
.category-name {
  font-size: 33px;
  font-weight: bold;
  color: #ffffff;
  margin: 10px;
  text-align:center;
  line-height: 1.2;
}
.category-name2 {
  font-size: 32px;
  color: #FFFFFF;
  font-weight: bold;
  background-color: #000000;
  border-radius: 20px;
  margin: 19px 0 10px 0;
  padding: 10px 10px;
  width: 260px;
}
.category-name3 {
  font-size: 32px;
  color: #FFFFFF;
  font-weight: bold;
  background-color: #000000;
  border-radius: 20px;
  margin: 19px 0 10px 0;
  padding: 10px 5px;
  width: 205px;
}












}