/* 全体のスタイル */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* ヘッダーのスタイル */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 40px;
}

header a img {
    display: block;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

/* ヒーロー画像のスタイル */
.hero {
    margin-top: 70px;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

/* メインコンテンツ */
main {
    margin: 0 auto;
    padding: 20px;
    max-width: 800px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff; /* 文字色を白 */
    background-color: #000; /* 背景色を黒 */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #333; /* ホバー時の背景色を暗めのグレー */
}

/* メインページ専用のApple風ボタンデザイン */
.apple-button {
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 30px; /* 丸みを追加 */
    background: linear-gradient(to bottom, #ffffff, #e6e6e6); /* 光沢感を再現 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 立体感を付与 */
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.apple-button:hover {
    transform: translateY(-3px); /* ホバー時に浮く効果 */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* フッターのスタイル */
footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 12px;
    color: #777;
}

/* テーブルスタイル (カートページ) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

/* コンテナスタイル (フォームや内容表示に使用) */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
}

/* フォーム入力スタイル */
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: none;
}

button[type="submit"] {
    background-color: #333;
    color: white;
}

button[type="submit"]:hover {
    background-color: #555;
}


    display: flex; /* 中央揃え用 */
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 軽い影を追加 */
}