@charset 'UTF-8';

.backnumber__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.backnumber__item {
  display: flex;
  align-items: center;
  padding: 30px;
  background: #f4f4f4;
}
.backnumber-item__img {
  width: 40%;
  margin: 0;
  text-align: center;
}
.backnumber-item__text {
  display: block;
  margin: 0 0 0 50px;
}
.backnumber-item-text__title {
  font-size: 1.3rem;
  margin: 0 0 1rem;
}
.backnumber-item-text__list dt {
  display: inline-block;
  background: black;
  padding: 5px 10px;
  margin: 0 0 0.5rem 0;
  text-align: center;
  color: white;
  font-weight: normal;
  font-size: 0.8rem;
}
.backnumber-item-text__list dd {
  font-size: 0.9rem;
}
.backnumber__button {
  display: block;
  width: fit-content;
  margin: 0 ;
  padding: 7px 10px 7px 40px;
  border: 2px solid black;
  border-radius: 20px;
  background: transparent url('../images/common/icon-external-black.svg') no-repeat 10px center;
  color: black;
  font-weight: 500;
  font-size: 0.975rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.backnumber__button:hover {
  opacity: 0.6;
}

/*.animate__flash {
  display: block;
  position: relative;
  color: #fbfbfb;
  text-align: center;
  overflow: hidden;
}
.animate__flash::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #faf5d8;
    animation: animate__flash 2s ease-in-out infinite;
}
@-webkit-keyframes animate__flash {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.animate__swing {
  display: block;
  animation: animate__swing 2s infinite;
}
@keyframes animate__swing {
    0% {
        transform: translate(4px, 0px);
    }
    5% {
        transform: translate(-4px, 0px);
    }
    10% {
        transform: translate(4px, 0px);
    }
    15% {
        transform: translate(-4px, 0px);
    }
    20% {
        transform: translate(4px, 0px);
    }
    25% {
        transform: translate(-4px, 0px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}

.animate__ripples {
  display: block;
  position: relative;
  text-align: center;
  transition: .2s;
  z-index: 100;
}
.animate__ripples::before,.animate__ripples::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 39px;
  background: #f4e8a6;
  transform: translate3d(0,0,0);
}

.animate__ripples::before {
  animation: animate__ripples 1s ease-out infinite;
}

.animate__ripples::after {
  animation: animate__ripples 1s ease-out 1s infinite;
}

@keyframes animate__ripples{
0%{transform:scale(.95); opacity:1}
90%{opacity:.1}to{transform:scale(1.2,1.4); opacity:0}
}
*/

@media (max-width: 960px) {
  .backnumber__inner {
    display: block;
  }
  .backnumber__item {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 768px) {
  .backnumber__item {
    display: block;
    margin: 0 0 50px 0;
  }
  .backnumber-item__img {
    margin: 0 auto 20px;
    width: 100%;
  }
  .backnumber-item__text {
    margin: 0 auto;
  }
  .backnumber-item-text__title {
    text-align: center;
  }
  .backnumber__button {
    margin: 0 auto;
  }
}