.content-wrapper {
	display: flex;
	justify-content: center;
}
.content-wrapper-inner{
	width: 980px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0 10px;
}

#maker {
	display: flex;
	gap: 2px 8px;
	flex-wrap: wrap;
	width: 320px;
}
#main {
	width: 650px;
}
#sample-order {
	background-color: #fff;
	border-radius: 8px;
	padding: 0;
	box-shadow: 6px 6px 1px -3px rgba(64, 64, 64, 0.45);
	cursor: pointer;
}
#sample-order:hover {
	box-shadow: 5px 5px 1px -3px rgba(64, 64, 64, 0.45);
}
#sample-order button {
	font-size: 1.5em;
	font-weight: bold;
  	padding: 1em;
  	background-color: var(--fabway-blue);
	color: white;
	border-radius: 10px 0 0 10px;
	border: none;
	cursor: pointer;
}
#sample-order span {
	padding-left: 36px;
}
#ibnews {
	margin-top: 16px;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 6px 6px 1px -3px rgba(64, 64, 64, 0.45);
	background-color: white;

}
#ibnews .flex-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 2px black;
    margin-bottom: 16px;
}
#ibnews p {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
}
#ibnews p a {
	text-decoration: none;
}
#ibnews-logo img { 
	width: 100px;
}
#ibnews .cat {
	font-weight: bold;
	border-bottom: solid 1px #000;
}
#ibnews ul {
	padding-left: 0;
	margin: 0 0 1em 0;
}
#ibnews li {
	border-bottom: dotted 1px #999;
	border-bottom: dotted 1px #999;
    padding: 2px;
}
#ibnews li a {
	color: #333;
	text-decoration: none;
	font-size: 0.9em;
}
#ibnews li a:hover {
	color: var(--fabway-blue);
}
#ibnews li span::before {
	content: '（';
}
#ibnews li span::after {
	content: '）';
}
#maker {
	background-color: #fff;
	/* border-radius: 8px; */
	margin-bottom: 16px;
}
#maker .makerBox {
	/* border: solid 1px #AAA;
	border-radius: 8px;
	background-color: #fff;
	 */
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 44px;
	border-bottom: dotted 1px #999999;
}
.makerBox h3 {
	text-align: center;
	margin: 4px 4px 4px 10px;
	display: flex;
	align-items: center;
}
.makerBox img { width: 150px; }

.makerBtn {
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.makerBtn div {
	width: 140px;
	margin: 4px;
	width: 40px;
	/* flex-shrink: 1 4; */
}
.makerBtn div.instagram {
	height: 30px;
	text-align: center;
}
.makerBtn div img {
	width: 100%;
	height: auto;
}
.makerBtn div.instagram img { 
	width: 30px; height:30px;
}

.makerBtn div.brandhome,
.makerBtn div.link2digital-catalog {
	padding-top: 4px;
	width: 40px;
	/* line-height: 1em; */
	text-align: center;
}
.brandhome .material-symbols-outlined,
.link2digital-catalog .material-symbols-outlined {
  font-size: 30px;
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
.material-symbols-outlined a {
	text-decoration: none;
	color: #344c74;
}
.material-symbols-outlined a:hover {
	opacity: .8;
}

.makerNews {
	margin: 16px;
}
.makerNewsTtl {
	position: relative;
}
.makerNewsTtl > div {
	position: absolute;
	right: 0;
	top: 0;
}
.makerNews h4 {
	color: #344c74;
	border-bottom: dotted 1px #344c74;
	margin: 16px 0;
	padding: 4px;
	letter-spacing: .05em;
}
.makerNews h4 i {
	margin-right: 4px;
}
.makerNews p {
	margin: 4px 0;
	font-size: 0.9rem;
}
.makerNewsTtl .material-symbols-outlined {
	font-variation-settings:
	'FILL' 0,
	'wght' 500,
	'GRAD' 0,
	'opsz' 48;
  }

span.gIcon {
	color: #344c74;
}



@media only screen and (min-width: 500px)  {
    #maker {
		display: block;
	}
	#maker .makerBox {
		width: 100%;
		margin-bottom: 2px;
	}
}

@media only screen and (min-width: 600px)   {
    #maker {
		display: flex;
		justify-content: space-between;
		gap: 0px 8px;
		flex-wrap: wrap;
	}
	#maker .makerBox {
		/* width: calc( 50% - 16px ); */
	}
}

/* 画面幅が1000pxだとすると、contentエリアの幅は、760px */
@media only screen and (min-width: 1000px)   {
	#maker {
		display: flex;
		gap: 0px 8px;
		flex-wrap: wrap;
	}
	#maker .makerBox {
		/* width: calc( 33% - 18px ); */
	}

	#maker::after {
		display:block;
		content:'';
		width: calc( 33% - 18px );
	}
}

