@charset "utf-8";

img {
  vertical-align: bottom;
}

.border-box {
  box-sizing: border-box
}


/* ==========================================================================

    リセット

========================================================================== */
/* 特集ページ */
.feature .main_contents ul.ul_reset {
  width: auto;
  margin: 0;
  padding: 0;
}
.feature .main_contents li.li_reset {
  width: auto;
  float: none;
  margin: 0;
}




/* ==========================================================================
==
==    新着ページ
==
========================================================================== */
 

/*　〇〇とは…　*/
.towa {
  position: relative;
  margin: 0 40px;
}
.towa_h3 {
  font-size: 1.2em;
  margin-left: 16px;
  padding: 8px;
  background-color: #fff;
  position: absolute;
  top: -20px;
}
.towa_text {
  padding: 16px;
  border: solid 1px #333;
  border-radius: 10px;
}

/*　商品特長　*/
.tokucho_h3 {
  font-size: 107%;
  font-weight: bold;
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: solid 4px #e60012;
}
.tokucho-image {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}


/* 「この商品に関する詳細はこちら」ボタン */
.kochira-btn-area {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.kochira-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.8em 2em 0.8em 4em;
  text-decoration: none !important;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  color: #fff !important;
  background-color: #009537;
  border-bottom: solid 2px #006d28;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .2),
                    0 2px 2px rgba(0, 0, 0, 0.19);
}
.kochira-btn::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -0.5em;
  width: 16px;
  height: 16px;
  background-color: #fff;
}
.kochira-btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -0.3em;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 6px solid #009537;
}
.kochira-btn:active {
  border-bottom: solid 2px #009537;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}



/* ==========================================================================

    画像

========================================================================== */

.banner-L { /* バナーL（1列） */
  width: 670px;
  height: 150px;
}

.banner-M { /* バナーM（2列） */
  width: 325px;
  height: 145px;
}

.banner-S { /* バナーS（3列） */
  width: 218px;
  height: 111px;
}


/* ==========================================================================

    ボタン

========================================================================== */

/* DLボタン */
button { /* reset */
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-align: center;
  cursor: pointer;
}
.btn-fade:hover { /* 背景が濃いグレーに、文字が白に変わる */
  color: #fff;
  background-color: #373734;
  transition: all ease .3s;
}


/* ==========================================================================

    効果・アニメーション

========================================================================== */

.link-flash:hover { /* マウスオーバーでピカッとする */
  opacity: 1;
  animation: link-flash 1s;
}
@keyframes link-flash {
  0% { opacity: .4; }
  100% { opacity: 1; }
}


.fadeIn { /* 要素がふわっと出てくる */
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s;
}


.fuwafuwa { /* ふわふわするアニメーション  */
  animation: fuwafuwa 2s infinite ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0,0);
  }
  50% {
    transform: translate(0,-10px); /*上下の幅*/
  }
  100% {
    transform: translate(0,0);
  }
}


/* ==========================================================================

    margin（commonに無いものを追加）

========================================================================== */

.mb80 {margin-bottom:80px;}
.mb100{margin-bottom:100px;}
.mb120{margin-bottom:120px;}

.mb8  {margin-bottom: 8px;}
.mb16 {margin-bottom: 16px;}
.mb24 {margin-bottom: 24px;}
.mb32 {margin-bottom: 32px;}
.mb40 {margin-bottom: 40px;}
.mb48 {margin-bottom: 48px;}
.mb56 {margin-bottom: 56px;}
.mb64 {margin-bottom: 64px;}

.mt8  {margin-top: 8px;}
.mt16 {margin-top: 16px;}
.mt24 {margin-top: 24px;}
.mt32 {margin-top: 32px;}
.mt40 {margin-top: 40px;}
.mt48 {margin-top: 48px;}
.mt56 {margin-top: 56px;}
.mt64 {margin-top: 64px;}

.mr8  {margin-right: 8px;}
.mr16 {margin-right: 16px;}
.mr24 {margin-right: 24px;}
.mr32 {margin-right: 32px;}