@cyarset :"utf-8";



	

body {/* ぜんたいの設定背景色、余白0 */
	background-color: #ffe;
	magin: 0;
	font-size: 120%; /* ページ全体の基準サイズ */
	}

/* コンテナの幅は1000px固定、空きは左右均等 */
.container {
	max-width: 1000px;
	margin: 0 auto;
	}
	
/* 見出し */
h1, h2, h3, h4, h5, h6 {
	font-family: メイリオ,sans-serif;
	font-weight: normal;
	color: #222;
	line-height: 1.1;/* 行間高さ1.1倍 */
	}
	
h1 {/* タイトル文字化粧 */
	font-size: 34px;
	text-shadow: 1px 1px 2px #666b70;
	letter-specing:3px;/* 文字間隔横 */
	margin-top:40px;/* 上余白 */
	margin-bottom:20px;/* 下余白 */
	}
	
p {/* 本文 */	
	magin: 0;
	margin-bottom: 15px;
	line-height: 1.6em;	
	}
	
body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

header {
    text-align: center;
    padding: 2rem 0;
    background-color: #333;
    color: white;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    width: calc(25% - 10px);
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: white;
    margin-top: 20px;
}

/* ------------------------------------------------ */
/* ここからがレスポンシブ対応のメディアクエリ */
/* ------------------------------------------------ */

/* タブレット用のスタイル（画面幅が768px以下の場合に適用） */
@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 10px);
    }
}

/* スマートフォン用のスタイル（画面幅が480px以下の場合に適用） */
@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }
}
