/*
Theme Name: Hamaya-Theme
Description: 株式会社 濱屋オリジナルテーマ
Version: 1.0
*/

body {
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #333;
}

/* ヘッダー */
header {
    background: #ffcc00;
    padding: 10px 20px;
    text-align: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    height: 50px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

/* ナビ */
nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* ヒーロー */
.hero {
    background: url("hero.jpg") center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

.hero-text h2 {
    font-size: 36px;
    margin: 0;
}

.hero-text p {
    font-size: 18px;
    margin-top: 10px;
}

/* セクション */
.section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    background: #fff;
    margin-top: 20px;
    border-radius: 8px;
}

h2 {
    border-left: 6px solid #ffcc00;
    padding-left: 10px;
}

/* ギャラリー */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-item {
    width: calc(33% - 20px);
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.product-item img {
    width: 100%;
    border-radius: 6px;
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    background: #eee;
    margin-top: 40px;
}
