/* 基本設定 */
* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
html {
	font-size: 62.5%; 
}
body {
    font-size: 1.6rem; 
	line-height: 1.5;
  	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}
.item-page p,h3 {
  font-size: 1.6rem;
}
h3:before {
	content: "【";
}
h3:after {
	content: "】";
}
.item-page a {
	text-decoration: none;
	color: #0098cc;
     transition: all  0.3s ease;
}
.item-page a:hover {
  background-color: #ACD6FF;
}
.red-span {
	color: #e60000;
	font-weight: 500;
} 
.bold-span {
	font-weight: 600;
}
.pc_none {
	display: none;
}  

/* 商品について */
.item-page {
	padding: 0 20px;
	margin-bottom: 60px;
}
.item-page h2 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 20px;
}
/* 商品詳細 */
.item-page__intro {
	margin-bottom: 40px;
}
.item-page__intro img { /*冷凍冷蔵同梱アイコン*/
	height: 45px;
	padding: 0 5px 15px 0;
}
.item-page__intro h3 {
	font-weight: 400;
	line-height: 1.8;
}
.item-page__intro p {
	margin-bottom: 30px;
}
/* 注意事項 */
.item-page__caution {
	border: solid 1px #ccc;
	margin-bottom: 40px;
	padding: 5px;
	width: 65%;
}
.item-page__caution h3 {
	line-height: 1.8;
	font-weight: 500;
}
.item-page__caution ul {
	padding: 5px 0;
}
.item-page__caution ul li {
	padding:0 10px ;
	list-style: inside;
	font-weight: 400;
}
.item-page__caution ul li::marker{ /* リストのボタン色 */
    color: #e60000;
}
/* よくある質問 */
.item-page__qa {
	margin-bottom: 40px;
}
.item-page__qa h3{
	font-weight: 400;
	margin-bottom: 5px;
}
.item-page__qa-detail dt:before {
	content: "Q. ";
}
.item-page__qa-detail dd:before {
	content: "A. ";
}
.item-page__qa-detail dt {
  font-weight: 600;
}
.item-page__qa-detail dd{
	margin-bottom: 20px;
}
/* 商品の詳細 */
.item-page__info {
	margin-bottom: 40px;
	width: 65%;
}
.item-page__info dl {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;	
	width: 100%;
	border: 1px solid #ccc;
	border-bottom: none;
}
.item-page__info dt {
	background: #f5f5f5;
	padding: 5px;
	width: 100px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
.item-page__info dd {
	background: #fff;
	padding: 5px;
	width: calc(100% - 100px);
	border-bottom: 1px solid #ccc;
}
/*岩ガキの剥き方*/
.item-page__howto-shell {
  width: 100%;
  padding: 20px 20px 0 20px;
  margin-bottom: 40px;
  background: #f5f5f5;
  border-radius: 5px;
}
.item-page__howto-shell h3 {
  margin-bottom: 5px;
}
.item-page__howto-shell-wrap {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
}
.item-page__howto-shell_detail {
	width: 230px;
	padding: 0 0 50px 0;
	margin: 0 40px 0 0 ;
}
.item-page__howto-shell img {
	width: 230px;
	margin-bottom: 5px;
    border-radius: 20px;
}
.item-page__howto-shell h4 {
	font-size: 12px;
	font-weight:400;
}
/*価格表*/
.item-page__price {
	margin-bottom: 40px;
}
.item-page__price-table {
	border-collapse: collapse;
	margin: 0 0 20px 0;
	padding: 0;
	width: 65%;
	table-layout: fixed;
	text-align: center;
}
.item-page__price-table tr {
	background-color: #fff;
	padding: .35em;
	border-bottom: 2px dotted #ccc;
}
.item-page__price-table tr:last-child{
	border-bottom: 3px solid #ccc;
}
.item-page__price-table th {
	padding: 10px 0 3px;
	color: #0098ff;
}
.item-page__price-table td {
	padding: 10px 0;
	color: #333;
}
tbody th {
    color: #0098ff;
}
/* リンクボタン */
.item-page__button-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.item-page__button-wrap a {
  	font-weight: bold;
 	color: #FFF;
}
.item-page__button {
	display: inline-block;
	text-decoration :none;
	background-color: #acd6ff;
	text-align: center;
    font-size: 1.4rem;
	padding: 7px 10px;
	margin: 0 15px 10px 0;
	border-radius: 10px;
	box-shadow: -3px -2px rgba(0,0,0,0.1) inset;
}