body{
	    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
    line-height: 1.6;
    color:#333;
    background:#f5f7fb;
    margin:20px;
}

h1{
	    font-size:28px;
    margin-bottom:10px;
}

h2{
    font-size:20px;
    margin-bottom:10px;
    border-left:4px solid #4a6fb3;
    padding-left:10px;
}

h3{
    font-size:16px;
}

/* --- Footer --- */
.footer {
 background-color: rgb(2 6 23);
 color: var(--white);
 padding: 2rem 0;
 position: relative;
 overflow: hidden; 
 text-align:center;
 font-size:13px;
 color:#777;
}

.container{
    background:white;
    padding:10px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.topComment{
    margin-top:10px;
    margin-bottom:20px;
    color:#444;
}

.yearBox{
    margin-top:30px;
    border:1px solid #4a6fb3;
}

.yearHeader{
    background:#4a6fb3;
    color:white;
    text-align:center;
    font-size:22px;
    padding:6px;
}

.yearContent{
    padding:15px;
}

.images{
	    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}

.images img{
    width:240px;
    margin:6px;
    border:1px solid #ccc;
    border-radius:4px;
}

.images img:hover{
    transform:scale(1.6);
    z-index:10;
    position:relative;
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

.images{
    display:flex;
    flex-direction:row-reverse;
}

.commentBox{
    padding:15px;
    border-left:1px solid #ddd;
}

.commentTitle{
    font-weight:bold;
    margin-bottom:8px;
}

.back{
    margin-bottom:20px;
}

.back a{
    text-decoration:none;
    color:#2b5db5;
}

.back a:hover{
    text-decoration:underline;
}

.section{
    background:white;
    padding:20px;
    margin:40px auto;
    max-width:900px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* テキスト整形 */
p{
    margin:8px 0;
}

/* リンク */
a{
    color:#2b5db5;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.thumb{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:6px;
    margin-bottom:8px;
}

/* ボタン */
.btn{
    display:inline-block;
    padding:12px 20px;
    background:#4a6fb3;
    color:white;
    border-radius:6px;
    margin-top:10px;
}

.btn:hover{
    background:#3d5c99;
}

/* おすすめ */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
}

.item{
    background:#f9fbff;
    padding:15px;
    border-radius:8px;
    text-align:center;
    transition:0.2s;
}

.item:hover{
    transform:translateY(-3px);
    background:#eef3ff;
}

a{
    text-decoration:none;
    color:#2b5db5;
    font-weight:bold;
}

/* カード */
.card{
    background:white;
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

/* 統計 */
.stats{
    display:flex;
    justify-content:space-around;
    text-align:center;
}

.stat{
    font-size:20px;
    font-weight:bold;
}

/* ヘッダー */
.hero{
    background:linear-gradient(135deg,#4a6fb3,#6f8dd9);
    color:white;
    padding:60px 20px;
    text-align:center;
}

.hero h1{
    font-size:32px;
    margin-bottom:10px;
}

.hero p{
    opacity:0.9;
}

.title-area h1{
    margin:0;
    font-size:32px;
}

.title-area{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.site-icon{
    width:60px;
    height:auto;
    background:white;
    border-radius:12px;
    padding:6px;
}

/* コンテナ */
.container{
    max-width:1000px;
    margin:30px auto;
    padding:0 20px;
}


/* list.php */
table{
    border-collapse: collapse;
    width:100%;
    background:white;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    table-layout:fixed;
}

th{
    background:#4a6fb3;
    color:white;
    padding:12px;
    text-align:center;
}

td{
    padding:10px;
    border-bottom:1px solid #e5e5e5;
}

tr:hover{
    background:#f1f5ff;
}

.back{
margin-bottom: 20px;
}

.stock{
    font-weight:bold;
}

.stock a{
    text-decoration:none;
    color:#2b5db5;
}

.stock a:hover{
    text-decoration:underline;
}


.thumb img{
    width:150px;
    border-radius:4px;
    border:1px solid #ccc;
}

.year{
    text-align:center;
    width:80px;
}

.comment{
    color:#444;
}

.searchBox{
    position:relative;
    width:240px;
    margin-bottom:18px;
}

.searchBox input{
    width:135%;
    padding:10px 36px 10px 36px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:14px;
    outline:none;
    transition:0.2s;
}

.searchBox input:focus{
    border-color:#4a6fb3;
    box-shadow:0 0 0 3px rgba(74,111,179,0.15);
}

.searchIcon{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:14px;
}

.clearBtn{
    position:absolute;
    right:-64px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#999;
    font-size:14px;
}

.clearBtn:hover{
    color:#333;
}

/* タグ共通 */
.tag {
    display:block;
    margin-bottom:8px;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
    color:white;
}

/* 種類別カラー */
.tag-cute {
    background:linear-gradient(135deg,#f7a1b5,#f48fb1);
}

.tag-simple {
    background:linear-gradient(135deg,#a3d900,#7ed321);
}

.tag-brand {
    background:linear-gradient(135deg,#b0a7d6,#8e8cd8);
}

@media (max-width:700px){

.thumb img{
    width:100%;
}

.year{
    width:60px;
    font-size:14px;
}

