/* 全体の基本スタイル */
body {
    font-family: 'SF Pro', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f7;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

/* 全体の余白調整 */
.container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* フォームの間隔 */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    height: 200px; /* 手紙作成枠の高さを拡大 */
    resize: none;
}

/* ボタンスタイル */
button {
    background-color: #0073e6;
    color: white;
    font-size: 1rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005bb5;
}

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #0073e6;
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* ナビゲーション */
nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: #005bb5;
}

/* 隠しセクション */
button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.hidden {
    display: none;
}
/* ホーム画面用のグリッドレイアウト */
.link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.link-item {
    text-align: center;
    flex: 1 1 calc(33.333% - 20px); /* 3列 */
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.link-item button {
    margin-top: 10px;
}

/* マイページの手紙リスト */
#sentLettersList {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

#sentLettersList li {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.container p {
    display: flex;
    gap: 10px; /* ボタン間のスペース */
    align-items: center; /* 縦位置を揃える */
}

button {
    margin: 0; /* 必要ならボタンの余白をリセット */
}