﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css?family=Abel');
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('//fonts.googleapis.com/earlyaccess/sawarabimincho.css');


/*=================================================
トップページ
=================================================*/



/*=================================================
共通ページ
=================================================*/
/* 商品案内枠*/
.itembox {
  width: 100%;
  padding: 30px;
  margin: 0;
  background: #F6EFDE;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
.itembox {
  padding: 20px;
  }
}

/* 商品案内共通枠内横並び*/
.itemmedia {
  width:100%;
  max-width: 1024px;
  margin: auto;
  padding:15px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}
.itemmedia_img {
  width:100%;
  max-width:460px;
  padding-right: 40px;
}
.itemmedia_text {
  box-sizing: border-box;
  max-width: 100%;
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 960px) {
.itemmedia_img {
  max-width:300px;
  }
}
@media screen and (max-width: 640px) {
.itemmedia {
  flex-direction: column;
  display:block;
  }
.itemmedia_img {
  padding-right: 0;
  padding-bottom: 15px;
  margin: 0 auto;
  }
}

/* 価格 */
.price {
  font-size: 2em;
  line-height: 100%;
}
/* 送料無料アイコン */
.free:after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url("../img/common/free.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 10px;
}
.notax {
  font-size: 12px;
}

/* ご購入はこちらボタン */
.btn_buy {
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
  font-size:1.4em;
  cursor: pointer;
  padding: 0.6em 1em 0.7em;
  text-decoration: none;
  color: #FFF;
  background: -moz-linear-gradient(top, #98B055, #6F9111);
  background: -webkit-linear-gradient(top, #98B055, #6F9111);
  background: linear-gradient(to bottom, #98B055, #6F9111);
  text-align: center;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: 800;
  line-height: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin:5px 0;
  display: inline-block;
  transition: all .3s;
}

/*-------------------------
横並びflexbox
--------------------------*/
/* 均等2列(767px以下で縦列切り替え) */
.col2 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
.col2 li{
  width:50%;
  margin:0 40px 0 0;
}
.col2 li:last-child{
  margin:0 0 0 0;
}
@media screen and (max-width: 767px) {
.col2 {
  flex-direction: column;
  display:block;
  }
.col2 li {
  width:100%;
  margin:0 0 15px 0;
  }
.col2 li:last-child{
  margin:0 0 0 0;
  }
}