body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;

}


h1 {
    background-color: #0e0e66;
    border-radius: 15px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    height: auto; /* h1要素の高さを指定 */
    margin-bottom: 30px;
    background-size: auto; /* 画像の幅を指定 */
    padding: 5px;
}


section {
    
    background-color: #f8f8f8;
    border: 1px solid #fdd190;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

p {
    margin-left: 40px;
    margin-right: 40px;
}

.catch{
    background :#4c76b4;
    padding: 20px;
}

h2 {
    color: #000000;
    padding-left: 20px;
    background-color: #4169e1;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    border-radius: 20px;
}

h3 {
    margin-left: 20px;
    margin-top: 30px;
}

.highlight-text {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    
    background-color: #7ec5ff;
    border-radius: 5px;
}


.section img {
   margin-top: 20px;
}


footer {
    margin-top: 80px;
    position: relative;
}

img{
    margin-left: 30px;
    border-radius: 2%; /* 丸い形状にするための設定 */
}


.clickable-image {
    margin-left: 30px;
    transition: transform 0.3s ease;
}


.clickable-image:hover {
transform: scale(2.5); /* クリック時の拡大サイズ */
cursor: pointer;
}


#cards {
    flex-wrap: wrap; 
    display: flex;
    justify-content: center;
  }

.setumei-card {

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid #1b1b1b;
    border-radius: 5px;
    font-weight: bold;
    width: 200px;

  }


  .release-notes {
        text-align: left;
        margin: 0; /* 余白をゼロに */
        padding: 0; /* パディングをゼロに */
        white-space: pre-wrap; /* 空白や改行を維持 */
        font-family: monospace; /* フォントを等幅フォントに変更 */
        line-height: 1.2; /* 行間を調整 */
   }


    .video-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        margin-left: 20px;
        gap: 20px;
    }

    .video-container-vertical {
        width: 180px;
        aspect-ratio: 9 / 16;
        position: relative;
    }

    .video-container-vertical iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        border: none;
    }


    /* 画面が小さくなったときのスタイル */
@media screen and (max-width: 768px) { /* 例: 幅が768px以下の場合 */
    h1,h2 {
        font-size: 16px; /* 小さな画面用の文字サイズ */
    }
    img {
        max-width: 50%; /* 画像の幅を100%に設定 */
        height: auto; /* アスペクト比を維持するために高さを自動調整 */
    }
    #icon {
        margin-left:-5px;
        max-width: 20%; /* 画像の幅を100%に設定 */
        height: auto; /* アスペクト比を維持するために高さを自動調整 */
    }
}
