@charset "utf-8";
/* CSS Document */
/* -------------------- header -------------------- */
/* 背景色変更 不要な場合は削除 */
header {
  background-color: #fffcf8;
}

/* -------------------- イントロ -------------------- */
.intro{
  margin-top: 10%;
}
h1{
  font-family: "Pacifico", cursive;
	font-size: 60px;
	text-align: center;
}
.intro p{
	text-align: center;
	margin-top: 5%;
	line-height: 2.5;
	font-size: 14px;
	font-weight: bold;
}

@media (max-width:1023px) {
.intro{
  margin-top: 22%;
}
	h1{
	font-size: 38px;
	text-align: center;
}
.intro p{
	text-align: center;
	margin-top: 10%;
	line-height: 2.5;
	font-size: 12px;
	font-weight: bold;
}
}
/* -------------------- 内容 -------------------- */
.content_box {
	margin: 0 auto;
	padding-top: 8%;
}
ul.main_area{
  box-sizing: border-box;
	max-width: 860px;
	width: 90%;
	margin: 0 auto;
}
ul.main_area li{
	
}
.box{
	background-color: #fff;
	padding: 3%;
	border-radius: 10px;
	margin-bottom: 8%;
	box-shadow: 4px 4px 10px 2px rgba(0,0,0,0.15);
	display: flex;
}
.photo_area{
	width: 65%;
	margin-bottom: 0%;
}
.card_area{
	width: 35%;
	padding: 1% 4% 0% 5%;
}
@media (max-width:1023px) {
.box{
	display: block;
}
	.photo_area{
	width: 100%;
	margin-bottom: 0%;
}
.card_area{
	width: 100%;
	padding: 0% 2%;
	margin-bottom: 8%;
}
}
.no ,.brand, .color, .price{
  font-family: "Pacifico", cursive;
	
}
.no {
  font-size: 34px;
  line-height: 1.5;
}
.brand {
  font-size: 22px;
  line-height: 1.5;
  padding: 5% 0%;
  border-bottom: 1px solid #333;
  border-top: 1px solid #333;
  margin-bottom: 5%
}
.itemname {
  line-height: 1.85em;
  font-size: 14px;
  margin-bottom: 8%;
}
.soon{
  padding: 1.2% 0% 1.8%;
  border: solid 1px #000;
  border-radius: 50px;
  width: 100px;
  font-size: 13px;
  display: inline-block;
  text-align: center;
	background-color:rgba(223,236,94,1.00);
	margin-right: 2%;
}
.color {
  padding: 2% 0%;
  border: solid 1px #000;
  border-radius: 50px;
  width: 80px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
}
.price{
	display: inline;
	padding-right: 5%;
  font-size: 16px;
}
.att{
	font-size: 0.8em;
	padding-left: 1%;
}
@media (max-width:1023px) {
.itemname {
  margin-bottom: 4%;
}
}
/* -------------------- アニメーション -------------------- */
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width:1024px) {
	.sp{
		display: none;
	}
	
}
@media (max-width:1023px) {
	.pc{
		display: none;
	}
	
}