/*
	body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            box-sizing: border-box;
        }
*/

        /* ギャラリー全体のコンテナ */
        .gallery-container {
            display: grid;
            /* デフォルト（スマホ）は1列 */
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            width: 100%;
            max-width: 1200px; /* 全体の最大幅 */
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 20px;
            box-sizing: border-box;
        }

        /* タブレットサイズ（画面幅600px以上）で2列に変更 */
        @media (min-width: 600px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* PCサイズ（画面幅900px以上）で3列に変更 */
        @media (min-width: 900px) {
            .gallery-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* 個々のカードスタイル */
        .photo-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
        }

        /* カード全体のホバー効果（クリックできることを分かりやすく） */
        .photo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* リンクの装飾リセット */
        .card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }

        .photo-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 3.5 / 2; /* 画像のアスペクト比を固定して統一感を出す */
            object-fit: cover;
            display: block;
        }

        .card-content {
            padding: 15px;
        }

        .date {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 8px;
        }

        .description {
            font-size: 1.1em;
            color: #333;
            line-height: 1.4;
        }
