@charset "UTF-8";
/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

/*----------------------------------------------------------------------------
	reset
----------------------------------------------------------------------------*/
* {
	box-sizing: border-box;
	vertical-align: baseline;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}

ul, ol {
	list-style-type: none;
}

em, strong, th, address {
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

img, object, embed {
	border: 0;
	vertical-align: top;
}

img {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

hr {
	display: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

li {
	list-style-type: none;
}

strong {
	font-weight: bold;
}

p:last-child {
	margin-bottom:0 !important;
}

/*----------------------------------------------------------------------------
	linkColor
----------------------------------------------------------------------------*/
a {
	color: #FF7F00;
	text-decoration: underline;
}

a:hover {
	color: #000;
}

a img:hover {
	opacity: 0.6;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

/*----------------------------------------------------------------------------
	base
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
	width:100%;
	height:100%;
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	position: relative;
}

body {
	position: relative;
	font-size: 13px;
	font-family: 'Noto Sans JP', sans-serif;
	color:#000;
	font-weight: 400;
	line-height: 1.5;
	word-break: break-all;
	background: #F3F5F4;
	border-top:20px solid #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.smp {
	display: none;
}

/*----------------------------------------------------------------------------
	main
----------------------------------------------------------------------------*/
main {
	/*overflow:hidden;*/
	margin:0 auto 30px auto;
}

.ib-container {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

.ib-container .grid-sizer {
  width: 32%;
  height: 0;
  margin: 0;
  padding: 0;
}

.ib-container .gutter-sizer {
  width: 2%;
  height: 0;
  margin: 0;
  padding: 0;
}

.ib-container .list {
  width: 32%;
  margin: 0 0 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity .9s ease, transform .9s ease;
}
.ib-container .list.large {
  width: 66%;
}
.ib-container .list.fade {
  opacity: 1;
  transform: translateY(0);
}

.ib-container .img {
  margin: 0;
  padding: 0;
}

.ib-container .img img {
  display: block;
  width: 100%;
  height: auto;
}

/* ボタン */
.categoryList {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.categoryList li {
  margin: 0;
  padding: 0;
}

.categoryList a {
  display: inline-block;
  padding: 8px 14px;
  text-decoration: none;
  border: 1px solid #ccc;
  color: #000;
  background: #fff;
  transition: .2s;
}

.categoryList a.active {
  background: #000;
  color: #fff;
  border-color: #000;
}



/*----------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------*/
footer {
	padding: 15px 0;
	width: 100%;
	color:#FFF;
	text-align: center;
	background: #000;
}

