@charset "UTF-8";
@import url("smoothness/jquery-ui-1.8.4.custom.css"); 
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;500;600;700;800&display=swap');

/* =======================================================================
CSSの名前：style.css 
--------------------------------------------------------------------------
1.reset
2.base
3.コンテナ・サイドバー・メインコンテンツ
4.ヘッダ
5.サイドバー
6.extファイル用
7.トップページ
8.カートの中身～注文完了まで、プレゼント応募～完了まで
9.定期購入商品履歴照会・変更
10.フッタ
11.商品詳細・一覧、プレゼント詳細・一覧
12.レビュー
13.購入履歴
14.サブウインドウで表示するページ用
15.エラーページ
16.クレジットカード登録画面
17.お気に入り
18.アドレス帳
19.マイページ
20.ログイン
21.商品比較
22.キャンペーン
23.会員登録
24.子会員リスト
25.担当法人一覧ページ
26.担当事業所一覧ページ
27.ポイント履歴ページ
28.ポイント有効期限ページ
29.STAFF START
30.CSSアニメーション
======================================================================= */


/* =================================================================
1.reset
=================================================================*/
*{box-sizing: border-box;}
body{background: #FFF; color: #333; line-height: 1.5; word-wrap: break-word; position: relative; font-size: inherit;}

/*  すべてのタグのマージン・パディングの設定をリセット
-------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,hr{margin: 0; padding: 0;}
li{list-style-type: none;}
table{border-collapse: collapse; border-spacing: 0;}
img{border: 0;}

/* =================================================================
2.base
=================================================================*/
html { font-size: 10px; }
.inner, #header .inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
h3 { font-size: 4rem; }
/*  clear
-------------------------------------------------------------*/
.clear{clear: both;}
.clearfloat{clear: both; height: 0; font-size: 1px; line-height: 0;}
.clearfix{zoom: 1;}
.clearfix:after{content: ""; display: block; clear: both;}
*:first-child+html .clearfix {zoom: 1; } /* IE7 */

/*  基本のlink color
-------------------------------------------------------------*/
a:link{color: inherit;}
a:visited{color: inherit;}
a:hover,a:active{color: inherit; text-decoration: none;}

/*  hoverアニメーション
-------------------------------------------------------------*/
/* opacity */
.hover_animation_opacity {
  opacity: .8;
  transition: all .2s linear;
}
.hover_animation_opacity:hover {opacity: 1;}


@media (hover: hover) and (pointer: fine) {
  /* add bg */
  .hover_animation_bg {
    transition: all .2s linear;
    position: relative;
  }
  .hover_animation_bg::before {
    content: " ";
    background: rgba(255,255,255,.3);
    width: 0%;
    height: calc(100% - 6px);
    position: absolute;
    top: 0;
    left: 0;
    transition: all .2s linear;
  }
  .hover_animation_bg:hover::before { width: 100%; }
  #wishList #itemListImage.product_link_items .product_link_item .comment_input__btn:hover .text {color: #fff; position: relative; z-index: 2; }
  #itemListImage.product_link_items .product_link_item .item_deteail_link:hover .txt { color: #fff; z-index: 2; }
  #itemListImage.product_link_items .product_link_item .item_deteail_link:hover::after { background: url(../images/icon/white/icon_arrow_long.svg) center / 100% no-repeat; z-index: 2; }
}

.product_link_item:hover .hover_animation_bg::before { width: 100%; }
#itemListImage.product_link_items .product_link_item:hover .item_deteail_link::after { background: url(../images/icon/white/icon_arrow_long.svg) center / 100% no-repeat; z-index: 2; }
.product_link_item:hover .item_deteail_link .txt { color: #fff; z-index: 2; }

#itemListImage .product_link_item .hover_animation_bg::before { background: #000; height: 100%; }

/*zoom img*/
.hover_animation_zoom .hover_animation_item {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: all .2s linear;
  transform: scale(1);
  position: absolute;
  top: 0;
  left: 0;
}
.hover_animation_zoom:hover .hover_animation_item {
  transform: scale(1.2);
  transition: all .2s linear;
}
.hover_animation_zoom .hover_animation_item img {max-width: none;}

/* arrow animation v1 */
.arrow_animation_v1 .animation_item {
  transition: all .3s linear;
  transform: translateX(0);
}
.arrow_animation_v1:hover .animation_item {
  transform: translateX(24px);
}

/*hover color-change*/
.hover_blue { transition: all .2s linear; }
.hover_blue:hover {color: #1432AA;}

/*  ボタンデザイン
-------------------------------------------------------------*/
/*基本デザイン-下記クラスに加えpositive　negative等のクラスを合わせて付与する*/
a.button{border: none; display: block; line-height: 1; text-align: center; padding: 10px; text-decoration: none; font-size: 16px; -webkit-border-radius: 3px;/* for Safari and Chrome */ -moz-border-radius: 3px; /* for Firefox */ -o-border-radius: 3px; /* for opera */ border-radius: 3px; width: 100%;}
input.button{border: none; display: block; line-height: 1; text-align: center; padding: 10px; text-decoration: none; font-size: 16px; -webkit-border-radius: 3px;/* for Safari and Chrome */ -moz-border-radius: 3px; /* for Firefox */ -o-border-radius: 3px; /* for opera */ border-radius: 3px; width: 100%;}

/*マウスホバー時*/
a.button:hover{opacity: 0.7; cursor: pointer; transition: all .3s;}
input.button:hover{opacity: 0.7; cursor: pointer; transition: all .3s;}

/*次へ・入力内容を確認する・注文する・ログイン・登録する・送信・検索・ご注文手続きへ進む等*/
a.positive{background: #D21E21; color: #FFFFFF;}
input.positive{background: #D21E21; color: #FFFFFF;}

/*戻る・クリア・削除・ログアウト等*/
a.negative{background: #4c4c4c; color: #FFFFFF;}/*戻る・クリア・削除・ログアウト等*/
input.negative{background: #4c4c4c; color: #FFFFFF;}

/*上記以外のボタン*/
a.normal{background: #f7f7f7; color: #333333; border: 1px solid #adadad;}
input.normal{background: #f7f7f7; color: #333333; border: 1px solid #adadad;}
.medium.normal{ padding:9px !important;}
.small.normal{ padding:5px 9px !important;}

/*押せないボタン*/
.not_click{border: none; display: block; line-height: 1; text-align: center; padding: 10px; text-decoration: none; font-size: 12px; -webkit-border-radius: 3px;/* for Safari and Chrome */ -moz-border-radius: 3px; /* for Firefox */ -o-border-radius: 3px; /* for opera */ border-radius: 3px; background: #d2d2d2; color: #a5a5a5;}
.not_click.medium{max-width: 230px; min-width: 200px;}

/*見積ボタン*/
a.estimate{background: #ED9E00; color: #FFFFFF;}
input.estimate{background: #ED9E00; color: #FFFFFF;}

/*普通サイズの時にはクラスに下記を追加*/
.medium{ min-width: 200px; font-size: 16px;}
a.medium{max-width: 230px; min-width: 200px; font-size: 16px;}
input.medium{max-width: 230px; min-width: 200px; font-size: 16px;}

/*小さいサイズの時にはクラスに下記を追加*/
.small{padding: 6px 10px; font-size: 12px;}
a.small{padding: 6px 10px; font-size: 12px;}
input.small{padding: 6px 10px; font-size: 12px;}

/*blue border btn*/
.blue_bd_btn { border: 1px solid #1432AA; color: #1432AA; }


/*  画像の縦横比調整
-------------------------------------------------------------*/
.img_box{text-align: center; position: relative;}
.img_box img{width: auto; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}

/*  カートフローチャート
-------------------------------------------------------------*/
.cart_step{position: relative; overflow: hidden;}
.cart_step:after {content: ""; clear: both; display: block;}/* clearfix */
.cart_step ul{position: relative; left: 50%; float: left; margin-bottom: 45px;}
.cart_step ul li{position: relative; left: -50%; float: left; text-align: center; width: 140px; line-height: 1.2; color: #CDCDCD;}
.cart_step ul li.active{color: #000000; font-weight: bold;}
.cart_step ul li strong{font-size: 35px; display: block;}

/*画像の場合*/
.step{display: block; margin: 25px auto 45px auto;}

/*  ローディング表示のスタイル
-------------------------------------------------------------*/
#loading{position: fixed; top: 50%; left: 50%; padding-top: 100px; width: 100px; background-image: url("../images/loader_icon_pc.gif"); background-position: center center; background-repeat: no-repeat;}

/*  商品一覧、商品詳細ページアイコン類
-------------------------------------------------------------*/
.item_icon{color: #FFFFFF; display: inline-block; font-size: 10px; font-weight: normal; line-height: 1; padding: 3px 5px; vertical-align: text-bottom; margin:2px 0;}/*アイコン共通設定*/
.item_short {background: #D21E21;}/*品切*/
.item_soldout {background: #666666;}/*品薄*/
.item_new {background: #ffcc00;}/*NEW*/
.item_before {background: #ff9900;}/*COMING SOON*/
.item_download {background: #00cccc;}/*ダウンロード商品*/
.item_yoyaku {background: #000000;}/*予約商品*/
.item_discount {background: #cc0000;}/*会員割引あり*/
.item_timesale {background: #cc0000;}/*タイムセール中*/
.item_teiki_together {background: #a52ead;}/*定期にまとめて注文可能*/
.item_volume_discount {background: #ff6699;}/*ボリュームディスカウントあり*/
.item_bundle_sale {background: #0000ff} /* まとめ買い対象*/
.item_noshi{background: #000066;} /* のし対象商品*/
.item_message{background: #ff9900;} /* メッセージカード対象商品*/
.item_gift_bag{background: #ff6699;} /* 手提げ袋対象商品*/

/*  共通パーツ
-------------------------------------------------------------*/
/* scroll bar */
.scroll_bar__disable {
  overflow-y: scroll;
  /*Edge*/
  -ms-overflow-style: none;
  /*Firefox*/
  scrollbar-width: none;
}
.scroll_bar__disable::-webkit-scrollbar{ display:none; }

/*pulldown*/
.pulldown_wrap {position: relative;}
.pulldown_child {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 1.6rem;
  display: none;
  z-index: 2;
}

/*anchor_item__arrow*/
.anchor_item__arrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.anchor_item__arrow .anchor_item__arrow_txt { width: 80%; }
.anchor_item__arrow::after {
  content: " ";
  background: url(../images/icon/white/icon_arrow_white.svg) center / 100% no-repeat;
  width: 13.334%;
  height: 0;
  padding-top: 13.334%;
}

.long_arrow_btn { display: flex; justify-content: space-between; align-items: center; }
.long_arrow_btn .icon_arrow { width: 16%; font-size: 0; }
.long_arrow_btn .txt { font-size: 2.4rem; font-weight: 600; }

/* =================================================================
3.コンテナ・サイドバー・メインコンテンツ
使用ファイル：すべてのファイル
=================================================================*/
/* container - サイドバー・メインコンテンツを格納するコンテナ
-------------------------------------------------------------*/
#container{width: 1200px; margin: auto; padding-top: 20px;}
#container:after {content: ""; clear: both; display: block;}/* clearfix */

/* sidebar - コンテナ内サイドバー
-------------------------------------------------------------*/
#sidebar{float: left; width: 190px;}
#sidebar .point_limit_date{font-weight: bold;}

/* main - コンテナ内メインコンテンツ
-------------------------------------------------------------*/
/*#main{float: right; width: 1200px; padding-bottom: 20px;}
#main h2{margin-bottom: 20px; font-weight: normal; border-bottom: solid 3px #cccccc; position: relative;}
#main h2:after{position: absolute; content: " "; display: block; border-bottom: solid 3px #373737; bottom: -3px; width: 20%;}
#main p{margin: 5px 10px; font-size: 90%; line-height: 150%;}
#main table{width: 750px; margin: 10px; font-size: 90%; border: 1px solid #CCC; line-height: 200%;}
#main th{padding: 10px; border: 1px solid #CCC; background: #F6F6F6; vertical-align: top; font-weight: normal; text-align: left;}
#main th.title{width: 160px; text-align: left;}
#main th.address{width: 55px;}
#main td{padding: 10px; border: 1px solid #CCC; vertical-align: top;}
#main .buttonarea{margin: 10px; padding-top: 40px; text-align: center;}
#main .buttonarea .button{display: inline-block; margin: 0 10px;}
#main .buttonarea .attention{color: #C00; font-size: 90%;}
#main .buttonareaFR{margin: 0 0 0px; float: right;}
#main .buttonareaFR:after{content: "."; display: block; visibility: hidden; height: 0.1px; font-size: 0.1em; line-height: 0; clear: both;}
#main .member_buttonarea .button{display: inline-block; margin: 0 10px;}
#main .hissu{color: #C00; font-weight: bold;}
#main #breadcrumbs{margin-bottom: 20px; font-size: 80%;}
#main .amazon_comment{color: #C00; font-weight: bold;}
#main .expiration_date{padding-left: 10px;}*/

#breadcrumbs {
  background: #fff;
  font-size: 1.3rem;
  padding: 1.875% 0;
}
#breadcrumbs .icon {
  display: inline-block;
  vertical-align: middle;
  width: 2em;
}

/* page_header 下層ページヘッド
-------------------------------------------------------------*/
.page_header { background: #F2F3F6; margin-bottom: 8rem; }
.page_header_txt { font-size: 4rem; padding: 6.25% 0; text-align: center; }

.page_head__none #breadcrumbs { background: #F2F3F6; }
.page_head__none .page_header { background: none; margin: 0; }

.page_head__none .page_header_none__top { margin-top: 8rem; }

.simple_box { width: 62.5%; margin: 0 auto; }
.simple_box p { font-size: 1.4rem; line-height: 1.5; font-weight: 500; }
.simple_box .simple_box__ttl { font-size: 2.4rem; margin-bottom: 2em; }
.simple_box .simple_box__ttl .simple_box__ttl_caption { font-size: 1.8rem; opacity: .8; }
.simple_box textarea { display: block; appearance: none; width: 100%; border: 1px solid #000; font-size: 1.4rem; line-height: 1.5; padding: 1.5em; }

.simple_box .buttonarea { display: flex; justify-content: center; margin: 3em auto 0; }
.simple_box .buttonarea .button { width: 48%; border: 1px solid #1432AA; color: #1432AA; border-radius: 0; margin-right: 4%; }
.simple_box .buttonarea .button:last-of-type {margin: 0;}
.simple_box .buttonarea .button .button_item { display: block; width: 100%; padding: 1.5em 0; font-size: 1.6rem; text-align: center; }
.simple_box .buttonarea .button .button_item:hover {opacity: .7;}

#main .simple_box table { width: 100%; }

 /* リキャプチャー機能用
-------------------------------------------------------------*/
#main #reCAPTCHA{width: 304px; margin: 20px auto 0;}

/* お問い合わせページ画像項目用
-------------------------------------------------------------*/
#main .apply_area img{max-width: 100%;}

/* フォーム類部品
-------------------------------------------------------------*/
input[type="text"]{border: solid 1px #ccc; -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25); box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); padding: 4px;}
input[type="email"]{border: solid 1px #ccc; -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25); box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); padding: 4px;}
input[type="tel"]{border: solid 1px #ccc; -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25); box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); padding: 4px;}
input[type="number"]{border: solid 1px #ccc; -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25); box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); padding: 4px;}
textarea{border: solid 1px #ccc; -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25); -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25); box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.25);}
input, textarea, select, button{font-family: inherit !important;}

/* #main.no-sidebar - サイドバーの無いメインコンテンツ
-------------------------------------------------------------*/
#main.no-sidebar{float: none !important; width: 980px !important; min-height: 500px; margin: auto !important;}
#main.no-sidebar table{width: 960px !important;}
#main.no-sidebar th{padding: 10px !important;}
#main.no-sidebar td{padding: 10px !important;}


/* #main.cart - カートフロー中のメインコンテンツ
-------------------------------------------------------------*/
#main.cart{float: none; width: 980px; min-height: 500px;}

/* =================================================================
4.ヘッダ
使用ファイル：common/header.xhtml
=================================================================*/
/* smartphone - スマートフォン専用サイトへのリンク
-------------------------------------------------------------*/
#smartphone a{display: block; width: 980px; height: 150px; margin: auto; background: url("../images/button_smartphone.png") no-repeat; text-indent: -9999px;}

/* preview - プレビュー時に表示するエリア
-------------------------------------------------------------*/
#preview{padding: 5px; border-bottom: 1px solid #CCC; background: #1C8600; color: #FFF; font-size: 80%; text-align: center;}
#preview table{width: 800px; margin: auto;}
#preview .ico{width: 20%; padding-right: 10px; text-align: right;}
#preview .content{text-align: left;}

/* proxy_login - 代理ログイン時に表示するエリア
-------------------------------------------------------------*/
#proxy_login{padding: 5px; border-bottom: 1px solid #CCC; background: #fcff41; color: #000000; font-size: 120%; text-align: center;}
#proxy_login table{width: 800px; margin: auto;}
#proxy_login .content{text-align: center;}

/* header - ヘッダ
-------------------------------------------------------------*/
/*default*/
#header { background: #000; color: #fff; padding: 4.8rem 0; }
#header .logo_group {display: none;}

/* fixed */
.fixed { position: fixed; }
#header.fixed {
  top: 0; left: 0;
  width: 100%;
  z-index: 2;
}
#header.fixed .inner,
#header.opend .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header.fixed .logo_group { display: block; width: 25%; }
#header.fixed .logo_group .logo-img { width: 41.61%; }
#header.fixed .logo_group .logo-txt { font-size: 2.4rem; margin-top: 5%; line-height: 1; }

#header.fixed .nav_group {width: 58.75%; margin: 0;}
#header.fixed .nav_group .nav_search_group,
#header.fixed .nav_group .nav_link_group {width: 100%;}
#header.fixed .nav_group .nav_link_group { justify-content: flex-end; margin-bottom: 3.192%;}

#header.fixed .nav_group .nav_link_group .nav_link_group__id {margin: 0;}
#header.fixed .nav_group .nav_link_group .nav_link_group__icons,
#header.fixed .nav_group .nav_link_group .nav_link_group__logout {margin-left: 4.256%;}
#header.fixed .nav_group .nav_link_group .nav_link_group__logout img { display: block; }
#header.fixed .nav_group .nav_link_group .nav_link_group__icons {width: 9.575%;}
#header.fixed .nav_group .nav_link_group .nav_link_group__logout {width: 10.639%;}

/* nav */
.nav_group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
/*pulldown - search*/
.nav_search_group {
  width: 66.67%;
  display: flex;
  justify-content: space-between;
  align-items: unset;
}
.nav_search_group__category {
  width: 36.87%;
  border: 1px solid #fff;
}
.nav_search_group__category .pulldown_trigger {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background: none;
}
.nav_search_group .nav_search_group__category .icon { width: 25%; }
.nav_search_group__category .pulldown_trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10%;
  font-size: 1.8rem;
}
.nav_search_group__category .pulldown_child {
  background: #000;
  border: 1px solid #fff;
  padding: 12.5%;
}
.nav_search_group__category .pulldown_child .pulldown_child_item {
  font-size: 1.6rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid #fff;
}
.nav_search_group__category .pulldown_child .pulldown_child_item:nth-child(n+2) {padding-top: .8rem;}

.nav_search_group .nav_search_group__keyword { width: 60.37%; }
.nav_search_group .nav_search_group__keyword form,
.nav_search_group .nav_search_group__keyword input.search_input {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.nav_search_group .nav_search_group__keyword input.search_input {
  font-size: 1.8rem;
  font-weight: 500;
  background: #fff;
  color: #000;
  padding: 0 6.11% 0;
}
.nav_search_group .nav_search_group__keyword .search_icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 6.11%;
  transform: translateY(-50%);
  width: 4.58%;
}

/*link-item*/
.nav_link_group {
  width: 29.06%;
  justify-content: flex-start;
}
.nav_link_group .nav_link_group__id { font-size: 1.5rem; margin-right: 10.753%; }
.nav_link_group .nav_link_group__icons { display: flex; justify-content: space-between; width: 19.35%; }
.nav_link_group .nav_link_group__icons li { width: 38.889%; }
.nav_link_group .nav_link_group__logout { width: 21.506%; margin-left: 10.75%; }

/* fontChanger - 文字サイズ変更
-------------------------------------------------------------*/
#fontChanger{float: right; margin: 10px 20px 0 0;}
#fontChanger h2{display: block; float: left; margin-right: 5px; font-size: 13px;}
#fontChanger .icon{float: left; line-height: 1;}
#fontChanger .icon a{color: #FFFFFF; display: inline-block; margin-right: 2px; text-decoration: none; font-size: 12px !important; padding: 3px; line-height: 1; vertical-align: text-bottom;}
#fontChanger .__FONT_CHANGER_BUTTON_S_OFF{background: #CCCCCC;}/* 小 OFF */
#fontChanger .__FONT_CHANGER_BUTTON_S_ON{background: #D21E21;}/* 小 ON */
#fontChanger .__FONT_CHANGER_BUTTON_M_OFF{background: #CCCCCC;}/* 中 OFF */
#fontChanger .__FONT_CHANGER_BUTTON_M_ON{background: #D21E21;}/* 中 ON */
#fontChanger .__FONT_CHANGER_BUTTON_L_OFF{background: #CCCCCC;}/* 中 OFF */
#fontChanger .__FONT_CHANGER_BUTTON_L_ON{background: #D21E21;}/* 大 ON */

/* language - 言語選択
-------------------------------------------------------------*/
#language{float: right; margin: 10px 20px 0 0;}
#language h2{display: block; float: left; margin-right: 5px; font-size: 13px;}
#language p{float: left; margin-right: 5px; font-size: 75%;}

/* search - 商品検索窓
-------------------------------------------------------------*/
#search{float: right; width: 209px;}
#search h2{float: left; width: 105px; height: 20px; overflow: hidden; margin: 10px 10px 0 0; background: url("../images/search_title.gif") no-repeat; text-indent: -9999px;}
#search p{clear: both; padding: 5px 0px; font-size: 75%; text-align: right;}
#search .form{display: block; float: left; width: 163px; height: 25px; margin: 10px 0px 0 0; border: 1px solid #CCCCCC; border-right: 0px; padding: 4px;}
#search .button{float: left; margin: 10px 0 0; font-size: 13px; -webkit-border-radius: 0px;/* for Safari and Chrome */ -moz-border-radius: 0px; /* for Firefox */ -o-border-radius: 0px; /* for opera */ border-radius: 0px; width: 46px;}

/* menu - メニュー
-------------------------------------------------------------*/
#menu{height: 40px; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;}
#menu .inner{display: block; width: 980px; margin: auto;}
#menu ul{margin: 0 auto; width: 980px;}
#menu ul:after {content: ""; clear: both; display: block;}/* clearfix */
#menu li{float: left;}
#menu li a{display: block; height: 38px; width: 196px; text-decoration: none; border-left: 1px solid #CCCCCC; color: #252525; text-align: center; padding-top: 10px; font-size: 15px; font-weight: bold;}
#menu li a:hover{background: #F1F1F1;}
#menu li:last-child a{border-right: 1px solid #CCCCCC;}

#menu .top_select,a.top:hover{background: #F1F1F1;}
#menu .guide_select,a.guide:hover{background: #F1F1F1;}
#menu .tokushou_select,a.tokushou:hover{background: #F1F1F1;}
#menu .company_select,a.company:hover{background: #F1F1F1;}
#menu .apply_select,a.apply:hover{background: #F1F1F1;}

/* shiborikomi - 絞り込み検索
-------------------------------------------------------------*/
#shiborikomi{width: 980px; margin: 0 auto 10px; padding: 5px 10px; background: #F1F1F1; font-size: 80%;}
#shiborikomi .select{padding: 4px 3px; background: #C00; color: #FFF; font-weight: bold;}
#shiborikomi a{padding: 4px 3px; color: #666; font-weight: bold; text-decoration: none;}
#shiborikomi a:hover{background: #CCC;}


/* =================================================================
5.サイドバー
使用ファイル：common/sidebar.xhtml
=================================================================*/
/* login - ログイン枠
-------------------------------------------------------------*/
#login{width: 190px; margin-bottom: 60px;}
#login h2{background-image: url("../images/icon/black/icon_login.png"); background-size:17px 17px; background-repeat: no-repeat; background-position: left 1px; padding-left: 19px; margin-bottom: 10px; font-size: 15px;}
#login .account h2{background-image: url("../images/icon/black/icon_account.png"); margin-bottom: 0px;}
#login .account span{font-weight: bold;}
#login .buttonarea{margin-bottom: 10px;}
#login .buttonarea:after {content: ""; clear: both; display: block;}/* clearfix */
#login .button{width: 100px; margin: 10px auto;}
#login p{margin: 0 5px 5px; font-size: 90%;}
#login .name{ margin:0 0 10px;}
#login .name strong{font-size: 20px;}
#login .error{clear: both; margin: 5px 10px; color: #C00; font-weight: bold; text-align: center;}
#login .point{color: #C00;}

/* cart - 買い物かごの中身確認・買い物かごへ
-------------------------------------------------------------*/
#cart{width: 190px; margin-bottom: 60px;}
#cart h2{background-image: url("../images/icon/black/icon_cart.png"); background-size:17px 17px; background-repeat: no-repeat; background-position: left 1px; padding-left: 19px; margin-bottom: 10px; font-size: 15px;}
#cart h3{float: left; margin: 0 0 5px 5px; font-size: 90%; font-weight: normal;}
#cart .box:after {content: ""; clear: both; display: block;}/* clearfix */
#cart .box p{float: right; margin:0 5px 5px 0; color: #C00; font-size: 90%; font-weight: bold; text-align: right;}
#cart a{width: 140px; margin: 10px auto 0;}

/* category - 商品カテゴリ
-------------------------------------------------------------*/
#category{width: 190px; margin-bottom: 60px;}
#category h2{background-image: url("../images/icon/black/icon_category.png"); background-size:17px 17px; background-repeat: no-repeat; background-position: left 1px; padding-left: 19px; margin-bottom: 10px; font-size: 15px;}
#category li{display: inline;}
#category .select{background: url("../images/marker_on.gif") 10px 10px no-repeat #C00; color: #FFF; text-decoration: none; display: block; padding: 5px 6px 6px 25px;}
#category li a{display: block; padding: 5px 5px 5px 25px; background: url("../images/marker.gif") 10px 10px no-repeat; color: #333; font-size: 90%; text-decoration: none;}
#category li a:link{display: block; overflow: hidden;}
#category li a:hover{background: url("../images/marker.gif") 10px 10px no-repeat #CCC; color: #FFF; text-decoration: underline;}

/* present - プレゼント枠
-------------------------------------------------------------*/
#present{width: 190px; margin-bottom: 60px;}
#present h2{background-image: url("../images/icon/black/icon_present.png"); background-size:17px 17px; background-repeat: no-repeat; background-position: left 1px; padding-left: 19px; margin-bottom: 10px; font-size: 15px;}
#present h3{display: block; padding: 0 10px 0 18px; background: url("../images/marker.gif") 6px 6px no-repeat; font-size: 90%; font-weight: normal;}
#present .period{margin: 0 5px 10px 15px; font-size: 90%;}
#present .all{margin: 10px 0px 0px 0px; text-align: right; font-size: 80%;}

/* magazine - メールマガジン枠
-------------------------------------------------------------*/
#magazine{width: 190px; margin-bottom: 60px;}
#magazine h2{background-image: url("../images/icon/black/icon_mail.png"); background-size:17px 17px; background-repeat: no-repeat; background-position: left 1px; padding-left: 19px; margin-bottom: 10px; font-size: 15px;}
#magazine h3{font-size: 13px;}
#magazine .text{display: block; width: 180px; height: 25px; margin: 0 auto;}
#magazine .select_area{margin-bottom: 10px;}
#magazine label{font-size: 13px;}
#magazine .radio{margin: 5px 2px 5px 5px;}
#magazine p{margin: 0 5px 2px; font-size: 80%;}
#magazine .error{margin: 5px; color: #C00; font-weight: bold;}
#magazine .free{margin: 10px auto;}
#magazine .buttonarea:after {content: ""; clear: both; display: block;}/* clearfix */
#magazine .buttonarea li{float: left; width: 50%; text-align: center;}
#magazine .buttonarea li input{display: inline-block; width: 50px;}

/* coupon - クーポン
-------------------------------------------------------------*/
#coupon{width: 190px; margin-bottom: 60px;}
#coupon h2{background-image: url("../images/icon/black/icon_coupon.png"); background-size:17px 17px; background-repeat: no-repeat; background-position: left 1px; padding-left: 19px; margin-bottom: 10px; font-size: 15px;}
#coupon p{margin: 0 10px; font-size: 80%;}
#coupon img{display: block; margin: 0 auto;}

/* calendar - カレンダー
-------------------------------------------------------------*/
#calendar{width: 190px; margin-bottom: 10px;}
#calendar h2{background-image: url("../images/icon/black/icon_calendar.png"); background-size:17px 17px; background-repeat: no-repeat; background-position: left 1px; padding-left: 19px; margin-bottom: 10px; font-size: 15px;}
#calendar p{margin: 0 5px 10px; font-size: 80%;}
#calendar span.day_color1{color: #FF7F7E;}
#SIDE_CALENDAR{width: 190px; overflow: hidden; margin: 0 auto; font-size: 10px;}
#ui-datepicker-div {width: 13em !important;	border: 1px solid #AAA !important; display: none;}
#ui-datepicker-div .ui-datepicker-header {background: #CCC repeat-x scroll 50% 50% !important; width: 100% !important;}
#ui-datepicker-div table.ui-datepicker-calendar {width: 100% !important;}
#ui-datepicker-div select.ui-datepicker-year, #ui-datepicker-div select.ui-datepicker-month{width: 40% !important; border: 1px solid #e0e0e0; height: 23px;}
.ui-widget-content{border: 1px solid #FFF;}
.ui-datepicker{padding: 1px}
.ui-datepicker-title{font-size: 12px;}
.ui-widget-header{width: 178px; border-top: none; border-left: none; border-right: none; border-bottom: solid 1px #CCC; border-radius: 0; background: none;}
.ui-datepicker table{width: 178px;}
.ui-datepicker th,.ui-datepicker td{width: 10px !important; margin: 0; padding: 1px; border: none;}
.ui-datepicker th a,.ui-datepicker td a{padding: 1px; border: none !important;}
.ui-datepicker th div,.ui-datepicker td div{padding: 1px; border: none !important;}
.ui-datepicker-week-end{color: #C00;}

.ui-datepicker .day_color1 .ui-state-default{background-image: none; background-color: #FF7F7E; color: #C00;}
.ui-datepicker .day_color2 .ui-state-default{background-image: none; background-color: #D7FFED;}
.ui-datepicker .day_color3 .ui-state-default{background-image: none; background-color: #DDF;}
.ui-datepicker .day_color4 .ui-state-default{background-image: none; background-color: #FFD;}
.ui-datepicker .day_color5 .ui-state-default{background-image: none; background-color: #E7FFFF;}
.ui-datepicker .day_color6 .ui-state-default{background-image: none; background-color: #F0D6FF;}
img.ui-datepicker-trigger {vertical-align: top !important; padding-left: 5px !important;}

/* jquery-ui-1.8.4.custom.css　上書き用（カレンダー）
-------------------------------------------------------------*/
.ui-datepicker .ui-datepicker-header{padding: .3em 0;}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{margin: 2px; padding: 2px; border: none; background: #e6e6e6;}/* 日付背景 */
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active{background: #ffffff;}/* 選択した日付背景 */

/* ホバー時 */
.ui-datepicker-next.ui-corner-all.ui-state-hover.ui-datepicker-next-hover,
.ui-datepicker-prev.ui-corner-all.ui-state-hover.ui-datepicker-prev-hover,
.ui-datepicker-next.ui-corner-all.ui-state-disabled.ui-state-hover.ui-datepicker-next-hover,
.ui-datepicker-prev.ui-corner-all.ui-state-disabled.ui-state-hover.ui-datepicker-prev-hover{box-sizing: border-box; background: none;}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {top: 2px; }
.ui-datepicker .ui-datepicker-prev-hover {left: 2px;}
.ui-datepicker .ui-datepicker-next-hover {right: 2px;}
.ui-datepicker .ui-datepicker-prev-hover span.ui-icon-circle-triangle-w,
.ui-datepicker .ui-datepicker-next-hover span.ui-icon-circle-triangle-e,
.ui-state-disabled span.ui-icon-circle-triangle-w,
.ui-state-disabled span.ui-icon-circle-triangle-e{background-image: url("./smoothness/images/ui-icons_454545_256x240.png"); opacity: .75; filter: alpha(opacity=75); -ms-filter: "alpha(opacity=75)"; -khtml-opacity: 0.75; -moz-opacity: 0.75;}

/* =================================================================
6.extファイル用
使用ファイル：ext/company.html
　　　　　　　ext/tokushou.html
　　　　　　　ext/guide.html
            　ext/social_provider.xhtml
=================================================================*/
#ext h3{display: block; font-size: 110%; margin: 30px 10px 10px; border-bottom: 1px dashed #cccccc; padding-bottom: 5px;}
#ext th{text-align: left;}
#ext ul{padding-bottom: 10px;}
#ext li{list-style: disc; margin: 5px 40px; font-size: 80%;}
#ext #sitemap ul:after {content: ""; clear: both; display: block;}/* clearfix */
#ext #sitemap li{width: 216px; float: left; list-style-type: none; margin: 5px 20px;}

/* social_provider.xhtml
-------------------------------------------------------------*/
#ext.social_provider tr th{background: #FFF;}
#ext.social_provider tr th a{text-decoration: none;}
#ext.social_provider tr.title th{background: #F6F6F6;}
#ext.social_provider th.service{width: 220px;}
#ext.social_provider th div{width: 220px; height: 44px; font-size: 14px; display: block;}
#ext.social_provider th div p{padding: 14px 0 14px 25px; border: 1px solid #cdcdcd; border-left: 0px; margin: 0 0 0 53px; display: block; background: #FFF; line-height: 1; font-size: 14px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;  
-moz-border-radius-topright: 3px;  
-moz-border-radius-bottomright: 3px;
}

#ext.social_provider #social_plus .associate{display: inline-block; min-width: inherit; width: 100px; font-size: 14px;}
#ext.social_provider #social_plus tr th{background: #FFF;}
#ext.social_provider #social_plus tr th a{text-decoration: none;}
#ext.social_provider #social_plus td{vertical-align: middle;}
#ext.social_provider #social_plus tr.title th{background: #F6F6F6;}
#ext.social_provider #social_plus th.service{width: 220px;}
#ext.social_provider #social_plus th div{width: 220px; height: 44px; font-size: 14px; display: block;}
#ext.social_provider #social_plus th div p{padding: 14px 0 14px 25px; border: 1px solid #cdcdcd; border-left: 0px; margin: 0 0 0 51px; display: block; line-height: 1; font-size: 14px;}
#ext.social_provider #social_plus th.yahoo div{background: url("../images/social_yahoo.png") no-repeat; color: #e71017;}
#ext.social_provider #social_plus th.facebook div{background: url("../images/social_facebook.png") no-repeat; color: #3b5998;}
#ext.social_provider #social_plus th.twitter div{background: url("../images/social_twitter.png") no-repeat; color: #55acee;}
#ext.social_provider #social_plus th.google div{background: url("../images/social_google.png") no-repeat; color: #dc4e41;}
#ext.social_provider #social_plus th.line div{background: url("../images/social_line.png") no-repeat; color: #00b300;}
#ext.social_provider #social_plus th.apple_id div p{padding: 18px 0px 19px 25px;}
#ext.social_provider #social_plus .alignment th div p{border: none; margin: 0 0 0 53px;}
#ext.social_provider #social_plus .alignment th.apple_id div{background: url("../images/social_apple.png") no-repeat; color: #000; height: 53px;}

#ext.social_provider th.yahoo div.off{background: url("../images/social_yahoo_off.png") no-repeat; color: #cdcdcd;}
#ext.social_provider th.facebook div.off{background: url("../images/social_facebook_off.png") no-repeat; color: #cdcdcd;}
#ext.social_provider th.twitter div.off{background: url("../images/social_twitter_off.png") no-repeat; color: #cdcdcd;}
#ext.social_provider th.google div.off{background: url("../images/social_google_off.png") no-repeat; color: #cdcdcd;}
#ext.social_provider th.mixi div.off{background: url("../images/social_mixi_off.png") no-repeat; color: #cdcdcd;}
#ext.social_provider th.line div.off{background: url("../images/social_line_off.png") no-repeat; color: #cdcdcd;}
#ext.social_provider th.paypal div.off{background: url("../images/social_paypal_off.png") no-repeat; color: #cdcdcd;}

#ext.social_provider td{vertical-align: middle;}

/* =================================================================
7.トップページ
使用ファイル：top.xhtml
=================================================================*/
/* mainvisual - メインビジュアル
-------------------------------------------------------------*/
.mainvisual .logo_inner {
  width: 100%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.mainvisual .logo_inner .logo h1{ width: 18.725%; }
.mainvisual .logo_inner .logo h2 {
  width: 100%;
  font-size: 4rem;
  padding-top: 2.5%;
}

/* recommend - おすすめ商品
-------------------------------------------------------------*/
.recomend_item_wrapper {
  width: 100%;
  padding: 4rem 0 8rem;
}
.recomend_item_wrapper .recomend_item {
  /*width: 20.83vw;
  max-width: 400px;*/
  margin: 0 2rem;
}
.recomend_item_wrapper .recomend_img_wrapper{
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
}
.recomend_item_wrapper .recomend_img_wrapper img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.recomend_item_inner{ padding:0 3.75% 0 8% ; }
.recomend_item_text {
  width: 77.338%;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  line-height: 2;
  padding: 7% 0 7.25% 0;
}
.recomend_item_text .material_name{ font-size: 2rem; }
.recomend_item_text .product_number{ font-size: 1.6rem; }

.recomend_arrow { transform:translateX(0); transition:.5s; width: 16%; }
.recomend_item:hover .recomend_arrow{ transform:translateX(9px); }

.recommend .btn_more {
  width: 31.25%;
  padding: 2.5% 1.094% 2.5% 2.5%;
  color: #fff;
}

/* category - カテゴリ
-------------------------------------------------------------*/
.category_wrapper{ margin-top: 4.17%; }
.category_block { width: 100%; padding: 5.21% 0 5.73% 0; }
.categories_text{ font-size: 2rem; padding:3.5%  0; margin-left: 3.75%; }
.categories_arrow{ width: 12%; }
.categories_wrapper { width: 65.63%; }
.categories{ flex-wrap: wrap; justify-content: space-between; }
.categories_inner{ width: 47.62%; }
.categories_inner:nth-child(n+3){ padding-top: 0.715%; }

/* topics - トピックス
-------------------------------------------------------------*/
#main .information { width: 100%; margin-top: 6.25%; }
.info_wrapper{ width: 63.36%; margin: 5.98% auto 0; }
.information .flex { justify-content: start; }
.info_title{ margin-left:3.75%; }
.info_title,
.info_date {font-size: 1.8rem; font-weight: 500;}
.info_arrow { margin-left: auto; width: 5.98%; }
.info_inner { padding: 3.61% 0 2.99% 0; }
.info_inner:last-child { border-bottom: #000 solid 1px; }
/*animation個別*/
.information .hover_animation_bg::before {
  background: rgba(0,0,0,.05);
  height: 100%;
}
.info_inner a::after {
  content: " ";
  background: url(../images/icon/black/121_arr_hoso.svg) center / 100% no-repeat;
  width: 6%;
  padding: 6% 0 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blue_bd_btn.hover_animation_bg::before { height: 100%; background: #1432AA; color: #fff; }

/* =================================================================
8.カートの中身～注文完了まで、プレゼント応募～完了まで
使用ファイル：cart_index.xhtml, cart_login.xhtml
　　　　　　　cart_seisan.xhtml, cart_confirm.xhtml
　　　　　　　cart_pre.xhtml, cart_result.xhtml
　　　　　　　present_login.xhtml, present_input.xhtml
　　　　　　　present_confirm.xhtml, present_result.xhtml,
　　　　　　　member_estimate_order_input.xhtml, member_estimate_order_result.xhtml,
=================================================================*/
/* cartSidebar - カートフロー内サイドバー
-------------------------------------------------------------*/
#cartSidebar{width: 210px; float: right;}
#cartSidebar #sideInner{width: 210px;}
#cartSidebar .total_box{border: #CCC 1px solid; padding: 10px; background: #F6F6F6;}
#cartSidebar .total_box .box{border: none; margin-bottom: 10px;}
#cartSidebar .total_box .box:after {content: ""; clear: both; display: block;}/* clearfix */
#cartSidebar .total_box h3{margin: 0; background: none; padding: 0px; border: 0px; font-size: 14px; float: left;}
#cartSidebar .total_box p.price{font-size: 14px; float: right; margin: 0px; font-weight: bold;}
#cartSidebar .total_box img{margin: 0px auto 10px; display: block;}
#cartSidebar .total_box .totalpricebox{border: none; margin-bottom: 10px; padding-top: 10px; border-top: 1px #CCCCCC solid;}
#cartSidebar .total_box .totalpricebox:after {content: ""; clear: both; display: block;}/* clearfix */
#cartSidebar .total_box .teiki_text{margin: 0; font-size: 12px;}
#cartSidebar .cartButtonArea a{display: block; margin: 0 auto 10px; min-width: 180px;; max-width: 180px;}
#cartSidebar .cartButtonArea img{display: block; max-width: 100%;}
#cartSidebar .cartButtonArea input{display: block; margin: 0 auto 10px; min-width: 180px;; max-width: 180px;}
#cartSidebar .tax{font-size: 9px; color: #666;}
#cartSidebar .amazon_highlight_area{margin-bottom: 10px; border-top:1px solid #CCC; border-bottom:1px solid #CCC;}
#cartSidebar .amazon_highlight_area p{font-size: 10px;}
#cartSidebar .login_amazonpay_btn{max-width: 180px; margin:0 auto;}
#cartSidebar #AmazonPayButton img{max-width: 180px !important; max-height: 100% !important; width: 100% !important; height: auto !important;}
#cartSidebar #AmazonPayV2Button{max-width: 180px; width: 100%; height: auto; margin: 0 auto 10px;}

/* cartIndex - 買い物かごの中身
-------------------------------------------------------------*/
#cartIndex{width: 980px; padding-bottom: 20px; margin: 0 auto;}
#cartIndex .content{width: 750px; float: left; margin-right: 20px;}
#cartIndex:after {content: ""; clear: both; display: block;}/* clearfix */
#cartIndex table{width: 750px; margin: 0px 0 10px;}
#cartIndex table th.itemname{width: 500px;}
#cartIndex .img_box{width: 80px; height: 80px; text-align: center; position: relative; float: left;}
#cartIndex .img_box img{width: auto; max-width: 80px; max-height: 80px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
#cartIndex .text_box{padding-left: 90px;}
#cartIndex .text_box p{margin: 0 0 10px; font-size: 100%;}
#cartIndex .text_box p.code{font-size: 80%;}
#cartIndex .text_box p.last{margin-bottom: 0px;}

#cartIndex .empty{margin: 20px 0;}
#cartIndex .price{color: #C00; text-align: right;}
#cartIndex .tax{font-size: 9px; color: #666;}
#cartIndex .amount{text-align: center;}
#cartIndex .delete .button{width: 50px;}

#cartIndex .total{margin: 0px 0 30px; padding: 0px 0 5px; font-weight: bold; text-align: right; border-bottom: #CCC 1px solid; width: 750px;}
#cartIndex .total p{margin: 0px; font-size: 90%;}
#cartIndex h3{margin-bottom: 15px; padding: 1px 20px; border-bottom: 1px solid #CCC; background: url("../images/marker.gif") 7px 7px no-repeat #EEE; font-size: 85%;}
#cartIndex .box{border: 1px solid #CCC; margin-bottom: 30px; clear: both;}
#cartIndex #AmazonPayV2_area .login_amazonpay_btn{max-width: 230px; min-width: 200px; margin: 0 auto;}
#cartIndex .login_amazonpay_btn{max-width: 200px; margin:0 auto;}
#cartIndex .box .buttonarea.amazon_btn{margin: 10px; padding: 10px 0 0; text-align: center;}
#cartIndex .box .buttonarea.amazon_btn .button.medium{max-width: 270px; width: 270px;}
#cartIndex .box #AmazonPayButton{min-height: 50px;}
#cartIndex .box #AmazonPayV2Button{max-width: 230px; min-width: 200px; margin: 0 auto;}

/* cartLogin - 買い物かご・プレゼントログイン
-------------------------------------------------------------*/
#cartLogin:after {content: ""; clear: both; display: block;}/* clearfix */
#cartLogin table{margin: 0 auto 20px auto; width: 428px;}
#cartLogin h3{margin-bottom: 15px; padding: 1px 20px; border-bottom: 1px solid #CCC; background: url("../images/marker.gif") 7px 7px no-repeat #EEE; font-size: 85%;}
#cartLogin .login_boxes{display: flex; align-items:stretch; justify-content: space-between;}
#cartLogin .box{border: 1px solid #CCC; width: 468px; float: left; margin: 0 10px 30px; position: relative;}
#cartLogin .box .buttonarea{width: 100%; margin: 20px 0; padding: 0;}
#cartLogin .box table{margin: 10px; width: 446px;}
#cartLogin .box .link_text{text-align: right; padding: 15px 0 10px;}
#cartLogin .box .regist_non_area{width: 442px; margin: 0 auto;}
#cartLogin .box .regist_non_area p{margin: 0 0 10px;}
#cartLogin .box .amazon_area{width: 442px; margin: 0 auto; border-top: 1px solid #ccc;}
#cartLogin .box .amazon_area p{margin: 10px 0;}
#cartLogin .box #AmazonPayButton{min-height: 80px;}
#cartLogin .box #AmazonPayV2Button{max-width: 230px; min-width: 200px; margin: 0 auto;}
#cartLogin .widebox{border: 1px solid #CCC; width: 960px; margin: 0 10px 30px; clear: both;}
#cartLogin .widebox .link{text-align: right;}
#cartLogin .widebox table{width: 920px;}
#cartLogin input[type='text'],#cartLogin input[type='password']{width: 200px;}

#cartLogin .social_provider ul{margin: 10px 19px 20px;}
#cartLogin .social_provider ul:after {content: ""; clear: both; display: block;}/* clearfix */
#cartLogin .social_provider ul li{width:220px; height:44px; font-size:14px; display:block; float:left; margin:10px 5px;}
#cartLogin .social_provider ul li a{display: block; text-decoration: none;}
#cartLogin .social_provider ul li a span{padding: 14px 0 14px 25px; border: 1px solid #cdcdcd; border-left: 0px; margin: 0 0 0 53px; display: block; background: #FFF; line-height: 1; font-size: 14px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;  
-moz-border-radius-topright: 3px;  
-moz-border-radius-bottomright: 3px;
}

#cartLogin .social_provider li.yahoo a{background: url("../images/social_yahoo.png") no-repeat; color: #e71017;}
#cartLogin .social_provider li.facebook a{background: url("../images/social_facebook.png") no-repeat; color: #3b5998;}
#cartLogin .social_provider li.twitter a{background: url("../images/social_twitter.png") no-repeat; color: #55acee;}
#cartLogin .social_provider li.google a{background: url("../images/social_google.png") no-repeat; color: #dc4e41;}
#cartLogin .social_provider li.mixi a{background: url("../images/social_mixi.png") no-repeat; color: #d1ad59;}
#cartLogin .social_provider li.line a{background: url("../images/social_line.png") no-repeat; color: #00b300;}
#cartLogin .social_provider li.paypal a{background: url("../images/social_paypal.png") no-repeat; color: #293e7f;}


/* cartFlow - 買い物かご・プレゼント注文情報入力～注文完了まで
-------------------------------------------------------------*/
#cartFlow{width: 980px; padding-bottom: 20px; margin: 0 auto;}
#cartFlow:after {content: ""; clear: both; display: block;}/* clearfix */
#cartFlow .content{width: 750px; float: left; margin-right: 20px;}
#cartFlow td input{vertical-align: baseline;}
#cartFlow table.newCreditCard{width: 547px; font-size: 100%; margin: 10px auto;}

#cartFlow .point_info{margin-bottom: 20px;}

#cartFlow .teiki ul{margin: 5px 10px;}
#cartFlow .teiki ul:after {content: ""; clear: both; display: block;}/* clearfix */
#cartFlow .teiki ul li{float: left; font-size: 13px; margin-right: 1em;}

#cartFlow table{width: 750px; margin: 0px 0 20px;}
#cartFlow table.change_data{margin-top: -21px;}
#cartFlow table.member_regist{margin-top: -21px;}
#cartFlow table td.short input{width: 120px;}
#cartFlow .teiki_item{margin-left: 0;}
#cartFlow table.teiki_table{margin: 10px 0;}
#cartFlow table.teiki_table th{width: 150px; background-color: #fff; text-align: center;}
#cartFlow table.teiki_table td{text-align: right; padding:10px 30px;}
#cartFlow table.teiki_table td.count{text-align: center;}
#cartFlow .teiki_comment,#cartFlow .cancel_comment{margin:0 0 30px;}
#cartFlow .teiki_comment p,#cartFlow .cancel_comment p{margin:5px 0;}
#cartFlow .teiki_comemnt .num,#cartFlow .teiki_item .num{padding-left: 10px;}

#cartFlow .text_box{padding-left: 90px;}
#cartFlow .text_box p{margin: 0 0 10px; font-size: 100%;}
#cartFlow .text_box p.code{font-size: 80%;}
#cartFlow .text_box p.last{margin-bottom: 0px;}

#cartFlow h3{display: block; font-size: 110%; margin: 30px 0px 10px; padding-bottom: 5px;}
#cartFlow h3 img{vertical-align: middle;}
#cartFlow h3 .lock{position:relative; top:-3px;}
#cartFlow .price{color: #C00; text-align: right;}
#cartFlow .total{margin: 0px 0 30px; padding: 0px 0 5px; font-weight: bold; text-align: right; border-bottom: #CCC 1px solid; width: 700px;}
#cartFlow .total p{margin: 0px; font-size: 90%;}
#cartFlow .point{color: #F60; font-weight: bold;}
#cartFlow .attention{color: #C00; font-weight: bold; font-size: 110%;}
#cartFlow .attention_message{color: #C00; font-weight: bold;}

#cartFlow .sendCopyButton{margin-bottom: 10px;}
#cartFlow .sendCopyButton:after {content: ""; clear: both; display: block;}/* clearfix */
#cartFlow .sendCopyButton .button{width: auto; display: inline-block;}

#cartFlow .multi_send .buttonarea{background: #EEE; margin: 0px 0 20px; padding: 30px 0;}
#cartFlow .multi_send table.delivery{margin-top: -21px;}
#cartFlow .multi_send .sendAddressButton a{width: auto; display: inline-block; margin-bottom: 10px;}

#cartFlow .noshi_setting{line-height: 1; font-size: 12px; padding: 6px 6px;background: #d2d2d2; margin-left: 10px; font-weight: bold;}
#cartFlow .gift_title{display: inline-block; width: 130px;}
#cartFlow .gift div.amount{display: inline-block; margin: 5px 15px 10px 0;}
#cartFlow .gift .item_icon{font-size: 11px;}
#cartFlow .message_card{display: inline-block; vertical-align: top;}
#cartFlow .loop_item{border-bottom: 1px #ccc solid;}
#cartFlow .gift a.button{margin-left: 10px;}
#cartFlow .gift .noshi{margin-bottom: 10px;}
#cartFlow .gift .noshi + .gift_box{border-top: 1px #ccc solid; margin:10px 0 10px; padding-left:15px;}
#cartFlow .gift .message + .gift_box{border-top: 1px #ccc solid; margin:10px 0 10px; padding-left:15px;}
#cartFlow .gift_box:not(:first-child){border-top: 1px solid #ccc; margin:0 0 10px 15px; padding-top: 10px;}
#cartFlow .gift_box:first-child{padding-left:15px;}
#cartFlow .gift_box:last-child{margin-bottom:0;}
#cartFlow .gift_item{font-weight: bold;}
#cartFlow .gift_box .img_box{width: 40px; height: 40px; display:inline-block; vertical-align: middle; margin:5px 5px; text-align: center; position: relative;}
#cartFlow .gift_box .img_box img{width: auto; max-width: 40px; max-height: 40px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
    


#cartFlow #reCAPTCHA{margin: 20px auto 40px auto;}
#cartFlow #reCAPTCHA iframe{width: 158px; height: 138px;}
#cartFlow #reCAPTCHA .g-recaptcha{display: block; -webkit-transform: scale(1.19); -ms-transform: scale(1.19); transform: scale(1.19); -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0;}

#cartFlow .cartitem{margin-top: 20px; width: 210px; padding: 10px; border: #CCC 1px solid;}
#cartFlow .cartitem h3{margin: 0 0 10px; padding: 0px; border: none; background: none;}
#cartFlow .cartitem li{margin-bottom: 10px; padding-bottom: 0px; border-bottom: 1px solid #CCC;}
#cartFlow .cartitem .img_box{ width: 25px; height: 25px; float: left; margin-right: 5px; text-align: center; position: relative;}
#cartFlow .cartitem .img_box img{width: auto; max-width: 25px; max-height: 25px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
#cartFlow .cartitem .text_box{padding-left: 0px; margin-bottom: 5px;}
#cartFlow .cartitem .text_box:after {content: ""; clear: both; display: block;}/* clearfix */
#cartFlow .cartitem .text_box p{margin: 0px; font-size: 70%; line-height: 130%;}
#cartFlow .cartitem p.price{font-size: 70%; margin: 0px; float: left;}
#cartFlow .cartitem p.amount{font-size: 70%; margin: 0px; float: right;}

#cartFlow .cartresult table{width: 920px; margin: 0 auto 20px;}
#cartFlow .cartresult .total{width: 920px; margin: 0 10px 30px;}

#cartFlow .cartconfirm table{width: 920px; margin: 0 auto 20px;}
#cartFlow .cartconfirm .total{width: 920px; margin: 0 10px 30px;}
#cartFlow .error{clear: both; margin: 5px 10px; color: #C00 !important; font-weight: bold; text-align: center; font-size: 80%;}

#cartFlow .card-supplement{font-size:12px; color:#368bc6; font-weight:bold;}

/* cartNoshiInput - のし入力画面
-------------------------------------------------------------*/
#cartFlow #noshiInput h3{background: #F6F6F6; padding: 10px 0; margin-bottom: 30px;}
#cartFlow #noshiInput h3 span{border-left: 5px solid #000; padding: 5px; margin-left: 10px;}
#cartFlow #noshiInput select{width:300px;}
#cartFlow #noshiInput td input{width:300px;}
#cartFlow #noshiInput div.noshi_img_area{box-shadow: 0 0 0 9px #FFF, 0 0 0 10px #ccc; -moz-box-shadow:0 0 0 9px #FFF, 0 0 0 10px #ccc;-webkit-box-shadow:0 0 0 9px #FFF, 0 0 0 10px #ccc;}
#cartFlow #noshiInput div.noshi_img>div{display: inline-block; width: 240px; border: 1px #ccc solid;}
#cartFlow #noshiInput div.noshi_img div>div{margin-left: 10px;}
#cartFlow #noshiInput div.noshi_img label{font-size: 90%;}
#cartFlow #noshiInput div.img_box img{max-width: 220px; max-height: 220px; border:1px #ccc solid;}
#cartFlow #noshiInput div.img_box{width: 220px; height: 220px; margin: 10px;}
#cartFlow #noshiInput div.noshi_img>div:not(:first-child){margin-left: 10px;}

#cartFlow #messageCartInput h3{background: #F6F6F6; padding: 10px 0;}
#cartFlow #messageCartInput h3 span{border-left: 5px solid #000; padding: 5px; margin-left: 10px;}
#cartFlow #messageCartInput .box{width: 375px; height:300px; float: left; margin: 15px 0 55px;}
#cartFlow #messageCartInput .message.box{padding: 50px 0 0 5px;}
#cartFlow #messageCartInput .message.box p{margin-bottom: 10px;}
#cartFlow #messageCartInput .message input{width:80%;}
#cartFlow #messageCartInput .box select{width: 90%;}
#cartFlow #messageCartInput .box::after{content: "";clear: both;display: block;}
#cartFlow #messageCartInput div.img_box{width: 100%; height: 230px; margin: 25px 0; border:1px #ccc solid;}
#cartFlow #messageCartInput div.img_box img{max-width: 375px; max-height: 230px;}

/* estiamteOrderInput -　見積詳細・注文情報入力
-------------------------------------------------------------*/
#cartFlow #estiamteOrderInput .content h3:first-child{margin-top:0;}
#cartFlow #estiamteOrderInput .estimate.button{margin:10px 0}
#cartFlow #estiamteOrderInput .content .img_box{width: 80px; height: 80px; float: left;}
#cartFlow #estiamteOrderInput .content .img_box img{max-width: 80px; max-height: 80px;}

/* クーポンラジオボタン制御に仕様 */
.couponHide{display: none;}

/* cartResult - カート完了画面
-------------------------------------------------------------*/
#cartResult .number{margin: 30px 0px; text-align: center; line-height: 200%;}
#cartResult .number strong{ font-size: 20px;}

/* cartRecommend - カートおすすめ
-------------------------------------------------------------*/
#cartRecommend{margin-top: 20px; width: 210px; padding: 10px; border: #CCC 1px solid; }
#cartRecommend .box{margin: 0px 0 40px; border: 0px;}
#cartRecommend .box:after {content: ""; clear: both; display: block;}/* clearfix */
#cartRecommend .text{margin-left: 70px; min-height: 60px;}
#cartRecommend h3{margin-bottom: 10px; height: auto; background: none; padding: 0px; border-bottom: none;}
#cartRecommend h3 a{float: right;}
#cartRecommend h4{display: block; margin: 0px 0px 10px; background: none; padding: 0px; font-size: 70%; border-bottom: none;}
#cartRecommend .appeal{display: block; margin: 0; color: #F60; font-size: 70%;}
#cartRecommend .price{display: block; margin: 0; color: #C00;}
#cartRecommend .price .teika{font-weight: bold; font-size: 100%;}
#cartRecommend .price .other{font-size: 90%;}
#cartRecommend .explanation1{display: block; margin: 5px 0px 0 0; padding: 10px 0; border-top: #CCC 1px solid; font-size: 80%; line-height: 120%;}
#cartRecommend .buttonarea{display: block; margin: 0px; padding-top: 10px; text-align: left;}
#cartRecommend .buttonarea .button{display: block; margin: 0 0 10px;}
#cartRecommend .property{ margin: 0 0 10px; color: #AAA; font-size: 75%;}

#cartRecommend .img_box{width: 60px; height: 60px; text-align: center; position: relative; float: left;}
#cartRecommend .img_box img{width: auto; max-width: 60px; max-height: 60px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}


/* クロネコ代金後払いスマホタイプ
-------------------------------------------------------------*/
#cartFlow .yamato_atobarai_auth_code{text-align: center;}
#cartFlow .yamato_atobarai_auth_code input[type="text"]{width: 50px; height: 50px; font-size: 18px; text-align: center;}
#cartFlow .yamato_atobarai_auth_code input[type="text"] + input[type="text"]{margin-left: 10px;}


/* presentFlow - 買い物かご・プレゼント注文情報入力～注文完了まで
-------------------------------------------------------------*/
#presentFlow #cartLogin table{width: 446px !important;}


/* =================================================================
9.定期購入商品履歴照会・変更
使用ファイル：teiki_index.xhtml, teiki_detail.xhtml
　　　　　　　teiki_renew.xhtml, teiki_renew_confirm.xhtml
=================================================================*/
/* teikiIndex - 定期購入商品一覧
-------------------------------------------------------------*/
#teikiIndex h3{margin: 5px; padding-left: 8px; border-left: 6px solid #373737; font-size: 110%;}
#teikiIndex h4{display: block; margin: 30px 0px 20px; padding-left: 15px; border-bottom: 1px solid #CCC; background: url("../images/marker.gif") 2px 8px no-repeat; font-size: 100%;}
#teikiIndex .box{margin: 10px; padding: 10px; border: 1px solid #CCC; background: #FFF;}
#teikiIndex .head{padding: 5px; background: #F1F1F1;}
#teikiIndex .headDetail{padding-left: 15px; background: url("../images/marker_on.gif") 0 5px no-repeat;}
#teikiIndex .head_renew .button{display: inline-block; width: auto; margin-bottom: 10px;}
#teikiIndex .price{color: #C00; text-align: right;}
#teikiIndex table{width: 728px; margin: 10px 0px 30px;}
#teikiIndex table:last-child{margin-bottom: 0px;}
#teikiIndex th{padding: 5px 10px;}
#teikiIndex td{text-align: center;}
#teikiIndex td.month{background: #F9F9F9; font-weight: bold; color: #960;}
#teikiIndex .status {float: right; margin-right: 20px;}
#teikiIndex .cancel_oder{text-align: right;}
#teikiIndex .cancel_oder .button{display: inline-block; width: auto;}
#teikiIndex .cancel_oder form{height: 20px;}

#teikiIndex .pageguide{float: left; width: 500px; font-size: 85%;}
#teikiIndex .pagelink{clear: both; font-size: 85%; margin-bottom:40px;}

/* teikiDetail - 定期購入商品照会・変更・確認画面
-------------------------------------------------------------*/
#teikiDetail h3{margin: 5px; padding-left: 8px; border-left: 6px solid #373737; font-size: 110%;}
#teikiDetail h4{display: block; margin: 30px 0px 20px; padding-left: 15px; border-bottom: 1px solid #CCC; background: url("../images/marker.gif") 2px 8px no-repeat; font-size: 100%;}
#teikiDetail h5{margin: 20px 0px 0; font-size: 16px;}
#teikiDetail .box{margin: 10px; padding: 10px; border: 1px solid #CCC; background: #FFF;}
#teikiDetail .head{padding: 5px; background: #F1F1F1;}
#teikiDetail .headDetail{margin-right: 20px; padding-left: 5px; border-left: 12px groove #333;}
#teikiDetail .price{color: #C00;}
#teikiDetail table{width: 728px; margin: 10px 0px 30px;}
#teikiDetail table:last-child{margin-bottom: 0px;}
#teikiDetail td.month{background: #F9F9F9; font-weight: bold; color: #960;}

/* =================================================================
10.フッタ
使用ファイル：common/footer.xhtml
=================================================================*/
footer { margin-top: 8.33%; }
.page__item_deteail footer { margin-top: 0; border-top: 1px solid #fff; }
footer .footer_wrap { padding-top: 2.08%; padding-bottom: 2.08%; }
footer .footer_links { font-size: 1.5rem; }
footer .footer_links li:nth-child(n+2) {margin-left: 2.134em;}
footer .copyright { font-size: 1.4rem; opacity: 0.8; }

/* =================================================================
11.商品詳細・一覧、プレゼント詳細・一覧、トピックス詳細・一覧
使用ファイル：item_list$detail.xhtml, item_list$image.xhtml
　　　　　　　item_list$simple.xhtml, item_detail.xhtml
　　　　　　　present_list.xhtml, present_detail.xhtml
        　　topics_list.xhtml,topics_detail.xhtml
　　　　　　　item_list_awoo.xhtml,
=================================================================*/
/* category_html - カテゴリHTML
-------------------------------------------------------------*/
#category_html{margin-bottom: 20px;}
#category_html img{display: block; margin-bottom: 10px;}

/* awoo AI　商品一覧
-------------------------------------------------------------*/
#awoo-classify{margin-bottom: 20px;}
#awoo-classify .awoo-tag-wrapper{gap: 0;}
#awoo-classify .awoo-tag-wrapper a{font-size: 12px; color: #000; background: #fff; border: 1px solid #000; padding: 5px 10px; margin: 0 4px 8px;}
#awoo-classify .awoo-tag-wrapper a:hover{color: #3A3A3A; border-color: #3A3A3A; opacity: 0.7;}
#awoo-classify .awoo-tag-wrapper a::before{content: "#";}

/* itemListCategory - カテゴリ
-------------------------------------------------------------*/
#itemListCategory{width: 25%; display: none;}
#itemListCategory ul{display: block; width: 100%; border: #CCC 1px solid; background: #F5F5F5;}
#itemListCategory ul:after {content: ""; clear: both; display: block;}/* clearfix */
#itemListCategory li{display: inline; float: left;}
#itemListCategory .select{background: url("../images/marker_on.gif") 7px 10px no-repeat #C00; color: #FFF; text-decoration: none;}
#itemListCategory li a{display: block; padding: 5px; background: url("../images/marker.gif") 7px 10px no-repeat; color: #333; font-size: 80%;text-decoration: none; text-indent: 15px; white-space: nowrap;}
#itemListCategory li a:link{display: block;}
#itemListCategory li a:hover{background: url("../images/marker.gif") 7px 10px no-repeat #CCC; color: #FFF; text-decoration: underline;}
#itemListCategory #sub ul{display: block; width: 100%; border: #CCC 1px solid; border-top: none; background: #FFF;}
#itemListCategory #sub ul:after {content: ""; clear: both; display: block;}/* clearfix */
#itemListCategory #sub li{display: inline; float: left;}
#itemListCategory #sub .select{background: url("../images/marker_on.gif") 7px 10px no-repeat #CCC; color: #FFF; text-decoration: none;}
#itemListCategory #sub li a{display: block; padding: 5px; background: url("../images/marker.gif") 7px 10px no-repeat; color: #333; font-size: 80%; text-decoration: none; text-indent: 15px;}
#itemListCategory #sub li a:link{display: block;}
#itemListCategory #sub li a:hover{background: url("../images/marker.gif") 7px 10px no-repeat #CCC; color: #FFF; text-decoration: underline;}

/* productListContent - 一覧画面大枠
-------------------------------------------------------------*/
#productListContent { display: flex; flex-wrap: wrap; justify-content: space-between; }
#productListContent .side_items { width: 25%; }
#productListContent .main_items { width: 68.75%; }

/* narrowListCategory - 絞り込みカテゴリ
-------------------------------------------------------------*/
#narrowListCategory { position: relative; }
#narrowListCategory h2 { font-size: 2.4rem; margin-bottom: 10%; }

#narrowListCategory .category_group__wrap{ background: #F2F3F6; padding: 7.5%; }
#narrowListCategory .category_group__wrap:after {content: ""; clear: both; display: block;}/* clearfix */
#narrowListCategory #narrowDownCategoryMultiple{ width: 100%; }
#narrowListCategory #narrowDownCategoryMultiple:nth-of-type(n+2) { margin-top: 14.706%; }
#narrowListCategory #narrowDownCategoryMultiple:after {content: ""; clear: both; display: block;}/* clearfix */

#narrowListCategory #narrowDownCategoryMultiple .category_group_item_ttl { font-size: 1.6rem;  margin-bottom: 8.824%; padding-bottom: 1em; border-bottom: 1px solid rgba(0, 0, 0, .2); }

.check_box_item__input { border-radius: 0; border: 1px solid #000; width: 1em; height: 1em; vertical-align: middle; margin-right: .572em; margin-top: .3em; }
.check_box_item__input:checked { background: #000; position: relative; }
.check_box_item__input:checked::after {
  content: " ";
  background: url(../images/icon/white/icon_check.svg) center / contain no-repeat;
  width: 85.715%; height: 0;
  padding-top: 85.715%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.check_box_item__label { font-size: 1em; font-weight: 600; width: 90%; }

#narrowListCategory #narrowDownCategoryMultiple .check_box_item { font-size: 1.4rem; display: flex; align-items: flex-start; }
#narrowListCategory #narrowDownCategoryMultiple li:nth-child(n+2) { margin-top: 2.942% }

#narrowListCategory .filterArea{ display: flex; flex-wrap: wrap; margin-bottom: 10%; }
#narrowListCategory .filterArea li{
  display: block;
  font-size: 1.4rem;
  background: #1432AA;
  color: #FFF;
  text-decoration: none;
  padding: .429em .572em;
  margin: 0 .572em .572em 0;
}

#narrowListCategory .filterArea li a{ text-decoration: none; display: inline-block; vertical-align: middle; margin-left: .572em; }
#narrowListCategory .filterArea li a:hover{text-decoration: underline;}
#narrowListCategory .filterArea li.filter_clear {
  background: none;
  margin: 0px; text-indent: 0px; padding: 0;
  position: absolute; top: 0; right: 0;
  font-size: 1.4rem; font-weight: 500;
  opacity: .8;
  border-bottom: 1px solid rgba(0,0,0,.8);
  padding-bottom: .572em;
}
#narrowListCategory .filterArea li.filter_clear a{ display: flex; align-items: center; color: #333333; margin: 0px; font-size: 100%; text-decoration: none;}
#narrowListCategory .filterArea li.filter_clear a:hover {text-decoration: none;}
#narrowListCategory .filterArea li.filter_clear a .icon { margin-right: .572em; }

/* list - 一覧画面共通のメニュー
-------------------------------------------------------------*/
#list .list_fillter__wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin-bottom: 4.546%; }
#list .list_fillter__wrap #countItem { width: 79.773%; }
#list .list_fillter__wrap #sortItem { width: 18.41%; background: #fff; position: relative; }
select,option {appearance: none}
#list .list_fillter__wrap #sortItem select { width: 100%; padding: 7.408% 9.877%; border: 1px solid #000; font-size: 1.6rem; font-weight: 600; }
#list .list_fillter__wrap #sortItem select option { background: #000; color: #fff; padding: 14.815%; }
#list .list_fillter__wrap #sortItem::before {
  content: " ";
  background: url(../images/icon/black/arrow_down.svg) center / 100% no-repeat;
  width: 24.692%;
  height: 0;
  padding-top: 24.692%;
  position: absolute; top: 50%; right: .5em;
  transform: translateY(-50%);
}

#list .list_fillter__wrap #countItem .item_counter,
.item_counter{ font-size: 2.4rem; font-weight: 600; line-height: 1; margin-bottom: .668em; }
#list .list_fillter__wrap #countItem .item_counter__num { font-size: 1.334em; } 

.item_pager { display: flex; flex-wrap: wrap; justify-content: flex-start; font-size: 1.8rem; align-items: center; }
.item_pager .pager_item__num { margin-right: 2.28%; font-weight: 500; }
.item_pager .pager_item__num .no-current { opacity: .4; }
.item_pager .pager_item__num .current {opacity: 1;}
.item_pager .pager_item__arrow { width: 1.778em; }
.item_pager .pager_item__arrow.next { margin-left: .889em; }
.item_pager .pager_item__arrow.unclickable { opacity: .4; }

#list .detail{background: url("../images/icon_list_detail.png") 7px 7px no-repeat #DDD;}
#list .image{background: url("../images/icon_list_image.png") 7px 7px no-repeat #DDD;}
#list .simple{background: url("../images/icon_list_simple.png") 7px 7px no-repeat #DDD;}
#list .detail.select{border: 1px solid #CCC; border-bottom: 1px solid #FFF; background-color: #FFFFFF; color: #333; text-decoration: none;}
#list .image.select{border: 1px solid #CCC; border-bottom: 1px solid #FFF; background-color: #FFFFFF; color: #333; text-decoration: none;}
#list .simple.select{border: 1px solid #CCC; border-bottom: 1px solid #FFF; background-color: #FFFFFF; color: #333; text-decoration: none;}
#list .pageguide{float: left; width: 570px; font-size: 85%; padding-top: 4px;}
#list .rearrange{float: left; width: 200px; font-size: 85%; text-align: right;}
#list .nolink{color: #999;}

/* itemListDetail - 商品詳細一覧・プレゼント一覧
-------------------------------------------------------------*/
#itemListDetail{margin-bottom: 20px; clear: both;}
#itemListDetail .text{margin-left: 140px;}
#itemListDetail .sale_date{margin: 0px 10px 10px 0px;}
#itemListDetail h3{display: block; margin: 0px 10px 10px 0; font-size: 95%;}
#itemListDetail .appeal{display: block; margin: 0; color: #F60; font-size: 70%;}
#itemListDetail .price{display: block; margin: 0 10px 10px 0; color: #C00;}
#itemListDetail .price .teika{font-weight: bold; font-size: 110%;}
#itemListDetail .price .other{font-size: 90%;}
#itemListDetail .explanation1{display: block; margin: 10px 10px 0px 0px; padding: 10px 0; border-top: #CCC 1px solid; font-size: 80%; line-height: 120%;}
#itemListDetail .button_area{margin: 0px 10px 20px 0px; padding-top: 20px; border-top: #CCC 1px solid; text-align: right;}
#itemListDetail .button_area:after {content: ""; clear: both; display: block;}/* clearfix */
#itemListDetail .button_area .button{float: right; width: auto; margin-left: 10px;}
#itemListDetail .property{float: right; margin: 0; color: #AAA; font-size: 75%; padding: 3px;}
#itemListDetail .img_box{width: 120px; height: 120px; margin: 10px; float: left; text-align: center; position: relative;}
#itemListDetail .img_box img{width: auto; max-width: 120px; max-height: 120px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
#itemListDetail .separately_order{margin-left: 0px;}

/* color type
-------------------------------------------------------------*/
#recommendColor .recommend_color_boxs { display: flex; flex-wrap: wrap; }
#recommendColor .recommend_color_boxs .recommend_color_box { width: 13.889%; margin-right: 2.778%; margin-bottom: 2.778%; }

/* recommend_slider_area - recommend
-------------------------------------------------------------*/
#recommendArea { background: #000; padding: 2.084% 0 4.167%; margin: 6.667% auto 0; }
#recommendArea .recommend_slider__ttl { color: #fff; font-size: 3.2rem; margin-bottom: 4rem; text-align: center; }
#recommendArea .recommend_slider .slick-track { display: flex; justify-content: center; }
#recommendArea .slick-slide { margin: 0 2rem; }
#recommendArea .img_box { width: 100%; height: 0; padding-top: 100%; overflow: hidden; }
#recommendArea .img_box img {max-width: none; width: 100%; }
#recommendArea .text {color: #fff; padding: 6% 3.75% 6% 6%;}
#recommendArea .text .item_name { font-size: 2rem; margin-bottom: .4em; }
#recommendArea .text .item_code { font-size: 1.6rem; }

.long_arrow__item { display: flex; justify-content: space-between; align-items: center; }
.long_arrow__item .long_arrow__item_text { width: 77.338%; }
.long_arrow__item .long_arrow__item_arrow { width: 18.131%; }



/* itemListDetail - 商品一覧お気に入りリストに入った報告ポップアップ
-------------------------------------------------------------*/
#itemListDetail .wishlistSubmitButton{position: relative;}
#itemListDetail .wishlistSubmitButton .wishlistMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListDetail .wishlistSubmitButton .wishlistMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListDetail .wishlistSubmitButton .wishlistMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListDetail .wishlistSubmitButton .wishlistMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListDetail .wishlistSubmitButton .wishlistMessage .link{background-color: #fff; text-align: center;}
#itemListDetail .wishlistSubmitButton .wishlistMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}
#itemListDetail .wishlistSubmitButton .wishlistDelMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListDetail .wishlistSubmitButton .wishlistDelMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListDetail .wishlistSubmitButton .wishlistDelMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListDetail .wishlistSubmitButton .wishlistDelMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListDetail .wishlistSubmitButton .wishlistDelMessage .link{background-color: #fff; text-align: center;}
#itemListDetail .wishlistSubmitButton .wishlistDelMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* itemListDetail - 商品カートに入った報告ポップアップ
-------------------------------------------------------------*/
#itemListDetail .cartSubmitButton{position: relative;}
#itemListDetail .cartSubmitButton .cartMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListDetail .cartSubmitButton .cartMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListDetail .cartSubmitButton .cartMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListDetail .cartSubmitButton .cartMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListDetail .cartSubmitButton .cartMessage .link{background-color: #fff; text-align: center;}
#itemL#itemListDetailistImage .cartSubmitButton .cartMessage .link a{display: inline-block;}
#itemListDetail .cartSubmitButton .cartMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* itemListSimple - 商品簡易一覧
-------------------------------------------------------------*/
#itemListSimple{margin-bottom: 20px;}
#itemListSimple .box{margin-top: 10px; border: #CCC 1px solid;}
#itemListSimple .box:after {content: ""; clear: both; display: block;}/* clearfix */
#itemListSimple h3{display: block; margin: 10px; font-size: 95%;}
#itemListSimple .appeal{display: block; margin: 0 0 0 10px; color: #F60; font-size: 70%;}
#itemListSimple .price{display: block; margin: 0 0 0 10px; color: #C00;}
#itemListSimple .price .teika{font-weight: bold; font-size: 110%;}
#itemListSimple .price .other{font-size: 90%;}
#itemListSimple .explanation1{display: block; margin: 5px 10px 0; padding: 10px 0; border-top: #CCC 1px solid; font-size: 80%; line-height: 120%;}
#itemListSimple .button_area{margin: 0px 10px 20px; padding-top: 20px; border-top: #CCC 1px solid; text-align: right;}
#itemListSimple .button_area:after {content: ""; clear: both; display: block;}/* clearfix */
#itemListSimple .button_area .button{float: right; width: auto; margin-left: 10px;}
#itemListSimple .button_area .not_click{float: right; width: auto; margin-left: 10px;}
#itemListSimple .property{float: right; margin: 0; color: #AAA; font-size: 75%; padding: 3px;}

/* itemListSimple - 商品カートに入った報告ポップアップ
-------------------------------------------------------------*/
#itemListSimple .cartSubmitButton{position: relative;}
#itemListSimple .cartSubmitButton .cartMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListSimple .cartSubmitButton .cartMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListSimple .cartSubmitButton .cartMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListSimple .cartSubmitButton .cartMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListSimple .cartSubmitButton .cartMessage .link{background-color: #fff; text-align: center;}
#itemListSimple .cartSubmitButton .cartMessage .link a{display: inline-block;}
#itemListSimple .cartSubmitButton .cartMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}
/* itemListSimple - 商品一覧お気に入りリストに入った報告ポップアップ
-------------------------------------------------------------*/
#itemListSimple .wishlistSubmitButton{position: relative;}
#itemListSimple .wishlistSubmitButton .wishlistMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListSimple .wishlistSubmitButton .wishlistMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListSimple .wishlistSubmitButton .wishlistMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListSimple .wishlistSubmitButton .wishlistMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListSimple .wishlistSubmitButton .wishlistMessage .link{background-color: #fff; text-align: center;}
#itemListSimple .wishlistSubmitButton .wishlistMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}
#itemListSimple .wishlistSubmitButton .wishlistDelMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListSimple .wishlistSubmitButton .wishlistDelMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListSimple .wishlistSubmitButton .wishlistDelMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListSimple .wishlistSubmitButton .wishlistDelMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListSimple .wishlistSubmitButton .wishlistDelMessage .link{background-color: #fff; text-align: center;}
#itemListSimple .wishlistSubmitButton .wishlistDelMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* itemListImage - 商品画像一覧
-------------------------------------------------------------*/
#itemListImage.product_link_items { display: flex; flex-wrap: wrap; justify-content: flex-start; }
#itemListImage.product_link_items .product_link_item{ width: 31.819%; margin-bottom: 4.546%; margin-right: 2.273%;}
#itemListImage.product_link_items .product_link_item:nth-child(3n) {margin-right: 0;}
#itemListImage.product_link_items .product_link_item .img_box { position: relative; width: 100%; height: 0; padding-top: 100%; overflow: hidden; }
#itemListImage.product_link_items .product_link_item .img_box img { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
#itemListImage.product_link_items .product_link_item .item_name_box { margin: 5.715% auto 8.572%; }
#itemListImage.product_link_items .product_link_item .item_name_box .item_name { font-size: 1.8rem; margin-bottom: 2.858%; font-weight: 600; }
#itemListImage.product_link_items .product_link_item .item_name_box .item_code { font-size: 1.6rem; }
#itemListImage.product_link_items .product_link_item .item_deteail_link { display: flex; justify-content: space-between; align-items: center; padding: 7.143%; border: 1px solid #000; }
#itemListImage.product_link_items .product_link_item .item_deteail_link .txt { width: 65.715%; font-size: 1.4rem; }
#itemListImage.product_link_items .product_link_item .item_deteail_link::after { 
  content: " ";
  background: url(../images/icon/black/pager_next.svg) center / 100% no-repeat;
  width: 11.429%;
  height: 0;
  padding-top: 11.429%;
}
#pagerBottom { margin-top: 4.546%; }
#pagerBottom .item_pager { justify-content: center; font-size: 2.4rem; }
#pagerBottom .item_pager .pager_item__arrow { width: 2.667em; }
#pagerBottom .item_pager .pager_item__arrow.prev { margin-right: 3.334em; }
#pagerBottom .item_pager .pager_item__arrow.next { margin-left: 3.334em; }
#pagerBottom .item_pager .pager_child_items { display: flex; justify-content: center; }
#pagerBottom .item_pager .pager_child_items li { margin-right: .667em; }
#pagerBottom .item_pager .pager_child_items li:last-child {margin-right: 0;}

/* itemListImage - 商品カートに入った報告ポップアップ
-------------------------------------------------------------*/
#itemListImage .cartSubmitButton{position: relative;}
#itemListImage .cartSubmitButton .cartMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListImage .cartSubmitButton .cartMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListImage .cartSubmitButton .cartMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListImage .cartSubmitButton .cartMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListImage .cartSubmitButton .cartMessage .link{background-color: #fff; text-align: center;}
#itemListImage .cartSubmitButton .cartMessage .link a{display: inline-block;}
#itemListImage .cartSubmitButton .cartMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}
/* itemListImage - 商品一覧お気に入りリストに入った報告ポップアップ
-------------------------------------------------------------*/
#itemListImage .wishlistSubmitButton{position: relative;}
#itemListImage .wishlistSubmitButton .wishlistMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListImage .wishlistSubmitButton .wishlistMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListImage .wishlistSubmitButton .wishlistMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListImage .wishlistSubmitButton .wishlistMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListImage .wishlistSubmitButton .wishlistMessage .link{background-color: #fff; text-align: center;}
#itemListImage .wishlistSubmitButton .wishlistMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}
#itemListImage .wishlistSubmitButton .wishlistDelMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemListImage .wishlistSubmitButton .wishlistDelMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemListImage .wishlistSubmitButton .wishlistDelMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemListImage .wishlistSubmitButton .wishlistDelMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemListImage .wishlistSubmitButton .wishlistDelMessage .link{background-color: #fff; text-align: center;}
#itemListImage .wishlistSubmitButton .wishlistDelMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* awoo AI item_list_awoo.xhtml
-------------------------------------------------------------*/
#awoo-category-page .suggestion-tag-wrapper{background: transparent; padding: 0 0 16px;}
#awoo-category-page .suggestion-tag-wrapper .page-tag-container,
#awoo-category-page .suggestion-tag-wrapper .suggestion-tag-list-container{gap: 0;}
#awoo-category-page .suggestion-tag-wrapper .suggestion-tag-title{font-weight: bold; margin: 0; padding: 20px 0 5px;}
#awoo-category-page .suggestion-tag-wrapper a{font-size: 12px; color: #000; background: #fff; border: 1px solid #000; padding: 5px 10px; margin: 0 4px 8px;}
#awoo-category-page .suggestion-tag-wrapper a:hover{color: #3A3A3A; border-color: #3A3A3A; opacity: 0.7;}
#awoo-category-page .suggestion-tag-wrapper a::before{content: "#";}
#awoo-category-page .category-page-h1{text-align: left; font-size: 24px;}
#awoo-category-page .controll-wrapper{margin:20px 0; gap:0;}
#awoo-category-page .controll-wrapper .right-block{align-items: center; flex-direction: inherit; width: 100%;}
#awoo-category-page .controll-wrapper .selector-group{width: 35%;}
#awoo-category-page .controll-wrapper .two-controll{margin-top: 0; width: 65%;}
#awoo-category-page .controll-wrapper .two-controll .selector-group{width: 50%;}
#awoo-category-page .controll-wrapper .two-controll .display-mode-wrapper{order: 2; margin-left: auto;}
#awoo-category-page .products-wrapper{padding: 0;}
#awoo-category-page .products-wrapper .product-block{width:182px; box-shadow: none; border-radius: 0; border: 1px solid #D4D4D4;margin: 0 10px 10px 0;font-size: 90%;}
#awoo-category-page .products-wrapper .product-block:nth-child(4n){margin-right: 0;}
#awoo-category-page .products-wrapper .product-block .product-detail-wrapper{padding: 10px 0;}
#awoo-category-page .products-wrapper .product-block .product__name{font-weight: bold; text-decoration: underline;line-height: 16px;}
#awoo-category-page .products-wrapper .product-block .lazyload-wrapper{height: 150px;}
#awoo-category-page .products-wrapper .product-block .product__price{margin-top: 0;}
#awoo-category-page .products-wrapper .product-block .product__price div {color: #333;}
#awoo-category-page .products-wrapper .product-block .product__price .sale-price{color: #C00;}
#awoo-category-page .products-wrapper.list .product-block{width: 100%;}
#awoo-category-page .products-wrapper.list .product-block .product-detail-wrapper{justify-content: center;}
#awoo-category-page .products-wrapper.list .product-block .product__name{margin-bottom: 10px;}
#awoo-category-page .products-wrapper.list .product-block .product-image{width: 120px; height: 120px; margin: 10px;}
#awoo-category-page .products-wrapper.list .product-block .lazyload-wrapper{height: auto;}

/* topicsList - トピックス一覧
-------------------------------------------------------------*/
#topicsList .info_wrapper { width: 100%; }
.info_wrapper #pagerBottom {margin-top: 10%;}
.topics_item__ttl {  display: flex; flex-wrap: wrap; font-size: 2rem; font-weight: 600; align-items: center; padding: 1.5em 0; border-bottom: 1px solid #000; border-top: 1px solid #000 }
.topics_item__ttl .date { width: 10%; font-size: .9em; }
.topics_item__ttl .ttl { width: 90%; }
.topics_item__pdf { border-bottom: 1px solid #000; font-size: 1.6rem; }
.topics_item__pdf a { padding: 1.5em 0; display: block; width: 100%; color: #1432AA; }
.topics_item__pdf a:hover {opacity: .8;}
.topics_item__pdf .icon { display: inline-block; vertical-align: middle; width: 1.5em; }

.topics_article__box { margin: 5% auto; width: 100%; }
.topics_article__box .topics_img { margin-bottom: 5%; }
.topics_article__box .topics_text { font-size: 1.6rem; line-height: 2; font-weight: 500; }

.topics_article__box .buttonarea { margin-top: 8em; }
.topics_article__box .buttonarea .button { width: 32%; }

/* awoo AI 商品詳細
-------------------------------------------------------------*/
#awoo-product-tags{margin-bottom: 20px;}
#awoo-product-tags .awoo-tag-wrapper{gap: 0;}
#awoo-product-tags .awoo-tag-wrapper a{font-size: 12px; color: #000; background: #fff; border: 1px solid #000; padding: 5px 10px; margin: 0 4px 8px;}
#awoo-product-tags .awoo-tag-wrapper a:hover{color: #3A3A3A; border-color: #3A3A3A; opacity: 0.7;}
#awoo-product-tags .awoo-tag-wrapper a::before{content: "#";}
#awoo-related-products{margin-bottom: 20px;}
#awoo-related-products .related-wrapper .related-product-img{width: 175px; height: 175px;}
#awoo-related-products .related-wrapper .related-title{margin: 5px 0; font-weight: bold;}
#awoo-related-products .related-wrapper .rec-slider-container{margin: 0 0 10px; font-size: 90%;}
#awoo-related-products .related-wrapper .related-product-name{font-weight: bold; text-decoration: underline; color: #333; height: auto; margin-bottom: 10px;}
#awoo-related-products .related-wrapper .product__price div{color: #333;}
#awoo-related-products .related-wrapper .product__price .sale-price{color: #C00;}
.awoo-keywords{margin: 0 0 10px !important; font-weight: bold;}

/* itemDetail - 商品詳細・プレゼント詳細
-------------------------------------------------------------*/
#itemDetail .item_wrap { display: flex; flex-wrap: wrap; justify-content: space-between; margin-bottom: 6.25%; }

/* 商品画像の切り替え */
#itemDetail .item_image_area{ width: 45%; }
#itemDetail .item_image_urls { font-size: 0; }
#itemDetail .item_image_area .iten_image_box { 
  position: relative; height: 0; padding-top: 100%; 
  background: rgb(242,243,246);
  background: linear-gradient(180deg, rgba(242,243,246,1) 35%, rgba(255,255,255,0) 100%);
}
#itemDetail .item_image_area .iten_image_box #mviewer { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }

/*商品情報*/
#itemDetail .item_text_area{ width: 45%; }
#itemDetail .item_text_area .item_name_box,
#itemDetail .item_text_area .item_customize {margin-bottom: 4.167%;}
#itemDetail .item_text_area .item_name_box .item_name { font-size: 3.2rem; font-weight: 600; margin-bottom: .25em; }
#itemDetail .item_text_area .item_name_box .item_code { font-size: 1.6rem; }
#itemDetail .item_text_area .item_name_box .item_code .ttl { opacity: .8; }

#itemDetail .item_text_area .item_customize_ttl { font-size: 2rem; margin-bottom: 2.778%; }

#itemDetail .item_text_area .type_change_btns { display: flex; justify-content: space-between; width: 30.556%; }
#itemDetail .item_text_area .type_change_btns .type_change_btn { width: 45.455%; position: relative; transition: all .2s linear; cursor: pointer; }
#itemDetail .item_text_area .type_change_btns .type_change_btn::after {
  content: " ";
  transition: all .2s linear;
}
#itemDetail .item_text_area .type_change_btns .type_change_btn.active {opacity: 1; cursor: default; pointer-events: none;}
#itemDetail .item_text_area .type_change_btns .type_change_btn:hover::after,
#itemDetail .item_text_area .type_change_btns .type_change_btn.active::after { 
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  background: rgba(20,50,170,.3);
 }
#itemDetail .item_text_area .type_change_btns .type_change_btn .text { display: block; width: 100%; text-align: center; margin-top: 1rem; font-size: 1.5rem; font-weight: 600; }
#itemDetail .item_text_area .user_action_btns { display: flex; justify-content: space-between; width: 100%; margin-top: 8.334%; }
#itemDetail .item_text_area .user_action_btns .user_action_btn_wrap { width: 47.917%; }
#itemDetail .icon_btn { width: 100%; display: flex; justify-content: center; align-items: center; text-align: center; padding: 2.4rem 3.2rem 2.4rem 2.4rem; border: 1px solid #000; font-size: 1.6rem;}
#itemDetail .icon_btn .text { width: 90.91%; font-weight: 600; }
#itemDetail .icon_btn::before { width: 9.09%; height: 0; padding-top: 9.09%; }
#itemDetail .btn_type__download .icon_btn::before { content: " "; background: url(../images/icon/black/download.svg) center / contain no-repeat; }
#itemDetail .btn_type__wishlist .icon_btn::before { content: " "; background: url(../images/icon/black/icon_heart.svg) center / contain no-repeat; }

#itemDetail .btn_type__download.loading { pointer-events: none; opacity: .75; }
#itemDetail .btn_type__download.loading .icon_btn .text { font-size: 0; width: 0; }
#itemDetail .btn_type__download.loading .icon_btn::before { content: " "; background: url(../images/loader_icon_pc.gif) center / contain no-repeat; }
#itemDetail .btn_type__download.loading .icon_btn::after { content: "LOADING"; width: 90.91%; font-weight: 600; }

.unclickable { pointer-events: none; opacity: .75; }
#itemDetail .btn_type__wishlist .unclickable { border: none; background: #F2F3F6; }

#itemDetail .tags { display: flex; flex-wrap: wrap; margin-top: 8.334%; }
#itemDetail .tags .tag_item { font-size: 1.4rem; font-weight: 500; margin-bottom: 1.143em; margin-right: 1.143em; }
#itemDetail .tags .tag_item a {display: block;}
#itemDetail .tags .tag_item a::before { content: "#"; font-size: 1em; display: inline-block; vertical-align: baseline; font-weight: 500; margin-right: .286em; }

.history_btn__wrap .history_btn_item { display: flex; justify-content: center; width: 22.032%; margin: 0 auto; border-bottom: 1px solid #000; padding-bottom: .8em; }
.history_btn__wrap .history_btn_item .text { font-size: 2rem; font-weight: 600; }
.history_btn__wrap .history_btn_item::before {
  content: " ";
  background: url(../images/icon/black/icon_arrow_long_left.svg) center / contain no-repeat;
  width: 11.348%;
  height: 0;
  padding-top: 11.348%;
  margin-right: 5.674%;
}


#itemDetail .otherImage{clear: both; padding: 10px 10px 0 15px; font-size: 75%;}
#itemDetail .recommend{clear: both; padding: 0 10px 10px 15px; font-size: 75%;}
#itemDetail .property_image_area{ clear: both;}
#itemDetail .propertyImg{width: 80px; float: left; margin-right: 15px;}
#itemDetail .propertyImg .propertyimg_box{width: 80px; height: 80px; text-align: center; position: relative; margin: 0 10px 0px 0;}
#itemDetail .propertyImg .propertyimg_box img{width: auto; max-width: 80px; max-height: 80px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
#itemDetail .propertyImg p{margin: 0; text-align: center;}
#itemDetail .property_sale_price{color: #C00;}
#itemDetail .property_normal_price{text-decoration:line-through}
#itemDetail .information{display: block; margin: 0 0px 0 0; font-size: 80%;}
#itemDetail .explanation2{display: block; margin: 10px 0px 20px 0; padding-top: 10px; border-top: #CCC 1px solid; font-size: 100%; line-height: 150%;}
#itemDetail .explanation3{display: block; margin: 0 0px 20px 0; padding: 10px; background: #EEE; color: #666; font-size: 90%; line-height: 150%;}
#itemDetail table{width: 480px; margin: 0 0 10px;}
#itemDetail th{width: 100px; padding: 5px 10px; text-align: left;}
#itemDetail td{padding: 5px 10px;}
#itemDetail .button{margin-bottom: 10px;}
#itemDetail .button.small{max-width: 160px;}
#itemDetail .separately_order{margin-bottom: 5px;}
#itemDetail .propaty_area .button{max-width: none; width: 100%;}

.detail_productnum_wrapper{
  margin-top: 1.39%;
}
.detail_material_name{
  font-size: 3.2rem;
}
.detail_product_num{
  margin-right: 0.69%;
}
.detail_content_fontsize{
  font-size: 1.6rem;
}
.detail_head{
  font-size: 2rem;
  margin-top: 4.17%;
  margin-bottom: 2.78%;
}
.detail_FLAT{
  font-size: 1.6rem;
  margin-top: 10%;
}
.detail_button_width{
  width: 30.56%;
}
.detail_HALF{
  font-size: 1.5rem;
  margin-top: 12.5%;
  letter-spacing: -.04em;
}
.detail_button{
  width: 45.45%;
  padding:0;
  background: none;
}
.color_chip:not(:last-child){
  margin-right: 4.35%;
}
.detail_margin{
  margin-top: 8.33%;
}
.detail_button_layout{
  width: 47.92%;
  padding: 3.99% 0;
  transition:.3s;
}
.detail_button_inner{
  width: 79%;
}
.detail_button_ic{
  width: 9.09%;
}
.detail_button_text{
  width: 90.91%;
  font-size: 1.6rem;
  transition:.3s;
}
.detal_DL{
  padding: 0;
}
/* アニメーション */
.detail_button_layout:hover{
  border: #1432AA 1px solid;
}
.detail_button_layout:hover .detail_button_text{
  color: #1432AA;
}
/* アニメーションここまで */

.detail_tag_wrapper{
  flex-wrap: wrap;
  width: 88.72%;
}
.detail_tag{
  margin-right: 1.6em;
  margin-bottom: 1.6em;
  line-height: 1;
  font-size: 1.4rem;
}

.sharp{
  margin-right: .286em;
  font-size: 1.7rem;
}
/*  Return to previous page */
.return_wrapper{
  margin:4.17% 0  7.14% 0;
}
.return{
  max-width: 282px;
  width: 14.69%;
  border-bottom: 1px solid rgba(0,0,0,.8);
}
.return_inner{
  padding-bottom: 2.84%;
}
.return_arr{
  width: 11.35%;
}
.return_text{
  font-size: 2rem;
}
.recommend_wrapper{
  padding-bottom: 4.17%;
}
.recommend{
 font-size: 3.2rem;
 padding: 2.08% 0;
 overflow: hidden;
}
.detail_recommend{
  margin-top: 0;
}

/* itemDetail - 商品詳細カートに入った報告ポップアップ
-------------------------------------------------------------*/
#itemDetail .cartSubmitButton{position: relative;}
#itemDetail .cartSubmitButton .cartMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemDetail .cartSubmitButton .cartMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemDetail .cartSubmitButton .cartMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemDetail .cartSubmitButton .cartMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemDetail .cartSubmitButton .cartMessage .link{background-color: #fff; text-align: center;}
#itemDetail .cartSubmitButton .cartMessage .link a{display: inline-block;}
#itemDetail .cartSubmitButton .cartMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* itemDetail - 商品詳細お気に入りリストに入った報告ポップアップ
-------------------------------------------------------------*/
#itemDetail .wishlistSubmitButton{position: relative;}
#itemDetail .wishlistSubmitButton .wishlistMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemDetail .wishlistSubmitButton .wishlistMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemDetail .wishlistSubmitButton .wishlistMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemDetail .wishlistSubmitButton .wishlistMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemDetail .wishlistSubmitButton .wishlistMessage .link{background-color: #fff; text-align: center;}
#itemDetail .wishlistSubmitButton .wishlistMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}
#itemDetail .wishlistSubmitButton .wishlistDelMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemDetail .wishlistSubmitButton .wishlistDelMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemDetail .wishlistSubmitButton .wishlistDelMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemDetail .wishlistSubmitButton .wishlistDelMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemDetail .wishlistSubmitButton .wishlistDelMessage .link{background-color: #fff; text-align: center;}
#itemDetail .wishlistSubmitButton .wishlistDelMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* itemDetail - トピックス詳細
-------------------------------------------------------------*/
#itemDetail .topics_img h3,#itemDetail .topics_noimg h3{margin: 10px 10px 5px 0px; display: block; font-size: 105%;}
#itemDetail .topics_img p,#itemDetail .topics_noimg p{font-size: 90%; margin: 5px 0px;}
#itemDetail .topics_img img{display: block;}
#itemDetail .topics_img .img_box{width: 140px; height: 140px; margin: 10px 10px 10px 0; text-align: center; position: relative; float: left;}
#itemDetail .topics_img .img_box img{width: auto; max-width: 140px; max-height: 140px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
#itemDetail .topics_img .topics_text{overflow: auto;}
#itemDetail .topics_img,#itemDetail .topics_noimg{padding: 10px;}
#itemDetail .topics_noimg p img{float: right; margin: 0 0 10px 10px;}

/* present_detail.xhtml - プレゼント詳細
-------------------------------------------------------------*/
#itemDetail.present .item_image_area #targetarea{visibility: visible;}
#itemDetail.present .item_image_area .img_box{display:block; width: 268px; height: 268px;}


/* =================================================================
12.レビュー
使用ファイル：item_detail.xhtml, member_review.xhtml
=================================================================*/
#review{margin-bottom: 40px;}
#review p{margin: 0 0px;}
#review p.item_name{font-size: 95%; font-weight: bold;}
#review h3{float: left; margin: 0 10px 0 0; font-size: 80%;}
#review .review_box{margin-bottom: 20px;}
#review .box{margin: 10px 0 5px; padding: 10px; border: #CCC 1px solid;}
#review .box h3{float: none; font-size: 90%;}
#review .box p{margin: 0;}
#review .box p.name{padding: 5px 0; margin-bottom: 10px; border-bottom: 1px dashed #CCC; color: #666; font-size: 75%;}
#review p.goodButton{margin-bottom: 5px; color: #666; font-size: 75%;}
#review p.goodButton .button{margin-left: 5px; vertical-align: middle; display: inline-block; width: auto;}
#review p.goodNumber{margin-bottom: 20px; color: #666; font-size: 75%;}
#review p.more{margin-bottom: 20px; font-size: 75%; text-align: right;}
#review .pageguide{ float: left; width: 570px; font-size: 85%; padding-top: 4px;}
#review .rearrange{float: left; width: 200px; font-size: 85%; text-align: right;}
#review .pagelink{ clear: both; font-size: 85%; padding: 10px 0;}
#review ul.star{float: left;}
#review ul.star li{display: block; float: left; width: 15px; height: 15px; text-indent: -9999px;}
#review ul.star li.good{background: url("../images/review_good.gif") no-repeat;}
#review ul.star li.bad{background: url("../images/review_bad.gif") no-repeat;}
#review .contribution{margin-top: 10px; padding: 10px 10px 10px 10px; background: #F1F1F1;}
#review .contribution #error{background: #F1F1F1;}

#review .contribution table{margin: 0; border: none;}
#review .contribution th{width: 140px; padding: 5px 10px; border: none; background: none; font-weight: normal; text-align: left;}
#review .contribution td{padding: 5px 10px; border: none;}
#review .contribution h3{float: none; margin:0 0 10px 0; padding:0px; font-size: 120%;}

#review .review-image{padding-top: 20px;}
#review .review-image:after {content: ""; clear: both; display: block;}/* clearfix */
#review .review-image .img_box{width: 80px; height: 80px; margin-right: 10px; margin-bottom: 10px; text-align: center; position: relative; float: left;}
#review .review-image img{width: auto; max-width: 80px; max-height: 80px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}


/* =================================================================
13.購入履歴・見積履歴
使用ファイル：member_history.xhtml,member_estimate_recode.xhtml
=================================================================*/
#history h3{display: block; font-size: 110%; margin: 30px 10px 10px; padding-bottom: 5px;}
#history .infoarea{display: block; margin: 40px 10px 0; font-size: 80%; font-weight: bold;}
#history .infoarea:after {content: ""; clear: both; display: block;}/* clearfix */
#history .infoarea .status_icon{color: #FFFFFF; float: left; font-weight: normal; margin-right: 10px;}
#history .cancel{float: right; margin-left: 10px;}
#history .payment_change{float: right; margin-left: 10px;}
#history .infoarea .date{clear: both; padding-top: 3px;}
#history .infoarea.estimate{position: relative;}
#history .infoarea.estimate .seikyu_price{ color:#C00; font-size: 16px;}
#history .infoarea.estimate .estimate_number{color:#222; padding:0 0 0 10px;}
#history .infoarea.estimate .button.estimate{width: 137px; display: inline-block; position: absolute; right:10px;}

#history .preparing .status_icon{background: #336600; padding: 3px 5px;}/* 手配中 */
#history .delivered .status_icon{background: #ff9900; padding: 3px 5px;}/* 配送中 */
#history .delivering .status_icon{background: #000066; padding: 3px 5px;}/* 配送済 */
#history .canceled .status_icon{background: #cc0000; padding: 3px 5px;}/* 取消済 */
#history .yoyaku .status_icon{background: #000000; padding: 3px 5px;}/* 予約済 */
#history .teiki_together .status_icon{background: #996633; padding: 3px 5px;}/* 定期にまとめて */

#history .price{color: #C00; text-align: right;}
#history .cart{width: 130px; text-align: center;}
#history .cart .button{margin-bottom: 10px; width: auto; display: inline-block;}
#history .cart .delivery_slip{margin-bottom: 0px;}
#history .code{width: 80px;}
#history .amount{width: 30px; text-align: center;}

#history .estimate_reply{line-height: 22px;}
#history .estimate_reply .title{font-weight: bold;}

#history .property{display: block; color: #AAA; font-size: 90%;}

#history .img_box{width: 80px; height: 80px; margin-right: 10px; margin-bottom: 10px; text-align: center; position: relative; float: left;}
#history .img_box img{width: auto; max-width: 80px; max-height: 80px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}

#history .pageguide{ float: left; width: 570px; font-size: 85%; padding-top: 4px;}
#history .rearrange{float: left; width: 200px; font-size: 85%; text-align: right;}
#history .pagelink{ clear: both; font-size: 85%; padding: 10px 0;}
#history .nolink{color: #999;}
#history .reducedTax{ display: block; font-size: 11px; }
#history .search .buttonarea{padding: 20px 0 40px;}
#history h4.total_price{font-size: 105%; padding-left: 10px; font-weight: bold; color: #c00; margin-bottom: 20px;}

#history .webmoney-usage-detail:after{content: ""; display: inline-block; background: url("../images/otherpage.png") no-repeat; width: 18px; height: 12px;}
 
#history .message_card{display: inline-block; vertical-align: top;}
#history .noshi_amount{width:50px;}
#history .giftbag_amount{width: 80px; text-align: center;}
#history .gift_accordion_container{position: relative;}
#history .gift_accordion_title:after {content: ""; position: absolute; right: 2px; top: 30%; transition: all 0.2s ease-in-out; display: block; width: 8px; height: 8px; border-top: solid 2px #000; border-right: solid 2px #000; -webkit-transform: rotate(135deg); transform: rotate(135deg);}
#history .gift_accordion_title.open:after {-webkit-transform: rotate(-45deg); transform: rotate(-45deg); top: 45%;}
#history .gift_accordion_content {display: none;} 
#history .gift_accordion_title{position: relative; cursor: pointer;}

/*estimateListDetail - 見積履歴
-------------------------------------------------------------*/
#history #estimateListDetail .box{margin-bottom: 30px;}
#history #estimateListDetail .box:first-child{margin-top: 15px;}
#history #estimateListDetail .status_icon{color: #333; float:none; font-weight: bold; background: #CCC; padding: 5px 5px;}
#history #estimateListDetail th.total_price{width: 120px;}

/* member_history - 商品カートに入った報告ポップアップ
-------------------------------------------------------------*/
#history .cartSubmitButton{position: relative;}
#history .cartSubmitButton .cartMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#history .cartSubmitButton .cartMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#history .cartSubmitButton .cartMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#history .cartSubmitButton .cartMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#history .cartSubmitButton .cartMessage .link{background-color: #fff; text-align: center;}
#history .cartSubmitButton .cartMessage .link a{display: inline-block;}
#history .cartSubmitButton .cartMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* ===================================================================
14：サブウインドウで表示するページ用
使用ファイル：item_detail_other_image.xhtml
　　　　　　　item_friend_mail.xhtml,item_friend_mail_result.xhtml
　　　　　　　item_itemproperty_zaiko.xhtml
　　　　　　　present_friend_mail.xhtml,present_friend_mail_result.xhtml
=================================================================== */
#subwindow{width: 500px; margin: auto;}
#subwindow #header{background: none;}
#subwindow #header h1 a{float: none;}
#subwindow #content h2{margin-bottom: 20px; font-weight: normal;border-bottom: solid 3px #cccccc; position: relative;}
#subwindow #content h2:after{position: absolute; content: " "; display: block; border-bottom: solid 3px #373737; bottom: -3px; width: 20%;}
#subwindow #content table{font-size: 80%;line-height: 160%;margin: 10px 0px;width: 100%;border: 1px solid #CCCCCC;}
#subwindow #content th{padding: 10px; border: 1px solid #CCC; background: #F6F6F6; vertical-align: top; font-weight: normal; text-align: left;}
#subwindow #content th.zaiko{width: auto;text-align: center;}
#subwindow #content td{padding: 10px; border: 1px solid #CCC; vertical-align: top;}
#subwindow #content td.number{text-align: right;}
#subwindow #content .hissu{color: #CC0000;font-weight: bold;}
#subwindow #content .close{margin: 10px 0; font-size: 80%; line-height: 150%; text-align: right;}
#subwindow .buttonarea{text-align: center; margin: 10px; padding-top: 40px;}
#subwindow .buttonarea .button{display: inline-block; margin: 0 10px;}

#subwindow #content #products{width: 500px; position: relative;}
#subwindow #content #products .slides_container{overflow: hidden; position: relative; border: 1px solid #ccc; margin: 10px 0 0 0;}
#subwindow #content #products .slides_container .ima_box{width: 498px; height: 498px; position: relative; text-align: center;}
#subwindow #content #products .slides_container img{width: auto; margin: auto; max-width: 498px; max-height: 498px; display: block; position: absolute; bottom: 0; left: 0; right: 0; top: 0;}
#subwindow #content #products .slides_container a{width: 400px; height: 400px; display: block;}
#subwindow #content #products .thumbox{clear: both; margin: 15px 0 0; padding: 0;}
#subwindow #content #products .thumbox:after {content: ""; clear: both; display: block;}/* clearfix */
#subwindow #content #products .thumbox .pagination li{margin: 0 10px 10px 0; float: left;}
#subwindow #content #products .thumbox .pagination li.last{margin-right: 0;}
#subwindow #content #products .thumbox .img_box{border: 1px solid #ccc; width: 92px; height: 92px; display: block;}
#subwindow #content #products .thumbox .img_box img{max-width: 90px; max-height: 90px;}
#subwindow #content #products .thumbox .img_box img:hover{filter: alpha(opacity=60); -moz-opacity: .6; -khtml-opacity: .6; opacity: .6;}
#subwindow #content #products .thumbox .current .img_box{border: 1px solid #cc3333; display: block; filter: alpha(opacity=100) !important; -moz-opacity: 1 !important; -khtml-opacity: 1 !important; opacity: 1 !important;}
#subwindow #content #products .thumbox .current .img_box img:hover{cursor: default; filter: alpha(opacity=100) !important; -moz-opacity: 1 !important; -khtml-opacity: 1 !important; opacity: 1 !important;}
#subwindow #content #products .prev{display: block; background: url(../images/detail_prev_button.png) no-repeat; text-indent: -9999px; width: 60px; height: 60px; top: 35%; left: -26px; position: absolute; z-index: 1000;}
#subwindow #content #products .next{display: block; background: url(../images/detail_next_button.png) no-repeat; text-indent: -9999px; width: 60px; height: 60px; top: 35%; right: -26px; position: absolute; z-index: 1000;}
#subwindow #content #products .arrowOn:hover .prev, #subwindow #content #products .arrowOn:hover .next{display: block;}
#subwindow #content #products .arrowOn:hover .prev:hover, #subwindow #content #products .arrowOn:hover .next:hover{filter: alpha(opacity=80); -moz-opacity: .8; -khtml-opacity: .8; opacity: .8;}
#content #reCAPTCHA{width: 304px; margin: 20px auto 0;}


/* =================================================================
15.エラーページ
使用ファイル：common/messages.xhtml
　　　　　　　ext/social_provider.xhtml
=================================================================*/
#error{width: 100%; padding: 10px 0px;}
#error table{margin: 0px 0 10px; border: none !important; font-size: 85%;}
#error td{padding: 10px; border: none !important;}
#error .ico{width: 40px; vertical-align: top; text-align: center;}
#error .content{padding: 5px; color: #C00; font-weight: bold; vertical-align: middle; line-height: 150%; float: none;}
#error .buttonarea{margin: 10px; padding-top: 40px; text-align: center;}
#error ul{background: none;}
#error li{float: none; font-size: 100%; border: 0px; padding: 0px; margin-right: 0px; margin-bottom: 0px; width: auto; line-height: 150%;}

/*  social_provider.xhtmlのエラー部分
-------------------------------------------------------------*/
#social_plus_error{width: 100%; padding: 10px 0px;}
#social_plus_error table{margin: 0px 0 10px; border: none !important; font-size: 85%;}
#social_plus_error td{padding: 10px; border: none !important;}
#social_plus_error .ico{width: 40px; vertical-align: top; text-align: center;}
#social_plus_error .content{padding: 5px; color: #C00; font-weight: bold; vertical-align: middle; line-height: 150%; float: none;}
#social_plus_error .buttonarea{margin: 10px; padding-top: 10px; border-top: #CCC 1px dashed; text-align: center;}
#social_plus_error ul{background: none;}
#social_plus_error li{float: none; font-size: 100%; border: 0px; padding: 0px; margin-right: 0px; margin-bottom: 0px; width: auto; line-height: 150%;}


/* =================================================================
16.クレジットカード登録画面
使用ファイル：member_credit_entry_input.xhtml
=================================================================*/
#credit td.button_area{text-align: center;}
#credit td.button_area .button{display: inline-block; width: auto;}
#credit .can_regist{padding-top: 30px;}
#credit .error{clear: both; margin: 5px 10px; color: #C00 !important; font-weight: bold; text-align: center; font-size: 80%;}


/* =================================================================
17.お気に入り
使用ファイル：wishlist.xhtml
　　　　　　　wishlist_edit.xhtml
=================================================================*/
#wishList #itemListImage.product_link_items .product_link_item { width: 22.657%; }
#wishList #itemListImage.product_link_items .product_link_item,
#wishList #itemListImage.product_link_items .product_link_item:nth-child(3n) { margin-right: 3.125%; }
#wishList #itemListImage.product_link_items .product_link_item:nth-child(4n) { margin-right: 0; }

#wishList #itemListImage.product_link_items .product_link_item .img_box { margin-bottom: 8.276%; }

#wishList #itemListImage.product_link_items .product_link_item .item_name__group { display: flex; justify-content: space-between; flex-wrap: wrap; }
#wishList #itemListImage.product_link_items .product_link_item .item_name__group .group_item { width: 73.794%; }
#wishList #itemListImage.product_link_items .product_link_item .item_name__group .trash_btn { width: 20.69%; position: relative; }
#wishList #itemListImage.product_link_items .product_link_item .item_name__group .trash_btn a {
  background: none;
  display: block;
  width: 100%; height: 0; padding: 100% 0 0;
  position: relative; z-index: 2;
}
#wishList #itemListImage.product_link_items .product_link_item .item_name__group .trash_btn::after {
  content: " ";
  background: url(../images/icon/black/btn_trash.svg) center / 100% no-repeat;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100%; height: 0; padding-top: 100%;
  transition: all .2s linear;
}
#wishList #itemListImage.product_link_items .product_link_item .item_name__group .trash_btn:hover::after { background: url(../images/icon/black/btn_trash_hover.svg) center / 100% no-repeat; }
#wishList #itemListImage.product_link_items .product_link_item .item_name__group h3.item_name { font-size: 2rem; font-weight: 600; }
#wishList #itemListImage.product_link_items .item_caption_box { margin-top: .8em; }
.item_caption_box .item_caption__ttl { font-size: 1.5rem; opacity: .8; }
.item_caption_box .item_caption__txt { font-size: 1.6rem; font-weight: 600; }

#wishList #itemListImage.product_link_items .product_link_item .comment_input__btn { margin: 8.276% auto; font-size: 1.6rem; font-weight: 600; width: 100%; display: block; color: #1432AA; text-align: center; padding: 1.125em 0; }
#wishList #itemListImage.product_link_items .product_link_item .comment_input__btn::before {background: #1432AA;}

#wishList #itemListImage.product_link_items .comment_include_area { font-size: 1.4rem; background: rgba(0,0,0,.05); }
#wishList #itemListImage.product_link_items .comment_include_area p { padding: 8.276%; }
#wishList #itemListImage.product_link_items .comment_include_area p.text_none { padding: 0; }


/* wishList - 商品カートに入った報告ポップアップ
-------------------------------------------------------------*/
#wishList .cartSubmitButton{position: relative;}
#wishList .cartSubmitButton .cartMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#wishList .cartSubmitButton .cartMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#wishList .cartSubmitButton .cartMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#wishList .cartSubmitButton .cartMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#wishList .cartSubmitButton .cartMessage .link{background-color: #fff; text-align: center;}
#wishList .cartSubmitButton .cartMessage .link a{display: inline-block;}
#wishList .cartSubmitButton .cartMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* =================================================================
18.アドレス帳
使用ファイル：address_add.xhtml
　　　　　　　address_input.xhtml
=================================================================*/
#addressList{padding-bottom: 20px;}
#addressList h3{margin-bottom: 15px; padding: 1px 0px 0px 20px; border-bottom: 1px solid #CCC; background: url("../images/marker.gif") 7px 7px no-repeat; font-size: 85%; margin-top: 30px;}
#addressList ul{padding: 20px 0 10px;}
#addressList ul:after {content: ""; clear: both; display: block;}/* clearfix */
#addressList li{float: left; font-size: 80%; border: 1px solid #CCC; padding: 10px 10px 40px 10px; margin-right: 10px; margin-bottom: 10px; width: 348px; line-height: 180%; position: relative;}
#addressList li strong{font-size: 18px;}
#addressList li .button_area{margin: 0px 0px 0; position: absolute; bottom: 10px;}
#addressList li .button_area .button{width: auto; display: inline-block;}
#addressList .widebox li{width: 453px;}
#addressList .pageguide{float: left; width: 500px; font-size: 85%;}
#addressList .rearrange{float: left; width: 200px; font-size: 85%; text-align: right;}
#addressList .pagelink{clear: both; font-size: 85%;}
#addressList .nolink{color: #999;}


/* =================================================================
19.マイページ
使用ファイル：member_mypage.xhtml
=================================================================*/
#member.mypage h3{margin: 10px 0 10px 10px;}
#member.mypage h3 a{ float: right; width: auto;}
#member.mypage ul{margin: 0 0 50px 10px;}
#member.mypage ul:after {content: ""; clear: both; display: block;}/* clearfix */
#member.mypage ul li{float: left;}
#member.mypage ul li h4{font-size: 16px; background: #F6F6F6; font-weight: normal; padding: 6px 10px; margin: 0 0px 15px 0;}
#member.mypage ul li .inner{width: 246px; border: 1px solid #CCCCCC; margin: 0 10px 10px 0;}
#member.mypage ul li .box{padding-bottom: 10px;}
#member.mypage ul li p{font-size: 12px;}
#member.mypage ul li a{font-size: 12px;}

#member.mypage #social_plus{margin: 50px 0 0;}
#member.mypage #social_plus .associate{display: inline-block; min-width: inherit; width: 100px; font-size: 14px;}
#member.mypage #social_plus tr th{background: #FFF;}
#member.mypage #social_plus tr th a{text-decoration: none;}
#member.mypage #social_plus tr.title th{background: #F6F6F6;}
#member.mypage #social_plus th.service{width: 220px;}
#member.mypage #social_plus th div{width: 220px; height: 44px; font-size: 14px; display: block;}
#member.mypage #social_plus th div p{padding: 14px 0 14px 25px; border: 1px solid #cdcdcd; border-left: 0px; margin: 0 0 0 51px; display: block; line-height: 1; font-size: 14px;}
#member.mypage #social_plus th.yahoo div{background: url("../images/social_yahoo.png") no-repeat; color: #e71017;}
#member.mypage #social_plus th.facebook div{background: url("../images/social_facebook.png") no-repeat; color: #3b5998;}
#member.mypage #social_plus th.twitter div{background: url("../images/social_twitter.png") no-repeat; color: #55acee;}
#member.mypage #social_plus th.google div{background: url("../images/social_google.png") no-repeat; color: #dc4e41;}
#member.mypage #social_plus th.mixi div{background: url("../images/social_mixi.png") no-repeat; color: #d1ad59;}
#member.mypage #social_plus th.line div{background: url("../images/social_line.png") no-repeat; color: #00b300;}
#member.mypage #social_plus th.paypal div{background: url("../images/social_paypal.png") no-repeat; color: #293e7f;}
#member.mypage #social_plus th.apple_id div p{padding: 18px 0px 19px 25px;}
#member.mypage #social_plus .alignment th div p{border: none; margin: 0 0 0 53px;}
#member.mypage #social_plus .alignment th.apple_id div{background: url("../images/social_apple.png") no-repeat; color: #000; height: 53px;}

#member.mypage #social_plus th.yahoo div.off{background: url("../images/social_yahoo_off.png") no-repeat; color: #cdcdcd;}
#member.mypage #social_plus th.facebook div.off{background: url("../images/social_facebook_off.png") no-repeat; color: #cdcdcd;}
#member.mypage #social_plus th.twitter div.off{background: url("../images/social_twitter_off.png") no-repeat; color: #cdcdcd;}
#member.mypage #social_plus th.google div.off{background: url("../images/social_google_off.png") no-repeat; color: #cdcdcd;}
#member.mypage #social_plus th.mixi div.off{background: url("../images/social_mixi_off.png") no-repeat; color: #cdcdcd;}
#member.mypage #social_plus th.line div.off{background: url("../images/social_line_off.png") no-repeat; color: #cdcdcd;}
#member.mypage #social_plus th.paypal div.off{background: url("../images/social_paypal_off.png") no-repeat; color: #cdcdcd;}
#member.mypage #social_plus td{vertical-align: middle;}

/* =================================================================
20.ログイン
使用ファイル：login.xhtml
=================================================================*/
#loginNew:after {content: ""; clear: both; display: block;}/* clearfix */
#loginNew table{margin: 0 auto 20px auto; width: 428px;}
#loginNew h3{margin-bottom: 15px; padding: 1px 20px; border-bottom: 1px solid #CCC; background: url("../images/marker.gif") 7px 7px no-repeat #EEE; font-size: 85%;}
#loginNew .box{border: 1px solid #CCC; width: 478px; float: left; margin: 0 5px 30px; position: relative;}
#loginNew .box .buttonarea{width: 100%; margin: 20px 0; padding: 0;}
#loginNew .box table{margin: 10px; width: 446px !important;}
#loginNew .box .link_text{text-align: right; padding: 15px 0 10px;}
#loginNew .box .regist_non_area{width: 442px; margin: 0 auto;}
#loginNew .box .regist_non_area p{margin: 0 0 10px;}
#loginNew .box .amazon_area{width: 442px; margin: 0 auto; border-top: 1px solid #ccc;}
#loginNew .box .amazon_area p{margin: 10px 0;}
#loginNew .widebox{border: 1px solid #CCC; width: 960px; margin: 0 10px 30px; clear: both;}
#loginNew .widebox .link{text-align: right;}
#loginNew .widebox table{width: 920px;}
#loginNew input[type='text'],#loginNew input[type='password']{width: 100%; background: #000; color:#fff; border: none;}
::placeholder{color: darkgray; }
#loginNew .social_provider ul{margin: 0px 13px 0px;}
#loginNew .social_provider ul:after {content: ""; clear: both; display: block;}/* clearfix */
#loginNew .social_provider ul li{width: 220px; height: 44px; font-size: 14px; display: block; float: left; margin: 0px 10px 15px 0;}
#loginNew .social_provider ul li:nth-child(2n){margin-right: 0px;}
#loginNew .social_provider ul li a{display: block; text-decoration: none;}
#loginNew .social_provider ul li a span{padding: 14px 0 14px 25px; border: 1px solid #cdcdcd; border-left: 0px; margin: 0 0 0 53px; display: block; background: #FFF; line-height: 1; font-size: 14px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-moz-border-radius-topright: 3px;  
-moz-border-radius-bottomright: 3px;
}

#loginNew .social_provider li.yahoo a{background: url("../images/social_yahoo.png") no-repeat; color: #e71017;}
#loginNew .social_provider li.facebook a{background: url("../images/social_facebook.png") no-repeat; color: #3b5998;}
#loginNew .social_provider li.twitter a{background: url("../images/social_twitter.png") no-repeat; color: #55acee;}
#loginNew .social_provider li.google a{background: url("../images/social_google.png") no-repeat; color: #dc4e41;}
#loginNew .social_provider li.mixi a{background: url("../images/social_mixi.png") no-repeat; color: #d1ad59;}
#loginNew .social_provider li.line a{background: url("../images/social_line.png") no-repeat; color: #00b300;}
#loginNew .social_provider li.paypal a{background: url("../images/social_paypal.png") no-repeat; color: #293e7f;}

/* #main.ログイン用メインコンテンツ追加
-------------------------------------------------------------*/
#main.login-plase{float: none !important; width: 100%; max-width: 640px; text-align: center; margin: 10rem auto; color: #fff;}
#main.login-plase .logo_group { width: 62.5%; margin: 0 auto; }
#main.login-plase .logo_group .logo_img { width: 60%; margin: 0 auto 8%; }
#main.login-plase .logo_group .logo_img .subtitle { font-size: 3.2rem; font-weight: 500; text-align: center; }
#main.login-plase .login_items {margin-top: 11.25%;}
#main.login-plase .login_items input { background: none; width: 100%; font-size: 2rem; padding: 0; line-height: 3; }
#main.login-plase .login_items .title { font-size: 2.4rem; font-weight: 600; color: #fff; margin-bottom: .667em; text-align: left; }
#main.login-plase .login_items .title:nth-child(n+2) { margin-top: 6.25%; }
#main.login-plase .login_items .input_item {
  border-bottom: 1px solid #fff;
  font-size: 2rem;
}
#main.login-plase .login_items .input_item input::placeholder { color: #fff; font-size: 2.4rem; }

#main.login-plase .buttonarea{text-align: center; margin-top: 12.5%; width: 100%; }
#main.login-plase .buttonarea .button{ border-radius: 0; padding: 1.25em 0; font-size:2.4rem; font-weight: 600;background:#ACA8A8; color: #000;}
#main.login-plase .buttonarea .attention{color: #C00; }
.login-caution{text-align:left; margin-top: 6.25%; font-size: 1.8rem; line-height: 1.445; }
#main p.subtitle{font-size: 2.8rem;}

.black_back {background-color: #000; text-align: center;}
/* =================================================================
21.商品比較
使用ファイル：item_compare.xhtml
=================================================================*/
#itemCompare .img_box{width: 80px; height: 80px; margin: 0; text-align: center; position: relative;}
#itemCompare .img_box img{width: auto; max-width: 80px; max-height: 80px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
#itemCompare .propertyimg_box{width: 60px; height: 60px; margin: 0; text-align: center; position: relative;}
#itemCompare .propertyimg_box img{width: auto; max-width: 60px; max-height: 60px; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;}
#itemCompare th{width: 150px;}
#itemCompare .button_area .button{width: auto; display: inline-block; width: 130px;}

/* itemCompare - 商品カートに入った報告ポップアップ
-------------------------------------------------------------*/
#itemCompare .cartSubmitButton{position: relative;}
#itemCompare .cartSubmitButton .cartMessage{position: absolute; top: -85px; left: 50%; margin-left: -122px; padding: 10px; background-color: #fff; border: #ccc 2px solid; width: 270px; z-index: 10; display: none;}
#itemCompare .cartSubmitButton .cartMessage:after{content: ""; display: block; position: absolute; top: 100%; left: 50%; margin-left: -3px; width: 6px; height: 5px;}
#itemCompare .cartSubmitButton .cartMessage .title{text-align: center; font-size: 100.0%; font-weight: bold; color: #000;}
#itemCompare .cartSubmitButton .cartMessage .mainclose{background-color: #fff; cursor: pointer; text-align: center; margin-bottom: 0;}
#itemCompare .cartSubmitButton .cartMessage .link{background-color: #fff; text-align: center;}
#itemCompare .cartSubmitButton .cartMessage .link a{display: inline-block;}
#itemCompare .cartSubmitButton .cartMessage .close{position: absolute; top: 3px; right: 3px; cursor: pointer;}

/* =================================================================
22.キャンペーン
使用ファイル：top.xhtml,item_detail.xhtml,cart_index.xhtml,cart_seisan.xhtml,cart_confirm.xhtml,cart_confirm$amazon_payments.xhtml,cart_result.xhtml,member_history.xhtml
=================================================================*/
/* member_history */
#history .campaign {line-height:1.5; display: inline-block; margin:0 5px 0 0;}

/* top,item_detail */
#mainCampaign ul{width:100%;}
#mainCampaign ul:after {content: ""; clear: both; display: block;}/* clearfix */
#mainCampaign li{width:375px; margin:0 20px 20px 0; float: left;}
#mainCampaign li a{display: block;}
#mainCampaign li img{width:100%; display: block;}
#mainCampaign li h3{padding:5px 0 0 0;}
#mainCampaign li h4{font-size:90%;}
#mainCampaign li p{margin:5px 0 0 0; font-size:90%;}

/* cart_index */
#cartCampaign ul{width:100%;}
#cartCampaign ul:after {content: ""; clear: both; display: block;}/* clearfix */
#cartCampaign p.heed{margin:0 0 10px 0; font-size:75%;}
#cartCampaign li{width:365px; margin:0 20px 20px 0; float: left;}
#cartCampaign li a{display: block;}
#cartCampaign li img{width:100%; display: block;}
#cartCampaign li h4{padding:5px 0 0 0;}
#cartCampaign li p{margin:5px 0 0 0;}

/* cart_confirm */
#cartFlow .confirmCampaign{width:100%; margin-top: 20px; padding:10px; border:#CCC 1px solid;}
#cartFlow .confirmCampaign h3{margin: 0 0 10px; padding: 0px; border: none; background: none;}
#cartFlow .confirmCampaign li{padding:0 0 10px 0; border:none;}
#cartFlow .confirmCampaign li h4{font-size: 90%;}
#cartFlow .confirmCampaign li img{width:100%;}
#cartFlow .confirmCampaign li p{margin:0;}

/* cart_result */
#resultCampaign ul{width:100%;}
#resultCampaign ul:after {content: ""; clear: both; display: block;}/* clearfix */
#resultCampaign h3 {margin-bottom: 15px; padding:1px 20px; border-bottom: 1px solid #CCC; background:url("../images/marker.gif") 7px 7px no-repeat #EEE; font-size: 85%;}
#resultCampaign {width:980px;}
#resultCampaign:after {content: ""; clear: both; display: block;}/* clearfix */
#resultCampaign li{width:480px; margin:0 20px 20px 0; float: left;}
#resultCampaign li a{display: block;}
#resultCampaign li img{width:100%; display: block;}
#resultCampaign li p{margin:5px 0 0 0;}

/* =================================================================
23.会員登録
使用ファイル：member_input.xhtml
=================================================================*/
#memberInput{padding:30px 0 0 0;}
#memberInput h3{margin:10px 0 10px 10px;}
#memberInput .social_provider ul{width:100%; padding:0 10px;}
#memberInput .social_provider li{width:220px; margin:0 20px 20px 0; float: left;}
#memberInput .social_provider ul li a{display: block; text-decoration: none;}
#memberInput .social_provider li.yahoo a{background: url("../images/social_yahoo.png") no-repeat; color: #e71017;}
#memberInput .social_provider li.facebook a{background: url("../images/social_facebook.png") no-repeat; color: #3b5998;}
#memberInput .social_provider li.twitter a{background: url("../images/social_twitter.png") no-repeat; color: #55acee;}
#memberInput .social_provider li.google a{background: url("../images/social_google.png") no-repeat; color: #dc4e41;}
#memberInput .social_provider li.mixi a{background: url("../images/social_mixi.png") no-repeat; color: #d1ad59;}
#memberInput .social_provider li.line a{background: url("../images/social_line.png") no-repeat; color: #00b300;}
#memberInput .social_provider li.paypal a{background: url("../images/social_paypal.png") no-repeat; color: #293e7f;}
#memberInput .social_provider ul li a span{padding: 14px 0 14px 25px; border: 1px solid #cdcdcd; border-left: 0px; margin: 0 0 0 53px; display: block; background: #FFF; line-height: 1; font-size: 14px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;  
    -moz-border-radius-topright: 3px;  
    -moz-border-radius-bottomright: 3px;
    }
#memberInput .social_provider li.rakuten_regist a span{padding:0; border:0; margin:0; background:none;}
.member_input__table { width: 100%; margin-top: 4em; }
.member_input__table .title { font-size: 1.6rem; }
.member_input__table .title .ttl_caption { font-size: .8em; display: block; margin-top: 0.5em; width: 100%; }
.member_input__table .input_item { width: 60%; }
.member_input__table .input_item input {width: 100%; padding: 1.5em; font-size: 1.4rem; border: 1px solid #000;}
.member_input__table .input_item .caption_text { font-size: 1.4rem; margin: 1em 0; display: block; }
#newPassword .new_password__input { display: block; margin-top: 3em; }
#memberInput .buttonarea { margin-top: 8em; }

.table-col2 th { vertical-align: text-top; }
.table-col2 th span { margin-top: 2em; display: block; }

/* =================================================================
24.子会員リスト
使用ファイル：child_member_list.xhtml
=================================================================*/
#childMemberList h3{display: block; font-size: 110%; margin: 30px 10px 10px; padding-bottom: 5px;}
#childMemberList .table th{vertical-align: middle;}
#childMemberList .table th.select{width: 70px;}
#childMemberList .table th.select input[type="button"]{width: initial; padding: 6px 6px;}
#childMemberList .table th.select input[type="button"] + input[type="button"]{margin-top: 5px;}
#childMemberList .table td{vertical-align: middle;}
#childMemberList .table td.select .id_and_check{display: inline-block; white-space: nowrap;}
#childMemberList .table th.regist{width: 100px;}
#childMemberList .pageguide{ float: left; width: 570px; font-size: 85%; padding-top: 4px;}
#childMemberList .rearrange{float: left; width: 200px; font-size: 85%; text-align: right;}
#childMemberList .pagelink{ clear: both; font-size: 85%; padding: 10px 0;}
#childMemberList .nolink{color: #999;}
#childMemberList .search .buttonarea,
#childMemberList .bulk_update .buttonarea{padding: 20px 0 40px;}
#childMemberList .bulk_update{margin: 20px 0 40px;}
#childMemberList .bulk_update .explanation{display: block; margin: 10px 0 20px 0; padding: 10px; background: #EEE; color: #666; font-size: 90%;}
#childMemberList .bulk_update .update_input_area{height: 35px; line-height: 35px;}
#childMemberList .bulk_update .update_input_area .select{display: inline-block;}
#childMemberList .bulk_update .update_input_area .button{display: inline-block; width: 160px; margin-left: 20px;}

/* =================================================================
25.担当法人一覧
使用ファイル：client_corporation_list.xhtml
=================================================================*/
#clientCorpList .link_office{width: 100px;}

/* =================================================================
26.担当事業所一覧
使用ファイル：client_office_list.xhtml
=================================================================*/
#clientOfficeList .pageback{max-width: 230px; font-size: 16px; margin: 50px auto 0;}

/* =================================================================
27.ポイント履歴
使用ファイル：member_point_record.xhtml
=================================================================*/
#pointRecord .summary {margin: 10px; border: 1px solid #CCC; font-size: 90%; line-height: 150%;}
#pointRecord .summary h3 {font-weight: normal; font-size: 90%; background-color: #F6F6F6; padding: 10px;}
#pointRecord .summary .detail {padding: 10px; position: relative;}
#pointRecord .summary .detail .limit_date {font-weight: bold;}
#pointRecord .summary .total {margin-bottom: 10px}
#pointRecord .summary .total .point {color: #C00; font-weight: bold;}
#pointRecord .summary .detail .link_point_right{position: absolute; top: 10px; right: 10px;}
#pointRecord .summary .limit {padding: 5px 0; border-top: 1px dotted #CCC;}
#pointRecord .record_list td {vertical-align: inherit;}
#pointRecord .record_list td.remarks{line-height: 150%;}
#pointRecord .record_list .right {text-align: right;}
#pointRecord .record_list .plus {font-weight: bold;}
#pointRecord .point_limit_date{ font-size: 12px; text-align: left; line-height: 150%;}
#pointRecord .limit_icon{ background-color: #C00; color: #FFFFFF; display: inline-block; font-size: 10px; font-weight: normal; line-height: 1; padding: 3px 5px; vertical-align: text-bottom; }
#pointRecord th{ width: 150px; }
#pointRecord .point_kbn{display: inline-block;}

/* =================================================================
28.ポイント有効期限
使用ファイル：member_point_limit_manage.xhtml
=================================================================*/
#pointLimit .summary {margin: 10px; border: 1px solid #CCC; font-size: 90%; line-height: 150%;}
#pointLimit .summary h3 {font-weight: normal; font-size: 90%; background-color: #F6F6F6; padding: 10px;}
#pointLimit .summary .detail {padding: 10px; position: relative;}
#pointLimit .summary .detail .limit_date {font-weight: bold;}
#pointLimit .summary .total {margin-bottom: 10px}
#pointLimit .summary .total .point {color: #C00; font-weight: bold;}
#pointLimit .summary .detail .link_point_right{position: absolute; top: 10px; right: 10px;}
#pointLimit .limit_list td {vertical-align: inherit;}
#pointLimit .limit_list .limit_date{display: inline-block;}
#pointLimit .limit_list .right {text-align: right;}
#pointLimit .limit_icon{ background-color: #C00; color: #FFFFFF; display: inline-block; font-size: 10px; font-weight: normal; line-height: 1; padding: 3px 5px; vertical-align: text-bottom; }

/* =================================================================
29.STAFF START
=================================================================*/
/* 共通
-------------------------------------------------------------*/
#main .staff_start_error{margin: 0 0 20px; font-weight: bold; color: #C00;}/* エラーメッセージ */
#main .clear_box:after{content: ""; display: block; clear: both;}

/* コーディネート用汎用ボックス */
#main .staff_coordinate_box{float: left; margin: 0 20px 20px 0; width: 177px;}
#main .staff_coordinate_box a{display: block; text-decoration: underline; padding: 0; border: none; color: #60ac31;}
#main .staff_coordinate_box a:hover{text-decoration: none;}
#main .staff_coordinate_box img{display: block; width: 177px;}
#main .staff_coordinate_box p{margin: 0; font-size: 14px;}
#main .staff_coordinate_box:nth-of-type(4n){margin-right: 0;}
#main .staff_coordinate_box .info_box{margin: 10px 0 0 0; font-size: 0;}
#main .staff_coordinate_box .info_box .staff_icon{display: inline-block; margin: 0 10px 0 0; width: 50px;}
#main .staff_coordinate_box .info_box .staff_icon img{width: 50px; height: 50px; border-radius: 50%;}
#main .staff_coordinate_box .info_box .staff_info{margin: 0; width: 117px;}
#main .staff_coordinate_box .info_box .staff_info span{margin: 0; font-size: 14px;}

/* スタッフ一覧・コーディネート一覧 絞り込みアコーディオン */
.accordionList h2{position: relative; font-size: 15px; cursor: pointer;}
.accordionList h2::after{content: ""; position: absolute; top: 50%; transform: translateY(-50%); right: 8px; padding: 0; width: 8px; height: 8px; margin-top: -3px; border-style: solid; border-width: 1px 1px 0px 0px; border-color: #000000; -webkit-transform: translateY(-50%) rotate(315deg); transform: translateY(0%) rotate(315deg);}
.accordionList h2.close::after{-webkit-transform: translateY(-50%) rotate(135deg); transform: translateY(-50%) rotate(135deg);}
.accordionList a{display: inline-block; padding: 5px; font-size: 14px;}
.accordionList ul{margin: 0;}
.accordionList+.accordionList{margin: 30px 0 0 0;}
.accordionList .selected{display: block; padding: 5px; background: #F5F5F5; font-weight: bold; font-size: 14px;}

/* タブ切り替え */
#main .staffstart_tab .tab_nav{border-bottom: 1px solid #CCC; font-size: 0;}
#main .staffstart_tab .tab_nav .tabBtn{display: inline-block; margin: 0px 20px 0px 0px; padding: 6px 0; width: 188px; height: 35px; border-style: solid; border-width: 1px 1px 0px 1px; text-align: center; border-color: #ccc; background-color: #DDD; vertical-align: middle; cursor: pointer; font-size: 14px;}
#main .staffstart_tab .tab_nav .tabBtn.active{position: relative; background-color: #FFF; cursor: initial;}
#main .staffstart_tab .tab_nav .tabBtn.active:after{content: "";  display: block; position: absolute; width: 100%; border-bottom: 3px solid #FFF; bottom: -2px;}

#main .staffstart_tab .tab_list{padding: 20px 0;}
#main .staffstart_tab .tabContent{display: none;}
#main .staffstart_tab .tabContent:after{content: ""; display: block; clear: both;}
#main .staffstart_tab .tabContent.active {display: block;}
#main .staffstart_tab .tabContent ul{margin: 20px 0 0 0; background: none;}

/* コーディネート一覧用タブデザイン */
#main .staffstart_tab .tab_nav .tab_title{display: inline-block; margin: 0px 20px 0px 0px; padding: 6px 0; width: 188px; height: 35px; border-style: solid; border-width: 1px 1px 0px 1px; text-align: center; border-color: #ccc; background-color: #DDD; vertical-align: middle; cursor: pointer; font-size: 14px;}
#main .staffstart_tab .tab_nav .tab_title.active{position: relative; background-color: #FFF; cursor: default;}
#main .staffstart_tab .tab_nav .tab_title.active:after{content: "";  display: block; position: absolute; width: 100%; border-bottom: 3px solid #FFF; bottom: -2px;}

#main .staffstart_tab .tab_nav .tab_title a{display: block; color: #000; text-decoration: none; height: 34px;}


/* スタッフプロフィール用 */
#main .staff_profile::after{content: ""; display: block; clear: both;}
#main .staff_icon{float: left;}
#main .staff_icon img{display: block; border-radius: 50%;}
#main .staff_info{float: left; margin: 0 0 0 20px;}
#main .staff_info p{margin: 0; font-size: 13px;}
#main .staff_info .name{margin: 0 0 10px 0; font-size: 16px;}
#main .staff_info .kana{display: inline-block; margin: 0 0 0 20px; font-size: 12px;}

/* STAFF START - トップ
使用ファイル：top.xhtml
-------------------------------------------------------------*/
/* コーディネートランキング */
#main .staff_start_ranking{margin: 0 0 20px 0;}
#main .staff_start_ranking::after{content: ""; display: block; clear: both;}
#main .staff_start_ranking h2>a{float: right; margin: 4px 3px 0px 0px; font-size: 16px;}/* すべて見るリンク */
#main .staff_start_ranking .staff_coordinate_box{margin: 0 20px 30px 0;}
#main .staff_start_ranking .staff_coordinate_box:nth-of-type(4n){margin: 0 0 30px 0;}

/* スタッフランキング */
#main .staff_start_ranking .staff_list_box{width: 138px;}
#main .staff_start_ranking .staff_list_box img{width: 138px; height: 138px;}
#main .staff_start_ranking .staff_list_box .info_box{margin: 10px 0 0 0; text-align: center;}
#main #staffRanking .staff_list_box:last-of-type{margin-right: 0;}

/* STAFF START - 商品詳細
使用ファイル：item_detail.xhtml
-------------------------------------------------------------*/
/* この商品を紹介したブログ */
.staff_coordinate_box.article ul li .info_box .staff_icon,
.staff_coordinate_box.article ul li .info_box .staff_info{float: none;}

/*
STAFF START - スタッフ一覧
使用ファイル：staff_list.xhtml
-------------------------------------------------------------*/
#main .staff_list_box{margin: 0; background: none;}
#main .staff_list_box{float: left; margin: 0 20px 20px 0; width: 177px;}
#main .staff_list_box a{margin: 0; padding: 0; border: none;  color: #60ac31; font-size: 14px;}
#main .staff_list_box img{display: block; width: 177px; height: 177px; border-radius: 50%;}
#main .staff_list_box p{margin: 0; text-align: center; font-size: 14px;}
#main .staff_list_box .staff_info{float: none; margin: 10px 0 0 0;}

#main #list .staff_list_box:nth-of-type(4n),
#main .coordinate_list .staff_list_box:nth-of-type(4n){margin-right: 0;}

/*
STAFF START - スタッフ詳細
使用ファイル：staff_detail.xhtml
-------------------------------------------------------------*/
#staff_detail .staff_profile .staff_icon{width: 130px;}
#staff_detail .staff_profile .staff_icon img{width: 130px; height: 130px;}
#staff_detail .staff_profile .staff_info{padding: 10px 0; width: 290px;}
#staff_detail .staff_profile .message{float: left; margin: 0 0 0 25px; padding: 0 0 0 25px; width: 510px; border-left: 1px solid #CCC; font-size: 14px;}

#staff_detail .staffstart_tab{margin: 40px 0 0 0;}
#staff_detail .tabContent .tabContent::after{content: ""; display: block; clear: both;}
#staff_detail .tabContent .tab_loop{float: left; margin: 0 15px 15px 0; width: 233px;}
#staff_detail .tabContent .tab_loop:nth-of-type(4n){margin-right: 0;}
#staff_detail .tabContent img{display: block; width: 233px;}
#staff_detail .tabContent p{margin: 0; font-size: 14px;}
#staff_detail .tabContent .date{margin: 10px 0 0 0;}

/* 人気のタグ */
#main #list .hashtag_area{margin: 0 0 20px;}
#main #list .hashtag_area h2{border: none; font-size: 20px; margin: 0 0 16px;}
#main #list .hashtag_area h2::after{content: none;}
#main #list .hashtag_area ul{background: none;}
#main #list .hashtag_area ul li{margin: 0 0 8px;}
#main #list .hashtag_area ul li a{margin-right: 8px; padding: 7px 10px 7px 10px; text-decoration: none; font-size: 14px; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;}
#main #list .hashtag_area ul li a:hover{opacity: 0.6; cursor: pointer; transition: all .3s;}
#main #list .hashtag_area ul li .selected{display: inline-block; margin: 0 8px 0 0; padding: 7px 10px 7px 10px; border: 1px solid #CCC; background: #DDD; /*color: #FFF;*/ font-size: 14px; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;}

/*
STAFF START - コーディネート一覧
使用ファイル：coordinate_list.xhtml
-------------------------------------------------------------*/
#main #list .staffstart_tab .tab_list{padding: 0 0 80px;}
#main #list .staff_start_ranking img{width: 177px; height: 177px;}
#main #list .staff_start_ranking .staff_list_box{width: 177px;}
#main #list .staffstart_pager{margin: 20px 0 0 0;}

/*
STAFF START - コーディネート詳細
使用ファイル：coordinate_detail.xhtml
-------------------------------------------------------------*/
#itemDetail .coordinateDetail::after{content: ""; display: block; clear: both;}

/*　商品画像スライド */
#itemDetail .coordinateDetail .item_image_area{width: 450px;}

#itemDetail #main_img{visibility: hidden;}
#itemDetail .coordinateDetail .slide{display: none; width: 450px;}
#itemDetail .coordinateDetail .slide img{width: 450px;}

#itemDetail .coordinateDetail .thumbnail{margin: 10px 0 0 0;}
#itemDetail .coordinateDetail .thumbnail::after{content: ""; display: block; clear: both;}
#itemDetail .coordinateDetail .thumbnail li{float: left; margin: 0 10px 10px 0; width: 105px;}
#itemDetail .coordinateDetail .thumbnail li:nth-child(4n){margin: 0 0 10px 0;}
#itemDetail .coordinateDetail .thumbnail li a{display: block;}
#itemDetail .coordinateDetail .thumbnail li.active a{border: 1px solid #cc3333; filter: alpha(opacity=100) !important; -moz-opacity: 1 !important; -khtml-opacity: 1 !important; opacity: 1 !important;}
#itemDetail .coordinateDetail .thumbnail li img{display: block; box-sizing: border-box; width: 100%;}

/*　スタッフプロフィール・商品説明・着用商品 */
#itemDetail .coordinateDetail .text{margin: 0 0 0 30px; width: 500px;}
#itemDetail .coordinateDetail .staff_profile{padding: 0 0 20px 0; border-bottom: 1px solid #CCC;}
#itemDetail .coordinateDetail .staff_icon{width: 100px;}
#itemDetail .coordinateDetail .staff_icon img{width: 100px; height: 100px;}
#itemDetail .coordinateDetail .staff_info p{font-size: 13px;}
#itemDetail .coordinateDetail .staff_info .name{font-size: 16px;}

/* コーディネート説明 */
#itemDetail .coordinateDetail .comment{margin: 20px 0 0 0; padding: 0 0 20px 0; border-bottom: 1px solid #CCC;}
#itemDetail .coordinateDetail .comment p{margin: 0; font-size: 14px;}

/* 着用商品 */
#itemDetail .coordinateDetail .coordinate_box p{margin: 0; font-size: 13px;}
#itemDetail .coordinateDetail .coordinate_box{float: left; margin: 0 15px 15px 0; width: 156px;}
#itemDetail .coordinateDetail .coordinate_box:nth-of-type(3n){margin: 0 0 15px 0;}
#itemDetail .coordinateDetail .coordinate_box a{cursor: pointer;}
#itemDetail .coordinateDetail .coordinate_box img{display: block; width: 156px;}
#itemDetail .coordinateDetail .coordinate_box .item_info{margin: 10px 0 0 0;}

/* スタッフのその他のコーディネート */
.other_coordinate{margin: 40px 0 0;}
.other_coordinate ul:after{content: ""; display: block; clear: both;}
.other_coordinate ul li{float: left; margin: 0 15px 15px 0; width: 184px;}
.other_coordinate ul li:nth-child(5n){margin: 0 0 15px 0;}
.other_coordinate ul li img{display: block; width: 184px;}

/* 人気のタグ */
#itemDetail .coordinateDetail .hashtag_area{margin: 20px 0 0;}
#itemDetail .coordinateDetail .hashtag_area ul::after{content: ""; display: block; clear: both;}
#itemDetail .coordinateDetail .hashtag_area ul li{float: left; margin: 0 0 8px;}
#itemDetail .coordinateDetail .hashtag_area ul li a{display: block; margin-right: 8px; padding: 7px 10px 7px 10px; text-decoration: none; font-size: 14px; border: 1px solid #CCC; color: #000; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;}
#itemDetail .coordinateDetail .hashtag_area ul li a:hover{opacity: 0.6; cursor: pointer; transition: all .3s;}

/*
STAFF START まとめ記事詳細
使用ファイル：article_detail.xhtml
-------------------------------------------------------------*/
#main .articleDetail h2{margin: 0 0 15px 0; padding: 0; font-size: 20px; font-weight: bold; border: none;}
#main .articleDetail h2::after{content: none;}
#main .articleDetail .date{display: block; margin: 0; font-size: 14px; font-weight: normal;}

#main .articleDetail .staff_profile{padding: 25px; background-color: #F5F5F5;}
#main .articleDetail .staff_icon{width: 80px;}
#main .articleDetail .staff_icon img{width: 80px; height: 80px;}
#main .articleDetail .staff_info{padding: 10px 0;}
#main .articleDetail .staff_info p{font-size: 13px;}

#main .articleDetail .content{margin: 20px 0 0 0;}
#main .articleDetail .content p{font-size: 14px;}
#main .articleDetail .content .title_image{margin: 10px 0 0 0;}
#main .articleDetail .content .title_image img{width: 120px;}
#main .articleDetail .content_block img{max-width: 470px;}
#main .articleDetail .content_block p{margin: 0;}

/* 文字サイズ */
.ss-font-size-x-small{font-size: x-small;}
.ss-font-size-small{font-size: small;}
.ss-font-size-large{font-size: large;}
.ss-font-size-x-large{font-size: x-large;}

/* コーディネート - スタッフ情報　共通設定 */
.ss-content-area.content-area-coordinate{vertical-align: middle; font-size: 0;}
.ss-content-coordinate-img{display: inline-block; width: 50%; vertical-align: middle;}
.ss-content-coordinate-info{display: inline-block; width: 50%; vertical-align: middle;}

.ss-content-user-info-list::after{content: ""; display: block; clear: both;}
.ss-content-user-info-list li{float: left;}
.ss-article-box .ss-content-user-info-list .ss-content-user-meta-list li{float: none; font-size: 14px;}
.ss-article-box .ss-content-user-info-list .ss-content-user-image{margin: 0 20px 0 0; width: 80px;}
.ss-article-box .ss-content-user-info-list .ss-content-user-image img{display: block; width: 80px; height: 80px; border-radius: 50%;}

/* ブロック共通設定 */
.ss-article-box{margin: 40px 0 0 0;}

/* ブロック2 */
.ss-boxtype-list.boxtype-2-list .ss-content-area.content-area-description{margin: 10px 0 0 0;}

/* ブロック3 */
.ss-boxtype-list.boxtype-3-list::after{content: ""; display: block; clear: both;}
.ss-boxtype-list.boxtype-3-list li{float: left; margin: 0 20px 0 0; width: 48%;}
.ss-boxtype-list.boxtype-3-list li:nth-child(2n){margin: 0;}

/* ブロック4 */
.ss-boxtype-list.boxtype-4-list::after{content: ""; display: block; clear: both;}
.ss-boxtype-list.boxtype-4-list li{float: left; margin: 0 20px 20px 0; width: 48%;}
.ss-boxtype-list.boxtype-4-list li:nth-child(2n){margin: 0 0 20px 0;}

/* ブロック3,4のコーディネート */
.ss-boxtype-list.boxtype-3-list .ss-content-coordinate-img,
.ss-boxtype-list.boxtype-4-list .ss-content-coordinate-img{width: 100%;}
.ss-boxtype-list.boxtype-3-list .ss-content-coordinate-info,
.ss-boxtype-list.boxtype-4-list .ss-content-coordinate-info{margin: 20px 0 0 0; width: 100%;}
.ss-boxtype-list.boxtype-4-list .ss-content-user-info-list .ss-content-user-meta-list li{margin: 0; width: 100%;}

/*
PCIDSS v4対応
-------------------------------------------------------------*/
/* ボタン */
input.pcidss{max-width: 230px; min-width: 200px; font-size: 16px;}
#cartSidebar .cartButtonArea input.pcidss{padding: 0; height: 36px; font-size: 15px; white-space: break-spaces; line-height: 1.4;}

#main.pcidssv4{float: none; width: 980px; padding-bottom: 20px;}
#main.pcidssv4 .error{display: block; color: #C00 !important; font-weight: bold; font-size: 80%;}
#main.pcidssv4 .card-supplement{margin: 5px 0; font-size: 12px; color: #368bc6; font-weight: bold;}
#main.pcidssv4 table{margin: 10px 0 0; width: 980px;}
#main.pcidssv4 th.title{width: 180px;}
#main.pcidssv4 .newCreditCard{width: 600px;}

#main.pcidssv4 .checkarea label{margin: 0 0 0 2px; font-weight: bold;}

/*======== 1280px以下 ========*/
@media only screen and (max-width: 1280px) {
  html { font-size: calc(100vw * 10 / 1280); }
  .inner, #header .inner {padding: 0 1.6rem;}
}

/*======== 768px以下 ========*/
@media (max-width: 768px) {
  /* =================================================================
  2.base
  =================================================================*/
  html { font-size: calc(100vw * 10 / 428); }
  .inner, #header .inner {padding: 0 5.608%;}
  h3 { font-size: 2.4rem; margin-bottom: 1.334em; }

  /* =================================================================
  3.コンテナ・サイドバー・メインコンテンツ
  使用ファイル：すべてのファイル
  =================================================================*/
  #breadcrumbs { display: none; }

  .col1-btn {
    font-size: 1.8rem;
    padding: 1.334em;
    text-align: center;
    display: block; width: 100%;
  }

  /* page_header 下層ページヘッド
  -------------------------------------------------------------*/
  .page_header { margin-bottom: 6.316%; }
  .page_header_txt { font-size: 2.4rem; padding: 9.346% 0; }
  .page_head__none .page_header_none__top { margin-top: 6.316%; }
  
  .simple_box .simple_box__ttl { font-size: 1.8rem; }
  .simple_box .simple_box__ttl .simple_box__ttl_caption { font-size: .8em; }

  /* =================================================================
  4.ヘッダ
  使用ファイル：common/header.xhtml
  =================================================================*/

  /* header - ヘッダ
  -------------------------------------------------------------*/
  #header {padding: 5.608% 0;}
  #header .nav_search_group__category .pulldown_trigger {display: none !important;}

  #header .nav_sp_icons {
    width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #header .nav_sp_icons .nav_sp_icon_item { width: calc(100%/4); text-align: center; }
  #header .nav_sp_icons .nav_sp_icon_item .icon {
    display: block;
    font-size: 0;
    width: 25.264%;
    margin: 0 auto 8.422%;
  }
  #header .nav_sp_icons .nav_sp_icon_item .txt {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
  }
  #header .nav_group { display: none; transition: all .2s linear; opacity: 0; }

  /*fixed*/
  #header .fixed_only {display: none;}
  #header.opend { 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    position: fixed;
  } 
  #header.fixed .not_fixed,
  #header.opend .not_fixed {display: none;}
  #header.fixed .fixed_only,
  #header.opend .fixed_only {display: block;}
  #header.opend .logo_group {display: block;}
  #header.fixed .logo_group .logo-img,
  #header.opend .logo_group .logo-img { width: 49.932%; }
  #header.fixed .logo_group .logo-txt,
  #header.opend .logo_group .logo-txt {white-space: nowrap; font-size: 1.4rem; font-weight: 800;}

  #header.fixed .logo_group,
  #header.opend .logo_group { width: 42.106%; z-index: 3; }
  #header.fixed .nav_sp_icons,
  #header.opend .nav_sp_icons { width: 31.316%; justify-content: flex-end; z-index: 3; }
  #header.fixed .nav_sp_icons .nav_sp_icon_item,
  #header.opend .nav_sp_icons .nav_sp_icon_item { width: 20.169%;}
  #header.fixed .nav_sp_icons .nav_sp_icon_item .icon,
  #header.opend .nav_sp_icons .nav_sp_icon_item .icon { width: 100%; }
  #header.fixed .nav_sp_icons #iconMypage,
  #header.opend .nav_sp_icons #iconMypage { margin-left: 12.606%; }
  #header.fixed .nav_sp_icons .nav_sp_icon_item.humberger_btn,
  #header.opend .nav_sp_icons .nav_sp_icon_item.humberger_btn { width: 26.891%; margin-left: 20.169%; }
  #header.fixed .nav_sp_icons .nav_sp_icon_item.humberger_btn span,
  #header.opend .nav_sp_icons .nav_sp_icon_item.humberger_btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 50vw;
  }
  #header.fixed .nav_sp_icons .nav_sp_icon_item.humberger_btn span:nth-child(n+2),
  #header.opend .nav_sp_icons .nav_sp_icon_item.humberger_btn span:nth-child(n+2) { margin-top: 25%; }

  .nav_search_group__category,
  .nav_search_group .nav_search_group__keyword { width: 100%; }

  #header .humberger_item { opacity: 0; transition: all 5s linear; }
  #header.opend .humberger_item { opacity: 1;  transition: all 5s linear; }
  
  /*humberger-open*/
  #header.opend .nav_group {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 25.701% 5.608% 0;
    z-index: 2;
  }
  #header.opend .nav_group::-webkit-scrollbar{ display:none; }

  #header.opend .nav_group .nav_link_group {justify-content: flex-start; margin-bottom: 8.422%; width: 100%;}

  #header.opend .nav_group .nav_link_group .nav_link_group__icons,
  #header.opend .nav_group .nav_link_group .nav_link_group__logout { display: none; }
  #header.opend .nav_group .nav_search_group { flex-wrap: wrap; flex-direction: column-reverse; width: 100%; }

  #header.opend .nav_group .nav_link_group .nav_link_group__id { font-size: 1.8rem; font-weight: 500; }

  #header.opend .nav_search_group .nav_search_group__keyword input.search_input {
    font-size: 1.8rem;
    font-weight: 500;
    padding: 6.316% 8.422%;
  }
  #header.opend .nav_search_group .nav_search_group__keyword .search_icon { width: 6.316%; }
  #header.opend .nav_search_group__category { border: none; flex-wrap: wrap; margin-top: 12.632%; padding-bottom: 15%; }
  #header.opend .nav_search_group__category h4 { font-size: 2.4rem; width: 100%; }
  #header.opend .nav_search_group__category .pulldown_child {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    position: relative;
    margin-top: 6.316%;
  }
  .nav_search_group__category .pulldown_child .pulldown_child_item { font-size: 2rem; padding-bottom: .8em; }
  .nav_search_group__category .pulldown_child .pulldown_child_item:nth-child(n+2) { padding-top: .8em; }

  #header.opend .nav_sp_icons .nav_sp_icon_item.humberger_btn { position: relative; height: 0; padding: 20.863% 0 0; }
  #header.opend .nav_sp_icons .nav_sp_icon_item.humberger_btn span:nth-child(1) { transform: rotate(45deg); position: absolute; top: 50%; }
  #header.opend .nav_sp_icons .nav_sp_icon_item.humberger_btn span:nth-child(2) {display: none;}
  #header.opend .nav_sp_icons .nav_sp_icon_item.humberger_btn span:nth-child(3) { margin: 0; transform: rotate(-45deg); position: absolute; top: 50%; }

  /* =================================================================
  7.トップページ
  使用ファイル：top.xhtml
  =================================================================*/
  /* mainvisual - メインビジュアル
  -------------------------------------------------------------*/
  .mainvisual .logo_inner .logo h1 { width: 35%; margin: 0 auto; }
  .mainvisual .logo_inner .logo h2 { font-size: 2.4rem; text-align: center; padding-top: 6.316%; }

  /* recommend - おすすめ商品
  -------------------------------------------------------------*/
  .recommend { padding-top:0; }
  .recomend_item_wrapper { background: #000; padding: 6.316%; }
  .recomend_item_wrapper .recomend_item {
    margin: 0 auto;
    width: 100%;
    max-width: none;
    padding: 5.608 0;
  }
  .recomend_item_inner {padding: 0; margin-top: 12.632%;}
  .recomend_item_text {padding: 0;}
  .recommend .conducter_wrap { padding: 0; width: 100%; }
  .recommend .btn_more {
    background: #fff;
    color: #000;
    width: 100%;
    justify-content: center;
    padding: 7.477% 0;
  }
  .long_arrow_btn .txt { font-size: 2rem; margin-right: 3.272%; }
  .long_arrow_btn .icon_arrow { width: 11.215%; }

  /* category - カテゴリ
  -------------------------------------------------------------*/
  .category_wrapper {margin-top: 0;}
  .category_block { flex-wrap: wrap; justify-content: center; padding: 10.527% 0; }
  .category_block h3 { font-size: 2.4rem; margin-bottom: 8.422%; width: 100%; text-align: center; }
  .categories_wrapper { width: 84.211%; margin: 0 auto; }
  .categories_inner { width: 100%; }
  .categories_text { padding: 3.75% 0 3.125%; margin-left: 0; }
  .categories_arrow { width: 10%; }

  /* topics - トピックス
  -------------------------------------------------------------*/
  #main .information {margin-top: 21.053%;}
  .info_wrapper { width: 84.211%; margin: 0 auto; }
  .information .flex { flex-wrap: wrap; }
  .info_date {font-size: 1.4rem; width: 100%; }
  .info_title {font-size: 1.6rem; margin: 0; width: 100%;}
  .info_inner a {
    display: block;
    position: relative;
  }
  .info_inner a::after { width: 7.5%; padding: 7.5% 0 0; }

  /* =================================================================
  10.フッタ
  使用ファイル：common/footer.xhtml
  =================================================================*/
  footer {margin-top: 18.692%;}
  footer .footer_wrap {
    padding-top: 9.346%;
    padding-bottom: 9.346%;
    flex-wrap: wrap;
  }
  footer .footer_links {margin-bottom: 3.948%; font-size: 1.4rem;}
  footer .copyright {font-size: 1.2rem;}

  /* =================================================================
  11.商品詳細・一覧、プレゼント詳細・一覧、トピックス詳細・一覧
  使用ファイル：item_list$detail.xhtml, item_list$image.xhtml
  　　　　　　　item_list$simple.xhtml, item_detail.xhtml
  　　　　　　　present_list.xhtml, present_detail.xhtml
          　　topics_list.xhtml,topics_detail.xhtml
  　　　　　　　item_list_awoo.xhtml,
  =================================================================*/
  /* productListContent - 一覧画面大枠
  -------------------------------------------------------------*/
  #productListContent { display: block; width: 100%; }
  #productListContent .side_items { width: 100%; }
  
  #narrowListCategory h2 { font-size: 2rem; margin-bottom: 6.316%; }
  #narrowListCategory .category_group__wrap { margin-top: 0; padding: 0 0 30%; background: none; }
  #narrowListCategory #narrowDownCategoryMultiple .category_group_item_ttl { font-size: 1.8rem; padding-bottom: .778em; margin-bottom: 6.316%; }
  #narrowListCategory #narrowDownCategoryMultiple .check_box_item {
    font-size: 1.6rem;
  }

  #narrowListCategory .filterArea { margin-bottom: 6.316%; }

  #narrowListCategory .filterArea li a { width: .715em; }
  #narrowListCategory .filterArea li.filter_clear a { width: auto; }
  #narrowListCategory .filterArea li.filter_clear a .icon { width: 1.072em; }
  #narrowListCategory .filterArea li.filter_clear a .icon img { width: 100%; }

  .acordion_item__wrap {display: none;}
  .acordion_item__wrap.active { display: block; }
  #narrowListCategory .acordion_item__wrap {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 5.608%;
    overflow-y: scroll;
  }
  #narrowListCategory .acordion_button__trigger { color: #1432aa; background: #f2f3f6; font-weight: 700; }
  #narrowListCategory .acordion_item__wrap .category_group__items { padding: 2.4rem; background: #f2f3f6; }

  #narrowListCategory .acordion_item__wrap .category_group__btns { margin-top: 8.422%; display: flex; justify-content: space-between;  }
  #narrowListCategory .acordion_item__wrap .category_group__btns .category_group__btn { cursor: pointer; }
  #narrowListCategory .acordion_item__wrap .category_group__btns .category_group__btn.change { font-size: 1.6rem; text-align: center; color: #fff; background: #000; width: 75.79%; padding: 6.316% 0; }
  #narrowListCategory .acordion_item__wrap .category_group__btns .category_group__btn.reset {
    width: 18.948%;
    background: #fff;
    border: 1px solid #000;
    position: relative;
  }
  #narrowListCategory .acordion_item__wrap .category_group__btns .category_group__btn.reset img { 
    position: absolute;
    width: 44.445%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
  }

  #productListContent .main_items { width: 100%; margin-top: 8.422%; }
  #list .list_fillter__wrap #countItem { width: 56.843%; }
  #list .list_fillter__wrap #countItem .item_counter, .item_counter { font-size: 1.8rem; margin-bottom: .889em; }
  #list .list_fillter__wrap #sortItem { width: 40.843%; }
  .item_pager .pager_item__num { display: none; }
  .item_pager .pager_item__arrow { width: 2.667em; }

  #list .list_fillter__wrap #sortItem select { font-size: 1.4rem; padding: 11.429%; }

  #pagerBottom { margin-top: 16.843%; }
  #pagerBottom .item_pager { font-size: 2rem; }
  #pagerBottom .item_pager .pager_child_items li { display: block; }
  #pagerBottom .item_pager .pager_item__arrow { width: 2.4em; }
  #pagerBottom .item_pager .pager_item__arrow.prev { margin-right: 2em; }
  #pagerBottom .item_pager .pager_item__arrow.next { margin-left: 2em; }

  /* itemListImage - 商品画像一覧
  -------------------------------------------------------------*/

  #itemListImage.product_link_items { display: block; width: 100%; margin-top: 12.632%; }
  #itemListImage.product_link_items .product_link_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6.316%;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  #itemListImage.product_link_items .product_link_item .img_box { width: 46.843%; padding-top: 46.843%; }
  #itemListImage.product_link_items .product_link_item .text_box { margin: 0; width: 46.843%; }
  #itemListImage.product_link_items .product_link_item .item_name_box { width: 100%; margin: 0 auto; }
  #itemListImage.product_link_items .product_link_item .item_name_box .item_name { font-size: 1.6rem; margin-bottom: 4.495%; }
  #itemListImage.product_link_items .product_link_item .item_name_box .item_code { font-size: 1.4rem; }
  #itemListImage.product_link_items .product_link_item .item_name_box .item_code .sub-ttl { font-size: .715em; opacity: .5; }
  #itemListImage.product_link_items .product_link_item .item_deteail_link { position: absolute; bottom: 0; right: 0; width: 46.843%; padding: 1.334em; }
  #itemListImage.product_link_items .product_link_item .item_deteail_link .txt { font-size: 1.2rem; }


  /* itemDetail - 商品詳細・プレゼント詳細
  -------------------------------------------------------------*/
  #itemDetail { padding-top: 6.316%; }
  #itemDetail .item_image_area,
  #itemDetail .item_text_area { width: 100%; }
  #itemDetail .item_image_area { margin-bottom: 4.211%; }
  #itemDetail .item_text_area .item_name_box, #itemDetail .item_text_area .item_customize {margin-bottom: 4.211%;}
  #itemDetail .item_text_area .item_name_box .item_name { font-size: 2.4rem; }
  #itemDetail .item_text_area .item_name_box .item_code {font-size: 1.6rem;}
  #itemDetail .item_text_area .item_name_box .item_code .ttl { display: none; }

  #itemDetail .item_text_area .item_customize_ttl { font-size: 1.6rem; }

  #itemDetail .item_text_area .type_change_btns { width: 100%; }
  #itemDetail .item_text_area .type_change_btns .type_change_btn img {width: 100%; max-width: none;}
  #itemDetail .item_text_area .type_change_btns .type_change_btn .text { font-size: 1rem; }

  #recommendColor .recommend_color_boxs .recommend_color_box { width: 14.737%; margin-right: 4.211%; }

  #itemDetail .icon_btn { padding: 8.792% 10.99%; justify-content: space-between; }
  #itemDetail .icon_btn .text { font-size: 1.2rem; width: 87.91%; }
  #itemDetail .icon_btn::before { width: 8.792%; padding-top: 8.792%; }

  #itemDetail .tags { margin-top: 8.422%; }

  #itemDetail .item_text_area .user_action_btns { justify-content: center; }
  #itemDetail .item_text_area .user_action_btns .user_action_btn_wrap { width: 63.917%; }

  .history_btn__wrap .history_btn_item { width: 68.158%; }
  .history_btn__wrap .history_btn_item::before { width: 12.356%; padding-top: 12.356%; }
  .history_btn__wrap .history_btn_item .text { font-size: 1.7rem; width: 81.97%; }

  #recommendArea { margin: 18.692% auto 0; padding: 5.608% 0; }
  #recommendArea .recommend_slider__ttl { font-size: 2.4rem; }
  #recommendArea .slick-slide { width: 100%; max-width: none; }
  #recommendArea .text { padding: 6.316% 0; }
  #recommendArea .text .item_name { font-size: 2rem; }
  #recommendArea .text .item_code { font-size: 1.5rem; }

  /* topicsList - トピックス一覧
  -------------------------------------------------------------*/
  .topics_item__ttl { display: block; }
  .topics_item__ttl .date { width: 100%; font-size: .75em; margin-bottom: 0.4em; }
  .topics_item__ttl .ttl { width: 100%; }
  .topics_article__box .buttonarea .button { width: 80%; }

  /* =================================================================
  17.お気に入り
  使用ファイル：wishlist.xhtml
  　　　　　　　wishlist_edit.xhtml
  =================================================================*/
  #wishList #itemListImage.product_link_items .product_link_item { width: 100%; display: block; margin-right: 0; margin-bottom: 8.422%; }
  #wishList #itemListImage.product_link_items .product_link_item .product_link_item__wrap { display: flex; justify-content: space-between; }
  #wishList #itemListImage.product_link_items .product_link_item .item_name__group h3.item_name { font-size: 1.6rem; }
  #wishList #itemListImage.product_link_items .product_link_item .txt_box { width: 46.843%; }
  .item_caption_box .item_caption__ttl { display: none; }
  .item_caption_box .item_caption__txt { font-size: 1.4rem; }
  .item_caption_box.date .item_caption__txt { font-weight: 400; font-size: 1.2rem; }
  #wishList #itemListImage.product_link_items .product_link_item .comment_input__btn { font-size: 1.2rem; margin: 1.334em auto 0; padding: 1.334em 0; }

  #wishList #itemListImage.product_link_items .product_link_item .item_name__group .trash_btn::after {
    transform: none;
    top: 0; left: 0;
    background-size: contain;
  }
  #wishList #itemListImage.product_link_items .product_link_item .item_name__group .trash_btn:hover::after { background-size: contain; }
  #wishList #itemListImage.product_link_items .comment_include_area p { padding: 6.316%; }

  /* =================================================================
  20.ログイン
  使用ファイル：login.xhtml
  =================================================================*/
  #main.login-plase .logo_group { width: 100%; }
  #main.login-plase .logo_group .logo_img { width: 41.706%; margin-bottom: 6.316%; }
  #main p.subtitle { font-size: 2rem; }

  #main.login-plase { padding: 0 5.608%; margin: 14.954% auto; }
  #main.login-plase .login_items { margin-top: 12.632%; }
  #main.login-plase .login_items .title {
    font-size: 1.6rem; margin-bottom: 1em;
  }
  #main.login-plase .login_items input {font-size: 1.6rem;}
  #main.login-plase .buttonarea {margin-top: 10.527%;}
  #main.login-plase .buttonarea .button { font-size: 1.8rem; }
  .login-caution { font-size: 1.4rem; margin-top: 10.527%; }

  /* =================================================================
  23.会員登録
  使用ファイル：member_input.xhtml
  =================================================================*/
  .simple_box { width: 100%; }
  .simple_box .buttonarea .button .button_item { font-size: 1.4rem; font-weight: 500; padding: 1em 0; }

  #memberInput { padding: 0 5.608%; }
  #memberInput .buttonarea { margin-top: 4em; }

  .member_input__table,
  .member_input__table tbody,
  .member_input__table tr,
  .member_input__table th,
  .member_input__table .input_item { display: block; width: 100%; }
  .member_input__table .title { display: block; margin-bottom: 1em; font-size: 1.5rem; }
  #newPassword .new_password__input {margin-top: 0;}
}

/* BACK LIGHTING*/
.back_lighting{margin-bottom: 5%;}
.detail_select{max-width: 350px; width: 70%; background: #fff; position: relative;}
.detail_select select{width: 100%; padding: 5%; border: 1px solid #000; font-size: 2.0rem; font-weight: 600;}
.detail_select::after{content: ""; background: url(../images/icon/black/arrow_down.svg) center / 100% no-repeat; width: 48px; height: 48px; position: absolute; top: 50%; right: .5em; transform: translateY(-50%); pointer-events: none;}
.item_modal_area{position: relative;}
.js-modalOpen{position: absolute; top: 15px; right: 15px; z-index: 1; cursor: pointer;}
.modalArea .js-modalOpen{display: none;}
.js-modalClose{position: absolute; top: 15px; right: 15px; z-index: 1; cursor: pointer;}
.js-modalClose img{width: 45px; height: auto;}
.modalArea.item_wrap{position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 999;}
#itemDetail .modalArea.item_wrap .item_image_area{width: 100%; max-height: 100vh; height: 100vh; position: relative; display: flex; flex-direction: column; overflow: hidden; background: #fff;}
#itemDetail .modalArea.item_wrap .item_image_area .iten_image_box #mviewer{max-height: 100vh; height: 100vh;}
#recommendArea{overflow: hidden;}
#backlight{color: #666666;}

.modalArea .item_name{position: absolute; top: 15px; left: 15px; width: 80%;}
.modalArea .type_backLight{position:absolute; bottom: 0; right: 0; background: rgba(249, 250, 251, 0.5); padding: 0 15px;}
#itemDetail .modalArea .item_text_area .type_change_btns{width: 100%;}
.modalArea .detail_select{width: 100%;}
#itemDetail .item_wrap.modalArea{margin-bottom: 0;}

@media (max-width: 768px) {
  .type_backLight{display: flex; column-gap: 4%;}
  #itemDetail .item_text_area .item_customize#typeChange{width: 38%;}
  #itemDetail .item_text_area .back_lighting{width: 58%;}
  .detail_select{width: 100%;}

.modalArea .type_backLight{width: 100%; right: auto; padding: 0 15px; background: rgba(255, 255, 255, 0.5);}
  
}

.list__num{list-style: none; counter-reset: parentCounter;}
.list__num > li::before {content: counter(parentCounter, decimal) '. '; counter-increment: parentCounter; position: absolute; left: 0px;}
.list_roman {counter-reset: childCounter; list-style-type: lower-roman;}
.list_roman > li::before {counter-increment: childCounter; content: '（' counter(childCounter, lower-roman) '） '; position: absolute; left: 0px;}
.list__num > li,.list_roman > li{position: relative; padding:0.25em 0 0.25em 1.5em;}
.list_roman > li{padding-left: 2.5em;}
.u-my30{margin: 30px 0;}
.u-mt60{margin-top: 60px;}
.u-ml15{margin-left: 15px;}
.u-mgb20{margin-bottom: 20px;}