Minato City
Lecture & Culture
2026.09.09–12.13
Louvre Museum Exhibition: Renaissance
56 works, including pieces by Leonardo, arrive in Japan from the Louvre
"The Louvre Museum Exhibition: Renaissance"
At The National Art Center, Tokyo, "The Louvre Museum Exhibition: Renaissance" is being held through Sunday, December 13. Focusing on Renaissance art that developed across Europe from the 15th to the 16th centuries, this exhibition introduces the rich and complex characteristics of the period through 56 works selected from the collection of the Louvre Museum.
This exhibition spotlights Leonardo da Vinci, the artist who symbolizes the Renaissance, and presents works under four themes: "Travel," "Innovation and Refinement of Technique," "Looking to Antiquity," and "The Rise of Portraiture." In addition to paintings, visitors can see a wide variety of works, including sculpture, prints, drawings, and decorative arts.
Highlights of the Exhibition
Leonardo da Vinci’s "Portrait of a Woman" shown in Japan for the first time
At this exhibition, Leonardo da Vinci’s "Portrait of a Woman," mistakenly given the alternative title "La Belle Ferronnière," will be unveiled in Japan for the first time.
An oil painting created around 1490–1497, it is a masterpiece of portraiture that symbolizes the heightened interest in human individuality during the Renaissance.
Introducing Renaissance art through four themes
The display is organized around four themes: "Travel," "Innovation and Refinement of Technique," "Looking to Antiquity," and "The Rise of Portraiture."
From the reevaluation of ancient Greek and Roman culture to exchanges among artists and the development of techniques, visitors can learn about Renaissance art from multiple perspectives.
A diverse array of works on display—from paintings and sculpture to prints and decorative arts
At the venue, works from a broad range of genres—including painting, sculpture, prints, drawings, and decorative arts—are presented. Through the Louvre Museum’s diverse holdings, visitors can experience the allure of Renaissance art.
Recommended for
This exhibition is recommended for those interested in Renaissance and Western art, those who wish to appreciate works by Leonardo da Vinci, and those who would like to experience the Louvre Museum’s collection. Why not visit as an opportunity to enjoy Western art in Tokyo, together with a tour of museums in the Roppongi area?
Venetian painter 《The Governor of Damascus Receiving the Embassy of the Republic of Venice》 c. 1511 Paris, Musée du Louvre
Photo © GrandPalaisRmn (musée du Louvre) / Gabriel De Carvalho / distributed by AMF-DNPartcom
Albrecht Dürer 《Rhinoceros》 1515 (first edition) Paris, Musée du Louvre
Photo © GrandPalaisRmn (musée du Louvre) / Michel Urtado / distributed by AMF-DNPartcom
※ Exhibition contents and artworks are subject to change.
※ For the latest information, please check the official website.
:root {
--bg-color: #fcfcfc;
--card-bg: #ffffff;
--text-main: #111111;
--text-muted: #555555;
--accent-orange: #ff5500;
--accent-orange-light: #fff2ec;
--border-color: #e5e5e5;
--dark-card: #141414;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
width: 100%;
overflow-x: hidden;
background-color: var(--bg-color);
color: var(--text-main);
font-family: 'Noto Sans JP', 'Noto Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.7;
letter-spacing: 0.02em;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 860px;
width: 100%;
margin: 0 auto;
padding: 48px 20px;
}
/* Header Styling */
header {
border-bottom: 2px solid var(--text-main);
padding-bottom: 32px;
margin-bottom: 48px;
}
.badge {
display: inline-block;
background-color: var(--accent-orange);
color: #ffffff;
font-size: 0.75rem;
font-weight: 700;
padding: 3px 10px;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 16px;
}
.main-title {
font-size: 1.6rem;
font-weight: 700;
line-height: 1.35;
color: var(--text-main);
margin-bottom: 12px;
word-break: break-word;
}
.intro-text {
font-size: 0.925rem;
color: var(--text-muted);
text-align: justify;
word-break: break-word;
}
/* Section Styling */
section {
margin-bottom: 56px;
width: 100%;
}
.section-header {
margin-bottom: 24px;
}
.section-title {
font-size: 1.3rem;
font-weight: 700;
letter-spacing: 0.04em;
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 36px;
height: 3px;
background-color: var(--accent-orange);
margin-top: 6px;
}
/* Highlights Layout */
.grid-highlights {
display: flex;
flex-direction: column;
gap: 20px;
width: 100%;
}
.card {
background-color: var(--card-bg);
border: 1px solid var(--border-color);
padding: 24px;
width: 100%;
box-sizing: border-box;
transition: border-color 0.3s ease;
}
.card:hover {
border-color: var(--accent-orange);
}
.card-number {
font-size: 0.8rem;
font-weight: 700;
color: var(--accent-orange);
margin-bottom: 8px;
display: block;
}
.card-title {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 12px;
line-height: 1.4;
word-break: break-word;
}
.card-text {
font-size: 0.9rem;
color: var(--text-muted);
word-break: break-word;
}
.card-text p {
margin-bottom: 4px;
}
.card-text p:last-child {
margin-bottom: 0;
}
/* Recommendation Section */
.recommend-box {
border-top: 1px solid var(--border-color);
padding-top: 36px;
width: 100%;
}
.recommend-text {
font-size: 0.925rem;
color: var(--text-main);
margin-bottom: 24px;
text-align: justify;
word-break: break-word;
}
/* Image Gallery Protection & Responsiveness */
.image-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
margin-bottom: 28px;
width: 100%;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.image-frame {
background-color: #f4f4f5;
border: 1px dashed var(--border-color);
border-radius: 4px;
padding: 12px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
overflow: hidden;
}
.image-frame img {
max-width: 100%;
width: 100%;
height: auto;
display: block;
object-fit: contain;
pointer-events: none;
}
.image-caption {
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 8px;
text-align: left;
word-break: break-word;
line-height: 1.4;
}
/* Notes List */
.notes-list {
list-style: none;
background-color: #f4f4f5;
padding: 20px 20px 20px 32px;
width: 100%;
box-sizing: border-box;
}
.notes-list li {
font-size: 0.825rem;
color: var(--text-muted);
margin-bottom: 6px;
text-indent: -1.2em;
word-break: break-word;
}
.notes-list li:last-child {
margin-bottom: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
.main-title {
font-size: 1.4rem;
}
.container {
padding: 32px 16px;
}
.card {
padding: 20px;
}
.image-gallery {
grid-template-columns: 1fr;
}
}