@charset "utf-8";

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Arial', sans-serif;
    background-color: #fcfcfc;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.navbar {
    text-align: center;
    margin: 30px 0;
}

.navbar a {
    display: inline-block;
    margin: 0 15px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s ease;
}

.navbar a:hover {
    border-bottom: 2px solid #ff4d00;
}

.main-image {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.section {
    margin-top: 60px;
}

.section h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    border-left: 5px solid #007BFF;
    padding-left: 10px;
}

.section ol {
    margin-left: 20px;
    line-height: 1.6;
}

.section p {
    margin-top: 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.lang-switch {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 0.95rem;
}

.lang-switch a {
    color: #1304ef;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.lang-switch a:hover {
    text-decoration: underline;
    color: #f42d00;
}

.author-name {
    text-align: right;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}


.movie-table {
  margin: 0 auto;
  border-collapse: collapse;
}

.movie-table th, .movie-table td {
  border: 1px solid black;
  padding: 10px;
  text-align: center;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}