﻿@charset "UTF-8";

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


/*=================================================
トップページ
=================================================*/
/* 6つの特長*/
.points {
  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: center;
  align-items: flex-start;
}
.points_img {
  width:100%;
  max-width:160px;
  padding-left: 15px;
}
.points_text {
  box-sizing: border-box;
  max-width: 100%;
  flex: 1;
}
@media screen and (max-width: 960px) {
.points {
  align-items: center;
  padding: 0 0 15px;
  }
.points p {
  font-size: 0.9em;
  }
.points_img {
  max-width:120px;
  }
}

.pointtitle {
  display:inline-block;
  color: #FF9900;
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.4;
  text-indent: -3em;
  padding: 0 0 0.1em 3em;
}
@media screen and (max-width: 960px) {
.pointtitle {
  font-size: 1.3em;
  }
}
.point1:before {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  margin:0 0.4em 0.2em 0;
  background: url("../img/index/point1.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.point2:before {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  margin:0 0.4em 0.2em 0;
  background: url("../img/index/point2.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.point3:before {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  margin:0 0.4em 0.2em 0;
  background: url("../img/index/point3.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.point4:before {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  margin:0 0.4em 0.2em 0;
  background: url("../img/index/point4.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.point5:before {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  margin:0 0.4em 0.2em 0;
  background: url("../img/index/point5.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.point6:before {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  margin:0 0.4em 0.2em 0;
  background: url("../img/index/point6.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}


/*=================================================
共通ページ
=================================================*/
/* 各商品概要(詳細リンク＆購入ボタン)*/
.itembox {
  width: 100%;
  padding: 20px;
  margin: 0 0 30px;
  border: 2px solid #FFF;
  background: #262626;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
.itembox {
  padding: 15px;
  }
}

.itemmedia {
  width:100%;
  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: flex-start;
}
.itemmedia_img {
  width:100%;
  max-width:300px;
  padding-right: 20px;
}
.itemmedia_img img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.itemmedia_text {
  box-sizing: border-box;
  max-width: 100%;
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 960px) {
.itemmedia_img {
  max-width:200px;
  }
}
@media screen and (max-width: 640px) {
.itemmedia {
  flex-direction: column;
  display:block;
  }
.itemmedia_img {
  padding-right: 0;
  padding-bottom: 15px;
  margin: 0 auto;
  }
}

/* 価格 */
.price {
  display:inline-block;
  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;
  text-shadow: -2px 2px 2px rgba(0,0,0,0.3);
  background: linear-gradient(#FF8533, #FF6600);
  text-align: center;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  line-height: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin:5px 0;
  display: inline-block;
  transition: all .3s;
}
