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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}
header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}
.reserve-btn {
    padding: 8px 18px;
    background: #704125;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* ← アイコンと文字の間隔 */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
    margin: 0;
    padding: 20px 30px;
}

.logo-icon {
    width: 100px;   /* アイコンのサイズ調整 */
    height: 100px;  /* 好みに合わせて変更可能 */
    object-fit: contain;
}

/* Hero */
.hero {
    background: url("../../../img/home_title.jpg") center/cover no-repeat;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    text-align: center;
}
.hero button {
    background: #704125;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
}

/* Section Common */
section {
    padding: 65px 10%;
    text-align: center;
}
h2 {
    font-size: 28px;
    margin-bottom: 35px;
}
p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Games Grid */
.games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.game-card {
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    border: 1px solid #eee;
}
.game-card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
}
.game-card .info {
    padding: 15px;
    font-size: 14px;
}
.tag {
    font-size: 11px;
    background: #704125;
    color: #fff;
    padding: 4px 8px;
    border-radius: 50px;
    margin: 10px;
    display: inline-block;
}

/* Reservation Banner */
.reserve-banner {
    background: #704125;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.reserve-banner button {
    padding: 8px 22px;
    background: #fff;
    color: #704125;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Business Time */
table {
    margin: 0 auto;
    font-size: 14px;
    border-collapse: collapse;
    min-width: 300px;
}
td {
    padding: 10px 25px;
    border-bottom: 1px solid #eee;
}

/* Footer */
footer {
    background: #f6f6f6;
    padding: 50px 10%;
    font-size: 13px;
}
footer .columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer a {
    text-decoration: none;
    color: #333;
    display: block;
    margin: 3px 0;
}
footer .copyright {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}
