.article-body {
  /* background-color: #000; */
}

.related-area {
  background-color: #fff;
}

.related-area.bg-black {
  background-color: #000;
  row-gap: 43px;
}

.bg-black h2,
.content-area .bg-black h3,
.bg-black.related-area .view-all {
  color: #fff;
}

.bg-black p {
  color: #d7d8da;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  background-color: #000;
  /* min-height: 100vh; */
  align-items: center;
}

.full-section {
  grid-column: span 6 / span 6;
  gap: 48px;
  display: grid;
  grid-template-columns: 1fr;
}

.full-section .grid-img {
  gap: 120px 60px;
}
.jms-video{
  width: 100%;
}

.grid-coming {
  /* grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr); */
  margin-top: 120px;
}

.coming-img {
  position: relative;
}

.new-interview-title{
  grid-column: span 6 / span 6;
}

/* .coming-img1 {
  grid-area: 1 / 1 / 2 / 3;
}

.coming-img2 {
  grid-area: 2 / 1 / 3 / 2;
}

.coming-img3 {
  grid-area: 2 / 2 / 3 / 3;
} */

.coming-text {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.coming-text p{
  margin: 0;
}

.content-area p.coming-title {
  font-size: 20px;
  margin: 0;
}

.content-area p.coming-date {
  font-size: 14px;
  margin: 0;
}

.content-area p.coming-label {
  font-size: 14px;
  position: absolute;
  top: 4px;
  right: 12px;
  color: #fff;
  margin: 0;
}

/* .hover-rotate{
  position: relative;
  aspect-ratio: 16/9;
  transform-style: preserve-3d;
  transition: transform .7s;
  width: 100%;
}

.hover-rotate img{
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hover-rotate img:last-of-type {
  transform: rotateY( 180deg );
}

.hover-rotate:hover{
  transform: rotateY( 180deg );
} */

.card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  z-index: 2;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-text {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  font-family: HondaGlobalFontJP-Bold, sans-serif;
  letter-spacing: 0.05em;
}

.line {
  position: absolute;
  height: 2px;
  transform-origin: right;
  z-index: 1;
}

.line-1 {
  top: 30%;
  right: 0;
  width: 120%;
  background-color: #FF0000;
  transform: rotate(-25deg) translateX(100%);
  animation: lineDrawRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.line-2 {
  top: 45%;
  left: 0;
  width: 120%;
  background-color: #FF0000;
  transform: rotate(25deg) translateX(-100%);
  animation: lineDrawLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.line-3 {
  top: 60%;
  right: 0;
  width: 120%;
  background-color: #FFFFFF;
  transform: rotate(-15deg) translateX(100%);
  animation: lineDrawRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  opacity: 0.3;
}

@keyframes lineDrawRight {
  0% {
    transform: rotate(-25deg) translateX(100%);
  }

  100% {
    transform: rotate(-25deg) translateX(0);
  }
}

@keyframes lineDrawLeft {
  0% {
    transform: rotate(25deg) translateX(-100%);
  }

  100% {
    transform: rotate(25deg) translateX(0);
  }
}

.card-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.black-bg-section {
  background-color: #000;
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .card-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 32px;
  }

  .card-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 16px;
  }

  .card-text {
    font-size: 24px;
  }

  .line-1 {
    top: 25%;
    transform: rotate(-35deg) translateX(100%);
  }

  .line-2 {
    top: 50%;
    transform: rotate(35deg) translateX(-100%);
  }

  .line-3 {
    top: 75%;
    transform: rotate(-25deg) translateX(100%);
  }

  @keyframes lineDrawRight {
    0% {
      transform: rotate(-35deg) translateX(100%);
    }

    100% {
      transform: rotate(-35deg) translateX(0);
    }
  }

  @keyframes lineDrawLeft {
    0% {
      transform: rotate(35deg) translateX(-100%);
    }

    100% {
      transform: rotate(35deg) translateX(0);
    }
  }

  .full-section {
    gap: 24px;
  }

  .coming-text{
    font-size: 14px;
    gap: 3px;

  }

  .grid-coming{
    margin-top: 24px;
  }

  .content-area p.coming-title{
    font-size: 16px;
  }
  .content-area p.coming-date{
    font-size: 12px;
  }
  .content-area p.coming-label{
    font-size: 12px;
  }

  .related-item{
    width: 100%;
  }


}