/* 全体のリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 本体 */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    background-image: url('ui01_01.jpg'); /* ← ここ追加 */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #333;
    line-height: 1.6;
}

/* ヘッダー */
header {
    background-color: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* 技解説セクション */
.move-description-container {
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

/* 技内容のレイアウト */
.move-content {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

/* 画像部分 */
.move-image {
    flex: 1;
    margin-right: 2rem;
}

.move-thumbnail {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

/* 文章部分 */
.move-text {
    flex: 2;
}

.move-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.move-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

/* 動画部分 */
.move-video {
    flex: 1;
}

.move-video video {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
}

/* フッター */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #2c3e50;
    color: white;
    margin-top: 2rem;
}

footer p {
    font-size: 1rem;
}
