/* 汎用カード用　*/
/* start cards */

.bur_ads {
    width: 80vw;
    height: auto;
    aspect-ratio: 8.09;
    background-color: #e5e5e5;
    margin-top: 36px;
    margin-right: 10vw;
    margin-left: 10vw;
}

.recms {
    margin: 12px auto;
    width: auto;
    height: auto;
    min-height: calc(100vh - 620px - 9.9vw);
}

.title_bar {
    margin-right: 36px;
    margin-left: 36px;
    margin-top: 2px;
    height: 1px;
    background-color: #008cff;
}

.recm_title {
    margin-right: 36px;
    margin-left: 36px;
    margin-top: 72px;
    height: 40px;
    background-color: #008cff;
    color: white;
    font-size: 40px
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
    justify-content: center;
}

.video-card {
    background-color: #fff;
    width: 300px;
    height: auto;
    margin: 15px;
    border-radius: 8px;
    overflow: hidden; 
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(148, 92, 245, 0.3), 0 8px 16px rgba(255, 127, 173, 0.3);
    transition: all 0.3s ease; /* Smooth transition for all properties */
}

.video-card:hover {
    box-shadow: 0 10px 20px rgba(148, 92, 245, 0.5), 0 15px 30px rgba(255, 127, 173, 0.5); /* Larger, more intense shadow on hover */
}


.video-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-color: gainsboro;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #222222;
}

.video-author {
    font-size: 10px;
    font-weight: 100;
    margin-bottom: 12px;
    color: #787878;
}




.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.video-meta span {
    display: flex;
    align-items: center;
}

.video-meta i {
    margin-left: 5px;
    font-size: 16px;
}

.pageing {
    display: flex;
    width: 200px;
    margin: 0 auto;
    height: 50px;
    justify-content: center; /* 水平方向中央 */
    align-items: center;     /* 垂直方向中央 */
    margin-bottom: 30px;
  }

  .bu01 {
    width: 50px;
    height: 50px;
    background-color: #00053a;
    text-align: center;
    border-radius: 10%;
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 0 auto; 削除 */
    margin: 0 5px; /* ボタン間のスペース */
  }