@charset "UTF-8";
.content_top {
  background-color: #FFF;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  font-size: 10px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 0;
  /* 縦方向のギャップを設定 */
  line-height: 1.5;
}

.breadcrumbs__separator {
  margin: 0 0.5em;
}

.lead-wrap {
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .lead-wrap {
    margin-top: 10px;
  }
}

.lead {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #357ED3;
  position: relative;
  display: inline-block;
  line-height: 1.4545454545;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 14px;
    line-height: 1.5;
  }
}
.lead::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 39px;
  background-image: url(../images/top/lead_fig.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 60%;
  right: -10%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .lead::before {
    width: 10px;
    height: 24px;
    right: -7%;
  }
}
.lead::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 39px;
  background-image: url(../images/top/lead_fig_left.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 60%;
  left: -10%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .lead::after {
    width: 10px;
    height: 24px;
    left: -7%;
  }
}

.category-filter {
  margin: 52px 0 30px;
}
@media screen and (max-width: 768px) {
  .category-filter {
    margin-top: 23px;
    margin-bottom: 36px;
  }
}

.category-filter__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .category-filter__title-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.category-filter__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}

.category-filter__title::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image: url(../images/top/search.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.category-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 19px;
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0;
  padding: 0;
}
.category-filter__list.expanded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  height: auto;
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .category-filter__list.expanded {
    margin-top: 13px;
  }
}

.category-filter__hr {
  border-top: 1px solid #EAEAEA;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .category-filter__hr {
    margin-top: 5px;
  }
}

.category-filter__item {
  margin: 0;
  color: #333;
}

.category-filter__link {
  display: inline-block;
  padding: 7px 16px;
  background: #f5f5f5;
  border-radius: 30px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #333;
  font-size: 12px;
}

.category-filter__link:hover {
  background: #e0e0e0;
}

.category-filter__link.is-active {
  background: #4285f4;
  color: #fff;
}

/* ハッシュタグのスタイル */
.category-filter__link::before {
  content: "#";
  margin-right: 2px;
}

@media screen and (max-width: 768px) {
  .category-filter__list {
    gap: 8px;
  }
  .category-filter__link {
    padding: 6px 12px;
    font-size: 13px;
  }
}
.category-filter__title-wrap {
  cursor: pointer;
}

.category__btn {
  right: 0;
  width: 17px;
  height: 17px;
  background: transparent;
  border: none;
  position: relative;
}
@media screen and (min-width: 769px) {
  .category__btn {
    width: 23px;
    height: 23px;
  }
}
@media screen and (max-width: 768px) {
  .category__btn {
    margin-right: 8px;
  }
}
.category__btn::before {
  content: "";
  width: 3px;
  height: 17px;
  background: #347ED3;
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 769px) {
  .category__btn::before {
    height: 17px;
    right: 7px;
  }
}
.category__btn::after {
  content: "";
  width: 17px;
  height: 3px;
  background: #347ED3;
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 769px) {
  .category__btn::after {
    width: 17px;
  }
}

.category__btn.expanded::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.category__btn.expanded::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.category-name {
  margin-top: 66px;
}
@media screen and (max-width: 768px) {
  .category-name {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .category-name__text {
    font-size: 12px;
  }
}

.category-name__text span {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .category-name__text span {
    font-size: 16px;
  }
}