@charset "UTF-8";
@keyframes loader-pulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
.c-gender__tab {
  border-radius: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.c-gender__tab button {
  display: block;
  border-radius: 100px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: #a0a0a0;
}
@media screen and (max-width: 767px) {
  .c-gender__tab button {
    font-size: 0.875rem;
    padding: 10px 2px;
  }
}
@media screen and (min-width: 768px) {
  .c-gender__tab button {
    font-size: 1rem;
    padding: 12px 2px;
  }
}
.c-gender__tab button.active {
  background: #2e2e2e;
  color: #fff;
}
.c-gender__panel {
  display: none;
}
.c-gender__panel.active {
  display: block;
}

@media screen and (min-width: 768px) {
  .fs-l-main {
    max-width: 1000px;
    width: calc(100% - 60px);
  }
}

.category__tab {
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .category__tab {
    margin: 30px 5.5vw 0;
  }
}
@media screen and (min-width: 768px) {
  .category__tab {
    max-width: 640px;
    width: 80%;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .category__container {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .category__container {
    margin-top: 30px;
  }
}
.category__panel {
  border-bottom: 1px solid #f2f2f2;
}
.category__all {
  text-align: right;
  color: #3ba4f1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .category__all {
    font-size: 0.75rem;
    padding-right: 5.5vw;
  }
}
@media screen and (min-width: 768px) {
  .category__all {
    font-size: 0.8125rem;
  }
}
.category__name {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 8px;
  column-gap: 10px;
  align-items: center;
  border-top: 1px solid #f2f2f2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .category__name {
    padding: 13px 5.5vw;
  }
}
@media screen and (min-width: 768px) {
  .category__name {
    padding: 13px 20px;
  }
}
.category__name img {
  display: block;
}
.category__name span {
  font-size: 0.8125rem;
  font-weight: 700;
}
.category__name::after {
  content: "";
  width: 8px;
  height: 13px;
  display: block;
  /* ▼ 矢印の回転だけサクッと動かす(0.15秒) */
  transition: transform 0.15s ease;
  transform: rotate(0deg);
}
.category__name-btn::after {
  background: url("/s/assets/image/common/arrow/gray.svg") center/contain no-repeat;
}
.category__name.is-open::after {
  transform: rotate(90deg);
}
.category__name-a::after {
  background: url("/s/assets/image/common/arrow/blue.svg") center/contain no-repeat;
}
.category__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f2f2f2;
}
.category__sub.is-open {
  grid-template-rows: 1fr;
}
.category__sub-list {
  min-height: 0;
  overflow: hidden;
  display: grid;
  margin-bottom: -1px;
}
@media screen and (max-width: 767px) {
  .category__sub-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .category__sub-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.category__sub-item {
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .category__sub-item:nth-child(odd) {
    border-right: 1px solid #d5d5d5;
  }
}
@media screen and (min-width: 768px) {
  .category__sub-item:not(:nth-child(4n)) {
    border-right: 1px solid #d5d5d5;
  }
}
.category__sub-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 20px;
}
.category__sub-item a::after {
  content: "";
  width: 8px;
  height: 13px;
  display: block;
  background: url("/s/assets/image/common/arrow/blue.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.series {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .series__container {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .series__container {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .series__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .series__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .series__item:not(:first-child) {
    border-top: 1px solid #f2f2f2;
  }
  .series__item:not(:first-child) a {
    padding-top: 20px;
  }
}
.series__link {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .series__link {
    padding-right: 5.5vw;
    padding-left: 5.5vw;
  }
}
.series__txt {
  font-size: 0.8125rem;
}
.series__title {
  font-weight: 700;
  text-decoration: underline;
}
.series__detail {
  line-height: 1.4;
  font-size: 0.75rem;
  color: #515151;
  margin-top: 8px;
}