@charset "utf-8";
a:hover {
  color: #333333;
text-decoration: none;
}

a {
	color: #333;
}

img{
	vertical-align: bottom;
}

footer a:hover {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}

/*==================================================
*footer-フッター*
===================================*/
/*説明:クレプレ版から変更なし*/


.top_btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: block;
  padding: 8px;
  background-color: #A3A2A2;
  font-size: 30px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}


@media screen and (max-width: 768px) {
  .top_btn {
    bottom: 60px;
  }
}
footer {
  font-family: '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'MS ゴシック', sans-serif;
}

.copy {
  padding: 18px 0;
  background: #333;
  color: #fff;
  font-family: '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'MS ゴシック', sans-serif;
  font-size: 1rem;
}

/*==================================================
*common-基本設定*
===================================*/
/* PC
-------------------------------------*/
@media screen and (min-width: 951px) {
  .spOnly {
    display: none !important;
  }
  .seOnly {
    display: none !important;
  }
}
/* SP
-------------------------------------*/
@media screen and (max-width: 950px) {
  .pcOnly {
    display: none !important;
  }
}
/* SE
----------------------------------*/
@media screen and (max-width: 768px) {
  .seOnly {
    display: block;
  }
}
/*==================================================
*header-ヘッダー*
===================================*/
header {
  background: #222;
}
header img {
  padding: 2px 0;
  width: 150px;
}
@media screen and (max-width: 768px) {
  header img {
    width: 23%;
  }
}
/*ヘッダーのロゴサイズ調整*/
.logoHDR {
  padding: 8px;
}
.logoHDR img {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .logoHDR img {
    width: 90px;
  }
}
/*==================================================
*main contents-メインコンテンツ*
===================================*/
body#top {
background: #fff; /*PC表示の項目外の背景色*/
}

.mainCont {
	background: #fff; 
	max-width: 800px;
	margin: 0 auto;
	box-shadow: 0 0 20px rgba(0, 0, 0, 16%);
	font-family: '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}

.nonshadow img {
	box-shadow: none;
}

.saletitle {
	background-color: #970002;
	padding: 1rem 0 1rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.05rem;
	line-height: 2rem;
}


.saleitem {
	width: 80%;
	margin: 0 auto;
	padding: 2rem 0;
}

.saleprice {
	color: #222222;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.05rem;
	line-height: 2.5rem;
	margin-top: 2rem;
}

.saleprice span {
	font-size: 2rem;
	font-weight: 600;
	color: #970002;
}


.itembutton {
	background-color: #b8666a;
	width: 70%;
	padding: 2.5rem 0;
	margin: 2rem auto 1rem;
    position: relative;
	border-radius: 20px;
}

.itembutton a {
	position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
	text-decoration: none;
}

.itembutton p {
	color: #ffffff;
	font-weight: 600;
	font-size: 1.5rem;
    letter-spacing: 0.1rem;
	padding-top: 1.7rem;
}




/*下部のSNS一覧*/
.snslist {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.snslist li {
	margin: 1%;
	width: 15%;
}

.snslist li:last-child {
	margin-light: 0;
}


/*==================================================
*スクロールでふわっとなるやつ*
===================================*/


.fadeUpTrigger{
opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}




