table {
    width: 90%;
    max-width: 1700px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #ddd;
    max-width: 600px;
    min-width: 70px;
}
th, td {
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
    text-align: center;
}
td[data-column="text"] {
    min-width: 300px;
    text-align: left;
}
td[data-column="joken"] {
    min-width: 150px;
    text-align: center;
}
.colortext {
    color: var(--pickupnow-color);
}

.gameimage {
    width: 720px;
    padding-left: 30px;
    padding-bottom: 20px;
}

td.gacha-kind { 
  text-align: left;
  white-space: nowrap;
}

td.gacha-kind .gacha-type{
  display: flex;
  align-items: center;
  gap: .5rem;
  min-height: 1.6em;
}

td.gacha-kind .icon{
  margin-left: auto;
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.youtube-container {
    position: relative;
    padding-bottom: 33.75%;
    height: 0;
    overflow: hidden;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 20px;
    width: 60%;
    height: 100%;
}
/* スマホ用のレイアウト */
@media screen and (max-width: 768px) {
    table {
        width: 90%;
        margin-left: 10px;
    }
    .gameimage {
        width: 85%;
        cursor: pointer;
        padding: 0 20px 10px;
    }
    .youtube-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    
    }
    
    .youtube-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 95%;
        height: 95%;
        max-width: 720px;
        max-height: 405px;
        border: none;
    }
}