@charset "utf-8";

/************************************************
 import css
************************************************ */

/*商品詳細 ...打ち消し */
div.listrightbloc h3 {
white-space: normal;
text-overflow: clip;
}

/*商品一覧ページ ...商品名のフォント太字 */
div.listrightbloc h3 {
white-space: normal;
text-overflow: clip;
font-weight: bold;
}

/*商品ページ ...規格画像下の規格名のフォントサイズ */
#detailarea .sub_photo p.classcategory_name, #detailarea .m_sub_photo p.classcategory_name {
    font-size: 15px;
    line-height: 1.3;
    margin: 5px 0;
}

/*商品ページ ...商品コード非表示*/
#detailarea .product_code {
    display: none;
    margin: 0 0 10px;
    padding: 10px 0;
    border-top: solid 2px #cccccc;
}

/*商品ページ ...定期購入画像サイズ*/
#detailarea ul.status_icon li img {
    width: 150%;
}

/*商品ページ ...「売り切れ…×」非表示*/
p.tbl_inventory_type_notes {
    display: none;
}

/*商品ページ…定期通常価格フォントサイズ*/
.normal_price {
    font-size: 120%;
}

/* ボタンデザイン001 */
.button001 a {
    background: #87ceeb;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button001 a:hover {
    background: #313131;
    color: #FFF;
}
.button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
    border-color: #FFF;
}

/*タイトルつき囲み枠*/
.point-box {
  position: relative;
  border: 2px solid #ffb6c1; /* 枠の太さ・種類・色 */
  border-radius: 4px; /* 枠の丸み */
  margin: 1.8em 1em; /* 枠外の余白 */
  padding: 5px 15px;
}

.point-title {
  position: absolute;
  padding: 0 0.5em;
  left: 20px;
  top: -13px; /* タイトルの位置を調整 */
  color: #ffb6c1; /* タイトルの文字色 */
  font-weight: bold;
  font-size:1.3em; /* タイトルの文字サイズ */
  background-color: #ffffff;
}


/*吹き出し*/
.balloon3-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 0 5px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #FFF;
  font-size: 10px;
  font-weight: bold;
  background: #ffb6c1;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon3-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #ffb6c1;
  z-index: 0;
}

