@charset "UTF-8";
/********************************************************/
/*-------------------------------------------
 * もっと見る / hidden-content
 * --hidden-content-height … 閉じている時の高さ（data-height から設定）
 * -------------------------------------------*/
.hidden-content {
  position: relative;
  --hidden-content-height: 5.6rem;
}

.hidden-content__body {
  overflow: hidden;
  position: relative;
}

.hidden-content:not(.is-ready) .hidden-content__body {
  height: auto;
}
.hidden-content:not(.is-ready) .hidden-content__body::after {
  opacity: 0;
}
.hidden-content:not(.is-ready) .hidden-content__btn {
  display: none;
}

.hidden-content.is-ready:not(.is-open) .hidden-content__body {
  height: var(--hidden-content-height);
}
.hidden-content.is-ready:not(.is-open) .hidden-content__body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.4rem;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(65%, rgba(255, 255, 255, 0.9)), to(#fff));
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9) 65%, #fff);
  pointer-events: none;
  opacity: 1;
}

.hidden-content.is-open .hidden-content__body {
  height: auto;
}
.hidden-content.is-open .hidden-content__body::after {
  opacity: 0;
}

.hidden-content__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  margin: clamp(10px, 1.6129032258vw, 20px) auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  color: #6f4df3;
  font-weight: 500;
  font-size: clamp(14px, 1.2903225806vw, 16px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.hidden-content__btn[hidden] {
  display: none;
}

.hidden-content__btn-icon {
  position: relative;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.hidden-content__btn-icon::before, .hidden-content__btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #6f4df3;
}
.hidden-content__btn-icon::before {
  width: 13px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hidden-content__btn-icon::after {
  width: 2px;
  height: 13px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hidden-content.is-open .hidden-content__btn-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}/*# sourceMappingURL=hidden-content.css.map */