@charset "utf-8";

html * {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
}
html,body,div, span, object, iframe, p, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
	margin: 0;
	padding: 0;
	line-height: 1.1rem;
	border: 0;
	box-sizing: border-box;
	vertical-align: baseline;
	background: transparent;
}
a {
    color: #FFF;
    font-size: 80%
}
ul {
	list-style:none;
}
img {
	display: block;
	line-height: 0;
	font-size: 0;
	width: 100%;
}

body {
  background: #000;
  color: #fff;
  margin: 0;
  padding-top: 56px; /* ヘッダー高さ分 */
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fe4846; /* ← 指定どおり */
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
}

.site-title {
  text-align: center;
  margin: 0; 
}

.site-title img {
  display: inline-block;
  height: 32px;   /* 調整 */
  width: auto;
}


@media screen and (min-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }

  .site-title {
    line-height: 1;
  }

  .site-title img {
    height: 44px;
    vertical-align: middle;
  }
}




.section-head{
  padding: 24px 0 16px; 
  text-align: center;
}

.section-title{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.section-note{
  margin: 6px 0 0;
  font-size: 12px;
  color: #aaa;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.list{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* SP：3列に寄せる */
@media (max-width: 480px){
  .list{
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
  }
  .item img{
    border-radius: 12px;
  }
  .title{
    font-size: 11px;
  }
}


.item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}


.site-footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;   
  color: #888;
  padding: 20px 16px;
  text-align: center;
  z-index: 1000;
    font-size: 70%
}

/* フッター分だけ下に余白を作って被り防止 */
body{
 padding-bottom: 100px; /* ← footer高さ + 余裕 */
}

