body {
    margin: 0;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    color: #333;
    background: #fff;
}

/* Header */
header {
    background: #fff;
    border-bottom: 2px solid #e60000;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #e60000;
}

/* Hero */
.hero {
    text-align: center;
    padding: 40px 20px;
}

.red-line {
    width: 120px;
    height: 4px;
    background: #e60000;
    margin: 0 auto;
}

/* Sections */
.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.section h2 {
    font-size: 28px;
    border-left: 6px solid #e60000;
    padding-left: 10px;
    margin-bottom: 20px;
}

.content-box {
    background: #fafafa;
    padding: 20px;
    border-radius: 6px;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 210px;
    height: 132px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.product-item p {
    margin-top: 8px;
    font-size: 15px;
}

/* Access */
.map-box {
    margin-top: 20px;
}