.keyvisual {
  width: 100%;
  position: relative;
}
.keyvisual .keyvisual__img {
  display: grid;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img {
    aspect-ratio: 1440/680;
    grid-template-areas: "a a b c d" "a a b e e" "a a f e e" "g h f e e";
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img {
    aspect-ratio: 375/520;
    grid-template-areas: "a a a a a b b b b b" "c c c c c c d d d d" "e e e e f f f f f f" "g g g g g h h h h h";
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--01,
.keyvisual .keyvisual__img .keyvisual__img--02,
.keyvisual .keyvisual__img .keyvisual__img--03,
.keyvisual .keyvisual__img .keyvisual__img--04,
.keyvisual .keyvisual__img .keyvisual__img--05,
.keyvisual .keyvisual__img .keyvisual__img--06,
.keyvisual .keyvisual__img .keyvisual__img--07,
.keyvisual .keyvisual__img .keyvisual__img--08 {
  position: relative;
}
.keyvisual .keyvisual__img .keyvisual__img--01:before,
.keyvisual .keyvisual__img .keyvisual__img--02:before,
.keyvisual .keyvisual__img .keyvisual__img--03:before,
.keyvisual .keyvisual__img .keyvisual__img--04:before,
.keyvisual .keyvisual__img .keyvisual__img--05:before,
.keyvisual .keyvisual__img .keyvisual__img--06:before,
.keyvisual .keyvisual__img .keyvisual__img--07:before,
.keyvisual .keyvisual__img .keyvisual__img--08:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  animation-name: var(--animation);
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transform-origin: center right;
  animation-delay: calc(1s + var(--delay));
}
.keyvisual .keyvisual__img .keyvisual__img--01:after,
.keyvisual .keyvisual__img .keyvisual__img--02:after,
.keyvisual .keyvisual__img .keyvisual__img--03:after,
.keyvisual .keyvisual__img .keyvisual__img--04:after,
.keyvisual .keyvisual__img .keyvisual__img--05:after,
.keyvisual .keyvisual__img .keyvisual__img--06:after,
.keyvisual .keyvisual__img .keyvisual__img--07:after,
.keyvisual .keyvisual__img .keyvisual__img--08:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  animation-name: var(--animation);
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: calc(0.5s + var(--delay));
  transform-origin: center right;
}
@keyframes intro1 {
  0% {
    transform-origin: center right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: center right;
    transform: scaleX(0);
  }
}
@keyframes intro2 {
  0% {
    transform-origin: center left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: center left;
    transform: scaleX(0);
  }
}
@keyframes intro3 {
  0% {
    transform-origin: top center;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top center;
    transform: scaleY(0);
  }
}
@keyframes intro4 {
  0% {
    transform-origin: bottom center;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom center;
    transform: scaleY(0);
  }
}
.keyvisual .keyvisual__img .keyvisual__img--01 {
  --bg-color: #6AD8DF;
  --delay: 0.0s;
  --animation: intro1;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--01 {
    grid-area: a;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--01 {
    grid-area: c;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--02 {
  --bg-color: #FFAE35;
  --delay: 0.0s;
  --animation: intro3;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--02 {
    grid-area: b;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--02 {
    grid-area: d;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--03 {
  --bg-color: #8A63FF;
  --delay: 0.0s;
  --animation: intro4;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--03 {
    grid-area: c;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--03 {
    grid-area: b;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--04 {
  --bg-color: #FFF44D;
  --delay: 0.0s;
  --animation: intro2;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--04 {
    grid-area: d;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--04 {
    grid-area: a;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--05 {
  --bg-color: #5598EC;
  --delay: 0.0s;
  --animation: intro1;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--05 {
    grid-area: e;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--05 {
    grid-area: f;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--06 {
  --bg-color: #7FEFC7;
  --delay: 0.0s;
  --animation: intro2;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--06 {
    grid-area: f;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--06 {
    grid-area: e;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--07 {
  --bg-color: #8A63FF;
  --delay: 0.0s;
  --animation: intro3;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--07 {
    grid-area: g;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--07 {
    grid-area: g;
  }
}
.keyvisual .keyvisual__img .keyvisual__img--08 {
  --bg-color: #FF6F51;
  --delay: 0.0s;
  --animation: intro4;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__img .keyvisual__img--08 {
    grid-area: h;
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__img .keyvisual__img--08 {
    grid-area: h;
  }
}
.keyvisual .keyvisual__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.keyvisual .keyvisual__txt {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__txt {
    top: calc(clamp(0px, 21.1805555556cqw, 21.1805555556cqw) * 1);
    left: calc(clamp(0px, 2.7777777778cqw, 2.7777777778cqw) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__txt {
    top: calc(clamp(0px, 50.6666666667cqw, 50.6666666667cqw) * 1);
    left: 0;
    width: 100%;
  }
}
.keyvisual .keyvisual__txt .keyvisual__txt--01,
.keyvisual .keyvisual__txt .keyvisual__txt--02 {
  line-height: 1;
}
.keyvisual .keyvisual__txt .keyvisual__txt--01 {
  font-weight: bold;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--01 {
    padding-block: calc(clamp(0px, 1.0416666667cqw, 1.0416666667cqw) * 1);
    padding-inline: calc(clamp(0px, 2.7777777778cqw, 2.7777777778cqw) * 1);
    font-size: calc(clamp(0px, 2.7777777778cqw, 2.7777777778cqw) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--01 {
    padding-block: calc(clamp(0px, 2.6666666667cqw, 2.6666666667cqw) * 1);
    padding-inline: calc(clamp(0px, 5.3333333333cqw, 5.3333333333cqw) * 1);
    font-size: calc(clamp(0px, 6.1333333333cqw, 6.1333333333cqw) * 1);
  }
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--01 strong {
    font-size: calc(clamp(0px, 4.0277777778cqw, 4.0277777778cqw) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--01 strong {
    font-size: calc(clamp(0px, 8cqw, 8cqw) * 1);
  }
}
.keyvisual .keyvisual__txt .keyvisual__txt--02 {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--02 {
    margin-top: calc(clamp(0px, 0.8333333333cqw, 0.8333333333cqw) * 1);
    margin-left: calc(clamp(0px, 4.7222222222cqw, 4.7222222222cqw) * 1);
    font-size: calc(clamp(0px, 1.5277777778cqw, 1.5277777778cqw) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--02 {
    margin-top: calc(clamp(0px, 1.3333333333cqw, 1.3333333333cqw) * 1);
    margin-left: auto;
    margin-right: 0;
    font-size: calc(clamp(0px, 3.7333333333cqw, 3.7333333333cqw) * 1);
  }
}
.keyvisual .keyvisual__txt .keyvisual__txt--02 > span {
  position: relative;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--02 > span {
    padding-block: calc(clamp(0px, 1.0416666667cqw, 1.0416666667cqw) * 1);
    padding-inline: calc(clamp(0px, 1.3888888889cqw, 1.3888888889cqw) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--02 > span {
    padding-block: calc(clamp(0px, 1.3333333333cqw, 1.3333333333cqw) * 1);
    padding-inline: calc(clamp(0px, 2.6666666667cqw, 2.6666666667cqw) * 1);
  }
}
.keyvisual .keyvisual__txt .keyvisual__txt--02 > span:nth-child(1) {
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--02 > span:nth-child(1) {
    padding-bottom: calc(clamp(0px, 0.1612903226cqw, 2px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .keyvisual .keyvisual__txt .keyvisual__txt--02 > span:nth-child(1) {
    padding-bottom: calc(clamp(0px, 0.5128205128cqw, 0.5128205128cqw) * 1);
  }
}
.keyvisual .keyvisual__txt .keyvisual__txt--02 > span:nth-child(2) {
  margin-top: -1px;
}
.keyvisual .keyvisual__txt .keyvisual__txt--02 > span span {
  position: relative;
  z-index: 1;
}
.keyvisual .keyvisual__txt .keyvisual__txt--01,
.keyvisual .keyvisual__txt .keyvisual__txt--02 > span {
  position: relative;
  animation-name: introText1;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0;
  transform-origin: center left;
}
.keyvisual .keyvisual__txt .keyvisual__txt--01:after,
.keyvisual .keyvisual__txt .keyvisual__txt--02 > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  animation-name: introText2;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  transform-origin: center right;
}
@keyframes introText1 {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes introText2 {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

@media screen and (min-width: 1024px) {
  .filter {
    padding-top: calc(clamp(0px, 4.0322580645cqw, 50px) * 1);
    padding-bottom: calc(clamp(0px, 4.0322580645cqw, 50px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter {
    padding-top: calc(clamp(0px, 10.2564102564cqw, 10.2564102564cqw) * 1);
    padding-bottom: calc(clamp(0px, 10.2564102564cqw, 10.2564102564cqw) * 1);
    margin-left: calc(clamp(0px, 1.2820512821cqw, 1.2820512821cqw) * -1);
    margin-right: calc(clamp(0px, 1.2820512821cqw, 1.2820512821cqw) * -1);
  }
}
.filter .filter__title {
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .filter .filter__title {
    margin-bottom: calc(clamp(0px, 4.0322580645cqw, 50px) * 1);
    font-size: calc(clamp(0px, 2.0967741935cqw, 26px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__title {
    margin-bottom: calc(clamp(0px, 10.2564102564cqw, 10.2564102564cqw) * 1);
    font-size: calc(clamp(0px, 4.1025641026cqw, 4.1025641026cqw) * 1);
  }
}
.filter .filter__title span {
  display: inline-block;
  padding-bottom: calc(clamp(0px, 0.1612903226cqw, 2px) * 1);
  background-image: url(../img/home/filter__title__line.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 25%;
}
.filter .filter__title strong {
  color: #4D9DA1;
}
@media screen and (min-width: 1024px) {
  .filter .filter__title strong {
    font-size: calc(clamp(0px, 2.9032258065cqw, 36px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__title strong {
    font-size: calc(clamp(0px, 6.6666666667cqw, 6.6666666667cqw) * 1);
  }
}
.filter .filter__title small {
  font-weight: normal;
}
@media screen and (min-width: 1024px) {
  .filter .filter__title small {
    font-size: calc(clamp(0px, 0.9677419355cqw, 12px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__title small {
    font-size: calc(clamp(0px, 2.0512820513cqw, 2.0512820513cqw) * 1);
  }
}
.filter .filter__block {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DADEE3;
}
@media screen and (min-width: 1024px) {
  .filter .filter__block {
    padding-block: calc(clamp(0px, 1.1290322581cqw, 14px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__block {
    padding-block: calc(clamp(0px, 2.5641025641cqw, 2.5641025641cqw) * 1);
  }
}
.filter .filter__block:last-child {
  border-bottom: none;
}
.filter .filter__label {
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .filter .filter__label {
    width: calc(clamp(0px, 9.6774193548cqw, 120px) * 1);
    font-size: calc(clamp(0px, 0.9677419355cqw, 12px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__label {
    min-width: calc(clamp(0px, 16.6666666667cqw, 16.6666666667cqw) * 1);
    font-size: calc(clamp(0px, 2.5641025641cqw, 2.5641025641cqw) * 1);
    letter-spacing: -0.05em;
  }
}
.filter .filter__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .filter .filter__list {
    gap: calc(clamp(0px, 0.4032258065cqw, 5px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__list {
    gap: calc(clamp(0px, 1.2820512821cqw, 1.2820512821cqw) * 1);
  }
}
.filter .filter__item span {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #495A64;
  color: #495A64;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .filter .filter__item span {
    height: calc(clamp(0px, 2.4193548387cqw, 30px) * 1);
    padding-inline: calc(clamp(0px, 1.2903225806cqw, 16px) * 1);
    font-size: calc(clamp(0px, 0.9677419355cqw, 12px) * 1);
    border-radius: calc(clamp(0px, 1.2096774194cqw, 15px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__item span {
    height: calc(clamp(0px, 6.4102564103cqw, 6.4102564103cqw) * 1);
    padding-inline: calc(clamp(0px, 2.5641025641cqw, 2.5641025641cqw) * 1);
    min-width: 5em;
    font-size: calc(clamp(0px, 2.5641025641cqw, 2.5641025641cqw) * 1);
    border-radius: calc(clamp(0px, 3.8461538462cqw, 3.8461538462cqw) * 1);
    letter-spacing: -0.05em;
  }
}
.filter .filter__item input[type=checkbox] {
  display: none;
}
.filter .filter__item input[type=checkbox]:checked + span {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.filter .filter__freeword {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .filter .filter__freeword {
    width: calc(clamp(0px, 28.2258064516cqw, 350px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__freeword {
    flex: 1;
  }
}
.filter .filter__freeword input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex: 1;
  border: none;
  background-color: #F7F8F9;
}
@media screen and (min-width: 1024px) {
  .filter .filter__freeword input[type=text] {
    padding-inline: calc(clamp(0px, 0.8064516129cqw, 10px) * 1);
    font-size: calc(clamp(0px, 1.1290322581cqw, 14px) * 1);
    height: calc(clamp(0px, 3.3870967742cqw, 42px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__freeword input[type=text] {
    padding-inline: calc(clamp(0px, 2.5641025641cqw, 2.5641025641cqw) * 1);
    font-size: max(16px, clamp(0px, 3.5897435897cqw, 3.5897435897cqw) * 1);
    height: calc(clamp(0px, 10.7692307692cqw, 10.7692307692cqw) * 1);
  }
}
.filter .filter__freeword button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #4A33B9;
}
@media screen and (min-width: 1024px) {
  .filter .filter__freeword button {
    width: calc(clamp(0px, 3.3870967742cqw, 42px) * 1);
    height: calc(clamp(0px, 3.3870967742cqw, 42px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__freeword button {
    width: calc(clamp(0px, 10.7692307692cqw, 10.7692307692cqw) * 1);
    height: calc(clamp(0px, 10.7692307692cqw, 10.7692307692cqw) * 1);
  }
}
@media screen and (min-width: 1024px) {
  .filter .filter__freeword button img {
    width: calc(clamp(0px, 1.6129032258cqw, 20px) * 1);
    height: calc(clamp(0px, 1.6129032258cqw, 20px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .filter .filter__freeword button img {
    width: calc(clamp(0px, 5.1282051282cqw, 5.1282051282cqw) * 1);
    height: calc(clamp(0px, 5.1282051282cqw, 5.1282051282cqw) * 1);
  }
}

.newest {
  background-color: #F6F6F6;
  background-image: url(../img/home/bg.png);
  background-size: calc(clamp(0px, 116.1290322581cqw, 1440px) * 1) auto;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media screen and (min-width: 1024px) {
  .newest {
    padding-top: calc(clamp(0px, 4.8387096774cqw, 60px) * 1);
    padding-bottom: calc(clamp(0px, 4.8387096774cqw, 60px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .newest {
    padding-top: calc(clamp(0px, 10.2564102564cqw, 10.2564102564cqw) * 1);
    padding-bottom: calc(clamp(0px, 10.2564102564cqw, 10.2564102564cqw) * 1);
  }
}
.newest .newest__title {
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .newest .newest__title {
    margin-bottom: calc(clamp(0px, 2.4193548387cqw, 30px) * 1);
    font-size: calc(clamp(0px, 1.6129032258cqw, 20px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .newest .newest__title {
    margin-bottom: calc(clamp(0px, 5.1282051282cqw, 5.1282051282cqw) * 1);
    font-size: calc(clamp(0px, 5.1282051282cqw, 5.1282051282cqw) * 1);
  }
}

.panel-list {
  display: grid;
}
@media screen and (min-width: 1024px) {
  .panel-list {
    gap: calc(clamp(0px, 1.6129032258cqw, 20px) * 1);
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1023px) {
  .panel-list {
    padding-left: calc(clamp(0px, 3.8461538462cqw, 3.8461538462cqw) * 1);
    padding-right: calc(clamp(0px, 3.8461538462cqw, 3.8461538462cqw) * 1);
    gap: calc(clamp(0px, 5.1282051282cqw, 5.1282051282cqw) * 1);
    grid-template-columns: 1fr;
  }
}

.panel-item {
  background-color: #ffffff;
  animation-name: panelFadeIn;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  opacity: 0;
}
.panel-item:nth-child(9n+1) {
  animation-delay: 0s;
}
.panel-item:nth-child(9n+2) {
  animation-delay: 0.1s;
}
.panel-item:nth-child(9n+3) {
  animation-delay: 0.2s;
}
.panel-item:nth-child(9n+4) {
  animation-delay: 0.3s;
}
.panel-item:nth-child(9n+5) {
  animation-delay: 0.4s;
}
.panel-item:nth-child(9n+6) {
  animation-delay: 0.5s;
}
.panel-item:nth-child(9n+7) {
  animation-delay: 0.6s;
}
.panel-item:nth-child(9n+8) {
  animation-delay: 0.7s;
}
.panel-item:nth-child(9n+9) {
  animation-delay: 0.8s;
}
@keyframes panelFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width: 1024px) {
  .panel-item .panel-item__txt {
    padding: calc(clamp(0px, 1.6129032258cqw, 20px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .panel-item .panel-item__txt {
    padding: calc(clamp(0px, 5.1282051282cqw, 5.1282051282cqw) * 1);
  }
}
.panel-item .panel-item__date {
  color: #6F6F6F;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .panel-item .panel-item__date {
    font-size: calc(clamp(0px, 0.9677419355cqw, 12px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .panel-item .panel-item__date {
    font-size: calc(clamp(0px, 3.0769230769cqw, 3.0769230769cqw) * 1);
  }
}
.panel-item .panel-item__title {
  height: 3em;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
  line-height: 1.5em;
}
@media screen and (min-width: 1024px) {
  .panel-item .panel-item__title {
    margin-top: calc(clamp(0px, 0.8064516129cqw, 10px) * 1);
    font-size: calc(clamp(0px, 1.1290322581cqw, 14px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .panel-item .panel-item__title {
    margin-top: calc(clamp(0px, 2.5641025641cqw, 2.5641025641cqw) * 1);
    font-size: calc(clamp(0px, 3.5897435897cqw, 3.5897435897cqw) * 1);
  }
}

.newest__more {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .newest__more {
    margin-top: calc(clamp(0px, 4.8387096774cqw, 60px) * 1);
    width: calc(clamp(0px, 29.0322580645cqw, 360px) * 1);
    height: calc(clamp(0px, 4.0322580645cqw, 50px) * 1);
    font-size: calc(clamp(0px, 1.2903225806cqw, 16px) * 1);
  }
}
@media screen and (max-width: 1023px) {
  .newest__more {
    margin-top: calc(clamp(0px, 10.2564102564cqw, 10.2564102564cqw) * 1);
    width: calc(clamp(0px, 71.7948717949cqw, 71.7948717949cqw) * 1);
    height: calc(clamp(0px, 10.2564102564cqw, 10.2564102564cqw) * 1);
    font-size: calc(clamp(0px, 4.1025641026cqw, 4.1025641026cqw) * 1);
  }
}
.newest__more:not(.is-active) {
  display: none;
}