@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body{
	font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}

.btn,
a.btn,
button.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}


.content_s{}
.item_title_s{
	border-bottom: 2px solid #000;
	padding: 0.4em;
	margin-bottom: 0.5em;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}
.item_nm_s{
	padding: 0.4em;
	margin-bottom: 0.5em;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
.item_img{
	text-align: center;
}

.item_img img{
	border: 1px solid #ccc;
	width: 60%;
}

.item_spec_s{
	margin-left: 0.5em;
	padding: 1em 0 0.5em;
	font-size: 0.8em;
	margin-bottom: 1em;
}
.item_price_s{
	margin-left: 0.5em;
	font-size: 1em;
	font-weight: bold;
	margin-bottom: 1em;
}
.btn_dtl_s{
	padding: 0.5em 0;
	text-align: center;
	margin: 0 auto;
	font-size: 1em;
}
.btn_modoru_s{
	padding: 0.5em 0;
	text-align: center;
	margin: 0 auto;
	font-size: 1em;
}

.btn--black,
a.btn--black {
  color: #fff;
  background-color: #000;
}
.btn--black:hover,
a.btn--black:hover {
  color: #fff;
  background: #ccc;
}


	.disp_smp{
		display: none;
	}
	.disp_pc{
		display: block;
	}

@media only screen and (max-width:480px){

	.item_img img{
		width: 90%;
	}

	.disp_smp{
		display: block;
	}
	.disp_pc{
		display: none;
	}
}