/* front-page #action_front section */
.action_front-list {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 700px;
  padding: 0 2rem;
  margin: 0 auto;
  font-size: 1.8rem;
}
@media screen and (max-width: 949px) {
  .action_front-list {
    font-size: 1.6rem;
  }
}
.action_front-item {
  position: relative;
  padding-left: 6rem;
}
.action_front-item:first-child::before {
  position: absolute;
  content: "NEW";
  top: 0;
  left: 0;
  color: #f39800;
  font-weight: 600;
}
.action_front-item__link {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  transition: 0.5s;
}
.action_front-item__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 949px) {
  .action_front-item__link {
    grid-template-columns: 80px 1fr;
  }
}

/* added: 20260511 w/image */
.action-front-label {
  font-size: 8rem;
  font-weight: bold;
  color: #898989;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 480px) {
  .action-front-label {
    font-size: 5rem;
    margin-bottom: 2rem;
  }
}

.action_front-list.w-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  width: 100%;
  min-width: 100%;
  padding: 0 2rem;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 949px) {
  .action_front-list.w-image {
    font-size: 1.6rem;
    margin: 0 auto 4rem;
  }
}
@media screen and (max-width: 768px) {
  .action_front-list.w-image {
    grid-template-columns: repeat(1, 1fr);
  }
}

.w-image .action_front-item {
  position: relative;
  padding-left: 0;
  width: 100%;
}
.w-image .action_front-item:first-child::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  color: #f39800;
  font-weight: 600;
}

.w-image .action_front-item__thumbnail {
  position: relative;
}
.w-image .action_front-item__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}
.w-image .action_front-item:first-child .action_front-item__thumbnail::before {
  position: absolute;
  content: "NEW";
  top: 1rem;
  left: 1rem;
  background-color: #f39800;
  color: #fff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 4px;
}

.w-image .action_front-item__link {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  border-bottom: none;
  transition: 0.5s;
}
.w-image .action_front-item__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 949px) {
  .w-image .action_front-item__link {
    grid-template-columns: 80px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .w-image .action_front-item__link {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .w-image .action_front-item__link {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.w-image .action_front-item__title {
  line-height: 1.4;
  margin: 2rem 0;
}
@media screen and (max-width: 480px) {
  .w-image .action_front-item__title {
    margin: 2rem 0 1rem;
  }
}

.w-image .action_front-item__content {
  line-height: 1.6;
  font-size: 1.5rem;
}
