@charset "UTF-8";
/**
 *
 *  project.css
 *
 *  単語間はハイフン-で接続
 *  共通パーツの意味分けは下記接頭辞を付与。その際、アンダーバー_で接続
 *
 *  ・utility    接頭辞 u_
 *   便利クラス。 テキストの強調、テキストの配置、余白調整など
 *  ・component  接頭辞 c_
 *   プロフィール、カテゴリindexリストなどprojectの固有パターン（再利用というより、そのためだけ！のようなもの）
 *  ・project    接頭辞 p_
 *   コメントエリア、プロフィールなど大枠パーツになるもの また、共通コンテンツ
 *
 *  component projectに関しては拡張する場合、先頭アンダーバー ._* の複数クラスで行う
 *  (例) .c_ttl-style01._type02(スタイルの拡張)
 *       .c_tbl-style._col3（テーブルの3カラムレイアウト）
 *
 *  状態を表すクラスに関しては.is-activeなど.is-*で統一。（拡張クラスの場合._is-*とする）
 *  (例) .c_btn-style01._is_active
 *
 *  なお、上記の接頭辞を使うcssは/shared/css/各名前.css に全て記述すること
 *
 */
/*--------------------------------------------------------------------------
   .p_fv_title
---------------------------------------------------------------------------*/
.p_fv_title {
  height: 590px;
  background: no-repeat 50% 50%;
  -webkit-background-size: cover;
          background-size: cover;
}
.p_fv_title > .inline {
  height: 100%;
  text-align: center;
}
.p_fv_title > .inline:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.p_fv_title .title {
  display: inline-block;
  line-height: 1;
  font-size: 60px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: .1em;
  font-weight: 600;
  vertical-align: middle;
}
.p_fv_title .title span {
  display: inline-block;
  position: relative;
  color: #ffffff;
  padding-bottom: 44px;
}
.p_fv_title .title span:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 7px;
  background: #e9e9e9;
  width: 120px;
  height: 7px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*--------------------------------------------------------------------------
   お好みのアイテムを探す  .p_unique_search
---------------------------------------------------------------------------*/
.p_unique_search {
  padding: 153px 0;
  background: url(../images/unique_search_bg.jpg) no-repeat 50% 50%;
  -webkit-background-size: cover;
          background-size: cover;
  text-align: center;
}
.p_unique_search a {
  position: relative;
  display: inline-block;
}
.p_unique_search a:after {
  content: "";
  display: block;
  position: absolute;
  width: 67px;
  height: 44px;
  background-image: url(../images/unique_search_ico_arw.png);
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.p_unique_search a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.p_unique_search a:hover:after {
  -webkit-animation: toRightFromLeft 0.4s forwards;
          animation: toRightFromLeft 0.4s forwards;
  background-image: url(../images/unique_search_ico_arw_on.png);
}


/*--------------------------------------------------------------------------
   .p_column  コラム
---------------------------------------------------------------------------*/
.p_column {
  padding: 72px 0 100px;
  background: url(../images/column_bg.jpg) no-repeat 50% 50%;
  -webkit-background-size: cover;
          background-size: cover;
}
.p_column .disc {
  display: table;
  margin-bottom: 47px;
  padding-left: 53px;
}
.p_column .disc h2,
.p_column .disc .txt {
  display: table-cell;
  vertical-align: middle;
}
.p_column .disc h2 {
  padding-right: 64px;
}
.p_column .disc .txt {
  overflow: hidden;
  padding-top: 20px;
}

.c_l_content h4 {
	margin: 50px 0 18px;
	padding-bottom: 5px;
	font-size: 20px;
	border-bottom: 1px solid #e7e7e7;
}

/* .p_column_pickup  コラムピックアップ
-----------------------------------------------------------------*/
.p_column_pickup .contents {
  margin: 0 -20px;
}
.p_column_pickup .p_column-item {
  float: left;
  margin: 0 20px;
}

/* .p_column-item
-----------------------------------------------------------------*/
.p_column-item {
  position: relative;
}
.p_column-item a {
  text-decoration: none;
}
.p_column-item .ico {
  position: absolute;
  z-index: 10;
}
.p_column-item .img {
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p_column-item a:hover .img {
  opacity: 0.7;
}
.p_column-item .txt_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  vertical-align: middle;
}
.p_column-item .txt_box .num {
  height: 38px;
  background: url(../images/column_bg_title.png) no-repeat 50% 0;
  text-align: center;
  color: #ea4b46;
  font-size: 14px;
  line-height: 38px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
}
.p_column-item .txt_box .ttl {
  font-size: 18px;
  font-weight: bold;
}
.p_column-item .txt_box .cat {
  margin-top: 9px;
  color: #959595;
  font-size: 12px;
}
.p_column-item .txt_box .like {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60px;
  height: 53px;
  margin: auto;
  padding-top: 18px;
  background: url(../images/column_bg_count.png) no-repeat;
  text-align: center;
  color: #fff;
  line-height: 1;
  font-style: italic;
}

/* .p_column-item._type01
-----------------------------------------------------------------*/
.p_column-item._type01 {
  min-height: 400px;
  margin-top: 50px;
}
.p_column-item._type01 .img {
/*  position: absolute;
  top: 0;
  left: 0;*/
}
.p_column-item._type01 .ico {
  top: -21px;
  left: 15px;
}
.p_column-item._type01 .visual {
	overflow: hidden;
	height: 400px;
	position: absolute;
	width: 816px;
}
.p_column-item._type01 .txt_box {
  display: table;
  position: relative;
  float: right;
  width: 340px;
  height: 340px;
  margin-top: 80px;
  padding: 36px 15px 32px;
  text-align: center;
  -webkit-box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
}
.p_column-item._type01 .txt_box > .inner {
  display: table-cell;
  vertical-align: middle;
  padding: 0 15px;
}
.p_column-item._type01 .txt_box .num, .p_column-item._type01 .txt_box .ttl, .p_column-item._type01 .txt_box .cat {
  display: inline-block;
  width: 100%;
}
.p_column-item._type01 .txt_box .num {
  margin-bottom: 28px;
}
.p_column-item._type01 .txt_box .like {
  margin-top: 42px;
}

.p_column-item._type01._right .visual,
.p_column-item._type01._right .img {
  left: auto;
  right: 0;
}
.p_column-item._type01._right .txt_box {
  float: left;
}

/* .p_column-item._type02
-----------------------------------------------------------------*/
.p_column-item._type02 {
  width: 340px;
  -webkit-box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
}
.p_column-item._type02 .img {
  width: 100%;
  height: auto;
}
.p_column-item._type02 .txt_box {
  position: relative;
  overflow: hidden;
  padding: 20px 70px 30px 20px;
}
.p_column-item._type02 .txt_box > .inner {
  display: table;
  width: 100%;
  height: 100%;
}
.p_column-item._type02 .txt_box .box {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
.p_column-item._type02 .txt_box .ttl {
  font-size: 15px;
  line-height: 1.4;
}
.p_column-item._type02 .txt_box .cat {
  margin-top: 5px;
}
.p_column-item._type02 .txt_box .like {
  position: absolute;
  width: 52px;
  height: 46px;
  -webkit-background-size: 52px 46px;
          background-size: 52px 46px;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  padding-top: 14px;
  font-size: 12px;
}

/* .p_column-item._type03
-----------------------------------------------------------------*/
.p_column-item._type03 {
  width: 530px;
}
.p_column-item._type03 .img {
  width: 100%;
  height: auto;
}
.p_column-item._type03 .txt_box {
  position: relative;
  overflow: hidden;
  margin: -73px 20px 0;
  padding: 20px 30px 20px 34px;
  -webkit-box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
}
.p_column-item._type03 .txt_box > .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table;
  width: 100%;
  height: 100%;
  padding: 0 70px;
}
.p_column-item._type03 .txt_box .num {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34px;
  width: 39px;
  margin: auto;
}
.p_column-item._type03 .txt_box .box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
.p_column-item._type03 .txt_box .box p {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.p_column-item._type03 .txt_box .ttl {
  font-size: 15px;
  line-height: 1.4;
}
.p_column-item._type03 .txt_box .cat {
  margin-top: 5px;
}
.p_column-item._type03 .txt_box .like {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}

/* .p_column-item._type04
-----------------------------------------------------------------*/
.p_column-item._type04 {
	width: 324px;
	display: inline-block;
	vertical-align: top;
	margin-left:58px;
	margin-bottom:50px;
	  -webkit-box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.15);
}

.p_column-item._type04:nth-child(3n+1) {
	margin-left:0;
}

.p_column-item._type04 .visual {
	overflow: hidden;
	width: 100%;
}

.p_column-item._type04 .img {
  width: 100%;
  height: auto;
}
.p_column-item._type04 .txt_box {
  position: relative;
  overflow: hidden;
}
.p_column-item._type04 .txt_box > .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table;
  width: 100%;
  height: 100%;
/*  padding: 0 70px;*/
  text-align: left;
}
.p_column-item._type04 .txt_box .num {
position: absolute;
top: 0;
right: 0;
background: none;
/*  left: 34px;
  width: 39px;
  margin: auto;*/
}
.p_column-item._type04 .txt_box .box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
.p_column-item._type04 .txt_box .box p {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.p_column-item._type04 .txt_box .ttl {
    font-size: 15px;
    line-height: 1.8;
    margin: 10px;
    min-height: 53px;
}
.p_column-item._type04 .txt_box .cat {
  background:#ccc;
  margin: 0;
  width:120px;
  text-align:center;
  padding: 4px 0 3px 0;
  color:#fff;
}

.p_column-item._type04 .txt_box .cat._rank {
  background:#c59420;
}
.p_column-item._type04 .txt_box .cat._feature {
  background:#28a785;
}

.p_column-item._type04 .txt_box .num {
height:28px;
line-height: 100%;
font-size: 17px;
letter-spacing: 0.05em;
line-height: 171%;
margin-right: 8px;
}

.p_column-item._type04 .txt_box .like {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  display:none;
}


/*--------------------------------------------------------------------------
   .p_shopping_links  shopping周りリンク
---------------------------------------------------------------------------*/
.p_shopping_links {
  padding: 40px 0;
  background: -webkit-gradient(linear, left top, right top, from(#ffa45c), to(#f7423b));
  background: linear-gradient(to right, #ffa45c 0%, #f7423b 100%);
}
.p_shopping_links ul {
  overflow: hidden;
  margin: -10px;
}
.p_shopping_links li {
  float: left;
  margin: 10px;
}

/*--------------------------------------------------------------------------
   .p_brand_list  ブランドリスト
---------------------------------------------------------------------------*/
.p_brand_list {
  border-top: 4px solid #fff;
  padding: 20px 0 27px;
  background: url(../images/bg_txtr01.png);
}
.p_brand_list > .inline {
  padding: 78px 0 60px;
  background: #FFF;
}
.p_brand_list h2 {
  margin-bottom: 54px;
}
.p_brand_list .box {
  position: relative;
  width: 468px;
}
.p_brand_list .box dt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  text-align: center;
}
.p_brand_list .box dd ul {
  overflow: hidden;
}
.p_brand_list .box dd li {
  float: left;
}
.p_brand_list .box .u_left dt {
  padding-left: 52px;
}
.p_brand_list .box .u_right dt {
  padding-right: 52px;
}

/*--------------------------------------------------------------------------
   .p_shopping_guide  お買い物ガイド
---------------------------------------------------------------------------*/
.p_shopping_guide {
  padding: 95px 0 0;
}
.p_shopping_guide h2 {
  margin-bottom: 65px;
}
.p_shopping_guide .c_grid + .c_grid {
  margin-top: 22px;
}
.p_shopping_guide .c_grid._col2 .c_grid-col {
  width: 48.5%;
}
.p_shopping_guide .c_grid._col2 .c_grid-col:first-child {
  width: 51.5%;
}
.p_shopping_guide .block + .block {
  margin-top: 36px;
}
.p_shopping_guide .block h3 {
  margin-bottom: 28px;
  color: #e6e6e6;
  line-height: 1;
}
.p_shopping_guide .block h3 span {
  display: inline-block;
  padding: 9px 17px 9px;
  background: #3e3e3e;
  border-radius: 16px;
}
.p_shopping_guide .block .cont {
  font-size: 12px;
}
.p_shopping_guide .block .em01 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.p_shopping_guide .block .list dt {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 14px;
}
.p_shopping_guide .block .list dt + dd {
  margin-bottom: 18px;
}
.p_shopping_guide .delivery_block .c_list_note {
  margin-top: 20px;
}
.p_shopping_guide .contact_block .tel {
  position: relative;
  margin-top: 10px;
  padding-left: 38px;
  font-weight: bold;
}
.p_shopping_guide .contact_block .tel span {
  display: block;
  line-height: 1;
}
.p_shopping_guide .contact_block .tel .em {
  margin-bottom: 9px;
  font-size: 32px;
}
.p_shopping_guide .contact_block .tel:before {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 30px;
  background-image: url(../images/guide_ico_tel.png);
  left: 0;
  top: 0;
}
.p_shopping_guide .contact_block .mail {
  position: relative;
  margin-top: 5px;
  padding-left: 38px;
  font-weight: bold;
  font-size: 14px;
}
.p_shopping_guide .contact_block .mail a {
  text-decoration: none;
}
.p_shopping_guide .contact_block .mail a:hover {
  text-decoration: underline;
}
.p_shopping_guide .contact_block .mail:before {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 17px;
  background-image: url(../images/guide_ico_mail.png);
  left: 0;
  top: 50%;
  margin-top: -9px;
}
.p_shopping_guide .calendar_block .cont {
  position: relative;
  width: 532px;
}
.p_shopping_guide .calendar_block table tbody th, .p_shopping_guide .calendar_block table tbody td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 76px;
  height: 48px;
  border: 1px solid #cecece;
  text-align: center;
  vertical-align: middle;
}
.p_shopping_guide .calendar_block table tbody .headline td {
  background: #f5f5f5;
}
.p_shopping_guide .calendar_block table tbody td div {
  display: table-cell;
  width: 75px;
  height: 47px;
  text-align: center;
  vertical-align: middle;
}
.p_shopping_guide .calendar_block table tbody .Sun {
  color: #f70000;
  background: #FEE;
}
.p_shopping_guide .calendar_block table tbody .Sat {
  color: #5863f0;
  background: #EFF;
}
.p_shopping_guide .calendar_block table tbody .Holyday {
  color: #f70000;
  background: #FEE;
}
.p_shopping_guide .calendar_block table tbody tr:first-child th, .p_shopping_guide .calendar_block table tbody tr:first-child td {
  height: auto;
}
.p_shopping_guide .calendar_block table tbody tr:first-child th {
  border-width: 0;
  text-align: left;
}
.p_shopping_guide .calendar_block table tbody tr:first-child p {
  margin-bottom: 11px;
  font-size: 14px;
}
.p_shopping_guide .calendar_block .cal_ui {
  position: absolute;
  top: 2px;
  right: 0;
  margin-right: -9px;
}
.p_shopping_guide .calendar_block .cal_ui input {
  background: none;
  border-width: 0;
  outline: 0;
  font-weight: normal;
  margin: 0 9px;
  font-size: 12px;
  cursor: pointer;
}
.p_shopping_guide .calendar_block .cal_ui input:hover {
  text-decoration: underline;
}
.p_shopping_guide .calendar_block .cal_wrapper table.cal tr td div{
	position:relative;
}
.p_shopping_guide .calendar_block .cal_wrapper table.cal tr td div span {
	display:none;
	position:absolute;
	top: 40px;
  left: 10px;
	width:100%;
	font-size:11px;
	border:solid 1px #EEE;
	background-color:#FFF;
	text-align:center;
	padding:5px;
	z-index:10;
	color:#000;
	line-height:1.5em;
}

/*--------------------------------------------------------------------------
   .p_fixed_bnr  画面左下固定バナー
---------------------------------------------------------------------------*/
.p_fixed_bnr {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 500;
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p_fixed_bnr.is_show {
  opacity: 1;
}

/*--------------------------------------------------------------------------
   .p_sec_search_tab  tab展開検索コンテンツ
---------------------------------------------------------------------------*/
.p_sec_search_tab {
  padding: 76px 0 94px;
  background: url(../../shared/images/bg_txtr02.png);
}
.p_sec_search_tab .tab_wrap {
  background: #fff;
}
.p_sec_search_tab .tab_nav {
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.p_sec_search_tab .tab_nav li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  width: 10%;
}
.p_sec_search_tab .tab_nav li + li {
  padding-left: 1px;
}
.p_sec_search_tab .tab_nav li a {
  position: relative;
  display: table;
  width: 100%;
  height: 60px;
  background: #dfdfdf;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.4;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p_sec_search_tab .tab_nav li a span {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.p_sec_search_tab .tab_nav li a.is_active, .p_sec_search_tab .tab_nav li a:hover {
  background: #404040;
  color: #ea4b46;
}
.p_sec_search_tab .tab_nav._has_7 li {
  width: 14.28%;
}
.p_sec_search_tab .tab_nav._has_7 li:first-child {
  width: 14.32%;
}
.p_sec_search_tab .tab_content {
  position: relative;
  border-radius: 0 0 5px 5px;
  border: solid #e0e0e0;
  border-width: 0 1px 1px;
}
.p_sec_search_tab .tab_sec {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 34px 50px 50px;
  opacity: 0;
}
.p_sec_search_tab .tab_sec > .inline {
  overflow: hidden;
}
.p_sec_search_tab .tab_sec a {
  text-decoration: none;
}
.p_sec_search_tab .tab_sec a:hover {
  text-decoration: underline;
}

/* .p_sec_item_search  お好みのアイテムを探す .p_sec_search_tabがベースです
-----------------------------------------------------------------*/
.p_sec_item_search .tab_wrap {
  position: relative;
}
.p_sec_item_search .tab_nav li a {
  height: 80px;
}
.p_sec_item_search .tab_content {
  padding-bottom: 96px;
}
.p_sec_item_search .tab_sec .c_list_column {
  margin-top: -6px;
}
.p_sec_item_search .tab_sec .c_list_column li {
  margin-top: 6px;
}
.p_sec_item_search .bottom {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  height: 96px;
  bottom: 0;
  padding: 0 40px;
  border-top: 1px solid #e0e0e0;
}
.p_sec_item_search .bottom .free_word {
  position: relative;
  height: 100%;
  float: left;
}
.p_sec_item_search .bottom .free_word:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.p_sec_item_search .bottom .free_word dt, .p_sec_item_search .bottom .free_word dd {
  display: inline-block;
}
.p_sec_item_search .bottom .free_word dt {
  margin-right: 12px;
  font-weight: bold;
}
.p_sec_item_search .bottom .free_word dd input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 465px;
  height: 40px;
  padding: 10px 40px 10px 20px;
  background: #f3f3f3;
  border-radius: 50px;
  border: #000;
}
.p_sec_item_search .bottom .search_btn {
  float: right;
  height: 100%;
}
.p_sec_item_search .bottom .search_btn:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.p_sec_item_search .bottom .search_btn .c_btn_style01 {
  vertical-align: middle;
}

/*--------------------------------------------------------------------------
   .p_sec_item_list  アイテムリスト
---------------------------------------------------------------------------*/
#Page .p_sec_item_list {
  padding: 50px 0 59px;
}

/* .p_sec_item_list-cont
-----------------------------------------------------------------*/
#Page .p_sec_item_list-cont {
  margin: 50px 0;
}
#Page .p_sec_item_list-cont a:hover {
  color: #333;
}
#Page .p_sec_item_list-cont ul {
  overflow: hidden;
}
#Page .p_sec_item_list-cont ul + ul {
  margin-top: 48px;
}
#Page .p_sec_item_list-cont ul li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  width: 344px;
}
#Page .p_sec_item_list-cont ul li + li {
  margin-left: 34px;
}
#Page .p_sec_item_list-cont .img {
  border: 1px solid #e0e0e0;
  text-align: center;
}
#Page .p_sec_item_list-cont .img a {
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#Page .p_sec_item_list-cont .img a:hover {
  opacity: 0.7;
}
#Page .p_sec_item_list-cont .txt_box {
  padding-top: 16px;
}
#Page .p_sec_item_list-cont .name {
  font-size: 12px;
  line-height: 1.5;
}
#Page .p_sec_item_list-cont .price {
  margin-top: 10px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
#Page .p_sec_item_list-cont .price .em {
  font-size: 20px;
}
#Page .p_sec_item_list-cont .price .small {
  font-size: 10px;
  margin-left: 10px;
  font-weight: normal;
}
#Page .p_sec_item_list-cont .star {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
}
#Page .p_sec_item_list-cont .star img {
  vertical-align: middle;
}

/* .p_sec_item_list-note
-----------------------------------------------------------------*/
#Page .p_sec_item_list-note {
  margin-top: 30px;
  line-height: 1;
}
#Page .p_sec_item_list-note table + table {
  margin-top: 10px;
}

#Page .p_sec_item_list .bnr_area {
  margin-top: 72px;
}
#Page .p_sec_item_list .btn_favorite {
  margin-top: 72px;
  text-align: center;
  font-size: 16px;
}
#Page .p_sec_item_list .btn_favorite a {
  text-decoration: underline;
}
#Page .p_sec_item_list .btn_favorite a:hover {
  text-decoration: none;
  color: #333;
}
#Page .p_sec_item_list .btn_favorite span {
  position: relative;
  padding-left: 30px;
}
#Page .p_sec_item_list .btn_favorite span:before {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 14px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(../../shared/images/rakuten/okiniiri.gif);
}
