@charset "UTF-8";
/* panelリンクのホバーエフェクト */
.panel__link,
.panel a,
.grid3__item > a {
  /* ホバーアウト時は即座に消える */
}
.panel__link:not(:hover) .panel__img .color-bar,
.panel a:not(:hover) .panel__img .color-bar,
.grid3__item > a:not(:hover) .panel__img .color-bar {
  width: 0;
  transition-delay: 0s;
  transition-duration: 0.2s;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.works {
  padding-top: 111px;
}
.works__inner {
  width: 100%;
  height: auto;
}
.works__head {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
.works__head__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.works__head .category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 8px;
  margin-bottom: 32px;
}
.works__head .category-list__item a {
  border-radius: 50vh;
  border: 1px solid #c5c5c5;
  padding: 1px 18px;
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #c5c5c5;
  text-decoration: none;
  transition: all 0.3s;
}
.works__head .category-list__item a.current {
  border-color: #000;
  color: #000;
}
.works__body {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.works .count-wrap {
  font-size: 0.875rem;
  text-align: right;
  margin-left: auto;
  margin-bottom: 13px;
}
.works .grid4 {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 15px 15px;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  box-sizing: border-box;
}
.works .grid4-item {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
}
.works .panel {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  /* panel専用のカラーバーホバーエフェクト */
}
.works .panel a {
  text-decoration: none !important;
}
.works .panel__img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 380/240;
  flex-shrink: 0;
  /* カラーバーをimg下に配置 */
}
.works .panel__img img {
  transition: transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.works .panel__img .color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 10;
  transition: width 0.6s ease;
}
.works .panel__img .color-bar.bar1 {
  transition-delay: 0s;
}
.works .panel__img .color-bar.bar2 {
  transition-delay: 0.05s;
}
.works .panel__img .color-bar.bar3 {
  transition-delay: 0.1s;
}
.works .panel__img .color-bar.bar4 {
  transition-delay: 0.15s;
}
.works .panel__img .color-bar.bar5 {
  transition-delay: 0.2s;
}
.works .panel__img .color-bar.bar6 {
  transition-delay: 0.3s;
}
.works .panel__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  padding: 24px 0 24px;
  /* 文字数が少ない時も右端まで伸ばす */
  min-width: 0;
  flex: 1;
}
.works .panel__description {
  width: 100%;
  font-weight: 400;
  color: #000000;
  font-size: 1rem;
  margin-bottom: 12px;
}
.works .panel__tags {
  display: none;
  /*
  @include text(14px, 10px, 10px);
  color: #828282;
    */
}
.works .panel__ttl {
  width: 100%;
  font-size: 0.875rem;
  color: #828282;
}
.works .panel__info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.works .panel__info__type {
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  font-weight: 400;
  color: #828282;
  margin-right: 8px;
}
.works .panel__info__date {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.75rem;
  font-weight: 400;
  color: #828282;
}
.works .panel__info__date::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background-color: #8e8e8e;
  margin-right: 8px;
}
.works .panel .panel__link {
  position: relative;
  /* ホバーアウト時は即座に消える */
}
.works .panel .panel__link .color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 10;
  transition: width 0.6s ease;
}
.works .panel .panel__link .color-bar.bar1 {
  transition-delay: 0s;
}
.works .panel .panel__link .color-bar.bar2 {
  transition-delay: 0.05s;
}
.works .panel .panel__link .color-bar.bar3 {
  transition-delay: 0.1s;
}
.works .panel .panel__link .color-bar.bar4 {
  transition-delay: 0.15s;
}
.works .panel .panel__link .color-bar.bar5 {
  transition-delay: 0.2s;
}
.works .panel .panel__link .color-bar.bar6 {
  transition-delay: 0.3s;
}
.works .panel .panel__link:not(:hover) .color-bar {
  transition-delay: 0s;
  transition-duration: 0.2s;
}

.filter-btn {
  border-bottom: 1px solid #000000;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  padding: 12px 9px 12px 2px;
  margin: 0 0 0px 0;
}
.filter-btn__text {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #5b5b5b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-btn__count {
  color: #000;
  font-weight: 500;
}
.filter-btn__icon {
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.001 1.001 5 5.002l-4.001-4' stroke='black'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 6px;
}
.filter-btn__icon.active {
  transform: rotate(-180deg);
}
.filter-container {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: all 0.5s ease;
}
.filter-container.active {
  opacity: 1;
  margin-top: 16px;
}
.filter-label {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  color: #5b5b5b;
  margin-bottom: 13px;
}

.tag-filter {
  margin-bottom: 0px;
}
.tag-filter__list {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 9px 10px;
}
.tag-filter__item {
  position: relative;
}
.tag-filter__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tag-filter__checkbox:checked + .tag-filter__label {
  color: #000000;
}
.tag-filter__checkbox:not(:checked) + .tag-filter__label {
  color: #848484;
}
.tag-filter__label {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .works {
    padding-bottom: 120px;
  }
  .works {
    padding-top: 127px;
  }
  .works__head {
    margin-bottom: 0px;
  }
  .works__head__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .works__head .category-list {
    gap: 11px 11px;
    margin-bottom: 32px;
  }
  .works__head .category-list__item a {
    font-size: 0.875rem;
  }
  .works__head .category-list__item a {
    padding: 0px 18px;
  }
  .works__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .works .count-wrap {
    font-size: 0.875rem;
  }
  .works .count-wrap {
    margin-bottom: 27px;
  }
  .works .grid4 {
    grid-gap: 15px 15px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .works .panel__content {
    padding: 16px 0 14px;
  }
  .works .panel__description {
    font-size: 1rem;
  }
  .works .panel__description {
    margin-bottom: 4px;
  }
  .works .panel__ttl {
    font-size: 0.625rem;
  }
  .works .panel__info__type {
    font-size: 0.75rem;
  }
  .works .panel__info__date {
    font-size: 0.75rem;
  }
  .filter-btn {
    width: 327px;
    padding: 12px 9px 12px 2px;
    margin: 0 0 40px 0;
  }
  .filter-btn__text {
    font-size: 0.75rem;
  }
  .filter-label {
    font-size: 0.625rem;
  }
  .filter-label {
    margin-bottom: 13px;
  }
  .tag-filter {
    margin-bottom: 16px;
  }
  .tag-filter__list {
    font-size: 0.75rem;
  }
  .tag-filter__list {
    gap: 20px 20px;
  }
  .tag-filter__label {
    font-size: 0.875rem;
  }
}
@media (min-width: 1100px) {
  .works {
    padding-bottom: 120px;
  }
  .works__head__inner {
    padding-left: 38px;
    padding-right: 38px;
  }
  .works__head .category-list__item a {
    font-size: 0.875rem;
  }
  .works__body {
    padding-left: 38px;
    padding-right: 38px;
  }
  .works .count-wrap {
    font-size: 0.875rem;
  }
  .works .grid4 {
    grid-gap: 29px 32px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .works .panel__description {
    font-size: 1rem;
  }
  .works .panel__ttl {
    font-size: 0.625rem;
  }
  .works .panel__info__type {
    font-size: 0.75rem;
  }
  .works .panel__info__date {
    font-size: 0.75rem;
  }
  .filter-btn__text {
    font-size: 0.75rem;
  }
  .filter-label {
    font-size: 0.625rem;
  }
  .tag-filter__list {
    font-size: 0.75rem;
  }
  .tag-filter__label {
    font-size: 0.875rem;
  }
}
@media (min-width: 1400px) {
  .works .grid4 {
    grid-gap: 29px 32px;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (hover: hover) {
  .panel__link:hover .panel__img .color-bar,
.panel a:hover .panel__img .color-bar,
.grid3__item > a:hover .panel__img .color-bar {
    width: 100%;
  }
  .works__head .category-list__item a:hover {
    border-color: #000;
    color: #000;
  }
  .works .panel__img img:hover {
    transform: scale(1.07);
  }
  .works .panel .panel__link:hover .color-bar {
    width: 100%;
  }
}
@media (max-width: 639.98px) {
  .works {
    padding-bottom: 120px;
  }
}