/* ベーススタイル */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ヘッダー */

.nav{
    background-color: #F2F2F2;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;

}

.nav li{
    display: flex;
    justify-content: center;
    margin: 40px 50px;
    font-size: 15px;

}

header nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* メインビジュアル */
.main-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONCEPT */
.concept {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.concept p{
    font-size: 20px;
}

.concept h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* MENU */
.menu-section {
    padding: 60px 20px;
    padding-top: 0;
    background-color: #fefefe;
}

.menu-title {
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.menu-title img{
    margin-bottom: 20px;
}

.menu-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-list {
    background-color: #f0f0f0;
    padding: 20px 30px;
    width: 500px;
    text-align: left;
    font-size: 20px;
    margin: 0 auto 0 150px;
}

.menu-list p{
    padding: 25px;
}

.menu-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.menu-images img {
    width: 300px;
    height: auto;
}

/* ACCESS */
.access {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.access-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.access-box {
    border: #333 solid;
    padding: 10px;
    width: 200px;

}

/* STAFF */
.staff {
    text-align: center;
    padding: 60px 20px;
    background-color: #fefefe;
}

.staff-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.staff-member {
    width: 200px;
}

.staff-member img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.staff-member p {
    margin-top: 10px;
}

/* フッター */
footer {
    text-align: center;
    font-size: 14px;
}

