@charset"euc-jp";

/************************************************************************************************
	reset 
************************************************************************************************/


/*要素のフォントサイズやマージン・パディングをリセット*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}




/************************************************************************************************ 
	フォントサイズ
************************************************************************************************/

html { font-size: 62.5%; }


/*行の高さをフォントサイズと同じに*/

body {
    line-height: 1;
}


/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/*nav要素内ulのマーカー（行頭記号）を非表示*/


/*nav ul {
    list-style:none;
}*/

ol,
ul {
    list-style: none;
}


/*引用符の非表示*/

blockquote,
q {
    quotes: none;
}


/*blockquote要素、q要素の前後にコンテンツを追加しない*/

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}


/*a要素のフォントサイズなどをリセットしてフォントの縦方向の揃え位置を親要素のベースラインに揃える*/

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    color: #232323;
}


/* ins要素のデフォルトをセットし、色を変える場合はここで変更 */

ins {
    background-color: #ff9;
    color: #1b1b1b;
    text-decoration: none;
}


/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用*/

mark {
    background-color: #ff9;
    color: #1b1b1b;
    font-style: italic;
    font-weight: bold;
}


/*テキストに打ち消し線を付ける*/

del {
    text-decoration: line-through;
}


/*IEではデフォルトで点線を下線表示する設定ではないので、下線を付ける
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}


/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*水平罫線のデフォルトである立体的な罫線を見えなくする*/

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}


/*縦方向の揃え位置を中央揃えに指定*/

input,
select {
    vertical-align: middle;
}


/*画像を縦に並べた時に余白が出ないように*/

img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}


/*box-sizingを全ブラウザに対応*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}





/************************************************************************************************ 
	SP 共通
************************************************************************************************/

dt {
    font-weight: 600;
}

* {
    list-style: none;
    margin: 0;
    padding: 0;
    font-style: normal;
    letter-spacing: 0.06em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', meiryo, sans-serif;
}

body {
	color: #232323;
}

.col {
    padding-left: 1.5%;
    padding-right: 1.5%;
}

a {
	
}

.radius {
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
}

#news h2,
#pickup h2,
#checked h2,
#shopinfo h2,
#specific h2,
#resharp h2,
#privacy h2,
#itemlist h2,
#support h2,
.together-block h2,
.listpage h2,
.allitems {
    font-size: 2.0rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    padding: 28px 0;
    text-align: center;
}

.thumb_box .col,
#news .col,
#support .col,
#product .col,
#product.col,
#itemlist .col,
#itemlist.col,
#search_result .col,
#search_result.col {
    padding: 0;
}


/* font */

.txt_l {
    text-align: left;
}

.txt_c {
    text-align: center;
}

.txt_r {
    text-align: right;
}

.txt_fwn {
    font-weight: normal;
}

.txt_fwb {
    font-weight: 600;
}

.txt_10 {
    font-size: 1rem;
}

.txt_12 {
    font-size: 1.2rem;
}

.txt_14 {
    font-size: 1.4rem;
}

.txt_16 {
    font-size: 1.6rem;
}

.txt_18 {
    font-size: 1.8rem;
}

.txt_20 {
    font-size: 2.0rem;
}

.txt_22 {
    font-size: 2.2rem;
}

.txt_24 {
    font-size: 2.4rem;
}

.txt_28 {
    font-size: 2.8rem;
}

.txt_c_333 {
    color: #333;
}


/* background */

.bgc_gray {
    background-color: #f1f1f1;
}


/* margin */

.mar_auto {
    margin: 0 auto;
}

.mar_0 {
    margin: 0;
}

.mar_t_0 {
    margin-top: 0;
}

.mar_r_0 {
    margin-right: 0;
}

.mar_b_0 {
    margin-bottom: 0;
}

.mar_l_0 {
    margin-left: 0;
}

.mar_5 {
    margin: 5px;
}

.mar_t_5 {
    margin-top: 5px;
}

.mar_r_5 {
    margin-right: 5px;
}

.mar_b_5 {
    margin-bottom: 5px;
}

.mar_l_5 {
    margin-left: 5px;
}

.mar_t_10 {
    margin-top: 10px;
}

.mar_r_10 {
    margin-right: 10px;
}

.mar_b_10 {
    margin-bottom: 10px;
}

.mar_l_10 {
    margin-left: 10px;
}

.mar_15 {
    margin: 16px;
}

.mar_t_15 {
    margin-top: 16px;
}

.mar_r_15 {
    margin-right: 16px;
}

.mar_b_15 {
    margin-bottom: 16px;
}

.mar_l_15 {
    margin-left: 16px;
}

.mar_16 {
    margin: 16px;
}

.mar_t_16 {
    margin-top: 16px;
}

.mar_r_16 {
    margin-right: 16px;
}

.mar_b_16 {
    margin-bottom: 16px;
}

.mar_l_16 {
    margin-left: 16px;
}

.mar_t_20 {
    margin-top: 20px;
}

.mar_r_20 {
    margin-right: 20px;
}

.mar_b_20 {
    margin-bottom: 20px;
}

.mar_l_20 {
    margin-left: 20px;
}

.mar_t_30 {
    margin-top: 30px;
}

.mar_r_30 {
    margin-right: 30px;
}

.mar_b_30 {
    margin-bottom: 30px;
}

.mar_l_30 {
    margin-left: 30px;
}

.mar_t_50 {
    margin-top: 50px;
}

.mar_r_50 {
    margin-right: 50px;
}

.mar_b_50 {
    margin-bottom: 50px;
}

.mar_l_50 {
    margin-left: 50px;
}


/* padding */

.pad_v_10 {
    padding: 10px 0;
}

.pad_v_20 {
    padding: 20px 0;
}

.pad_v_30 {
    padding: 30px 0;
}

.pad_0 {
    padding: 0;
}

.pad_t_0 {
    padding-top: 0;
}

.pad_r_0 {
    padding-right: 0;
}

.pad_b_0 {
    padding-bottom: 0;
}

.pad_l_0 {
    padding-left: 0;
}

.pad_5 {
    padding: 5px;
}

.pad_t_5 {
    padding-top: 5px;
}

.pad_r_5 {
    padding-right: 5px;
}

.pad_b_5 {
    padding-bottom: 5px;
}

.pad_l_5 {
    padding-left: 5px;
}

.pad_10 {
    padding: 10px;
}

.pad_t_10 {
    padding-top: 10px;
}

.pad_r_10 {
    padding-right: 10px;
}

.pad_b_10 {
    padding-bottom: 10px;
}

.pad_l_10 {
    padding-left: 10px;
}

.pad_20 {
    padding: 20px;
}

.pad_t_20 {
    padding-top: 20px;
}

.pad_r_20 {
    padding-right: 20px;
}

.pad_b_20 {
    padding-bottom: 20px;
}

.pad_l_20 {
    padding-left: 20px;
}

.pad_30 {
    padding: 30px
}

.pad_t_30 {
    padding-top: 30px;
}

.pad_r_30 {
    padding-right: 30px;
}

.pad_b_30 {
    padding-bottom: 30px;
}

.pad_l_30 {
    padding-left: 30px;
}


/* border */

.bor_t_1 {
    border-top: 1px solid #ccc;
}

.bor_r_1 {
    border-right: 1px solid #ccc;
}

.bor_b_1 {
    border-bottom: 1px solid #ccc;
}

.bor_l_1 {
    border-left: 1px solid #ccc;
}


/* vertical align */

.va-10 {
    vertical-align: -10%;
}

.va-20 {
    vertical-align: -20%;
}

.va-30 {
    vertical-align: -30%;
}

.va-35 {
    vertical-align: -35%;
}

.va-40 {
    vertical-align: -40%;
}


/*
 * icons
 */

.icon-user {
    background-position: -108px 0;
}

.icon-lg-b.icon-user,
.icon-lg-w.icon-user {
    background-position: -108px 0;
}

.icon-adduser {
    background-position: -240px 0;
}

.icon-lg-b.icon-adduser {
    background-position: -360px 0;
}

.icon-login {
    background-position: -48px -80px;
}

.icon-lg-b.icon-login,
.icon-lg-w.icon-login {
    background-position: -72px -120px;
}

.icon-logout {
    background-position: -32px -80px;
}

.icon-lg-b.icon-logout,
.icon-lg-w.icon-logout {
    background-position: -48px -120px;
}

.icon-home {
    background-position: -176px -16px;
}

.icon-lg-b.icon-home {
    background-position: -264px -24px;
}

.icon-mail {
    background-position: -64px 0;
}

.icon-lg-b.icon-mail {
    background-position: -96px 0;
}

.icon-pencil {
    background-position: -96px 0;
}

.icon-lg-b.icon-pencil {
    background-position: -144px 0;
}

.icon-help {
    background-position: -180px 0px;
}

.icon-lg-b.icon-help,
.icon-lg-w.icon-help {
    background-position: -180px 0;
}

.icon-cart {
    background-position: -144px 0;
}

.icon-lg-b.icon-cart,
.icon-lg-w.icon-cart {
    background-position: -144px 0;
}

.icon-search {
    background-position: -174px 6px;
}

.icon-lg-b.icon-search {
    background-position: -174px 6px;
}

.icon-chevron_up {
    background-position: 60px 0;
}

.icon-lg-b.icon-chevron_up {
    background-position: -155px 8px;
}

.icon-chevron_down {
    background-position: 24px 0;
}

.icon-lg-b.icon-chevron_down {
    background-position: -178px 8px;
}

.icon-lg-w.icon-fb {
    background-position: 0 0 !important;
}

.icon-lg-w.icon-tw {
    background-position: -27px 0 !important;
}

.icon-lg-w.icon-ig {
    background-position: -72px 0 !important;
}

.icon-b,
.icon-w {
    background-repeat: no-repeat;
    background-size: 160px;
    width: 16px;
    height: 16px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.icon-lg-b,
.icon-lg-w {
    background-repeat: no-repeat;
    background-size: 312px;
    width: 24px;
    height: 24px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.icon-b {
    background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_bk.png");
}

.icon-w {
    background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_wh.png");
}

.icon-lg-b {
    background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_bk.png");
}

.icon-lg-w {
    background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_wh.png");
}

.icon-clip {
    background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/clip_wh.png");
    background-repeat: no-repeat;
    background-size: 70px;
    width: 24px;
    height: 24px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

#base_gmoWrapp,
#gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
}


/************************************************************************************************ 
	SP 大枠
************************************************************************************************/

#wrapper {
    max-width: 100% !important;
}

.container {
    width: 100% !important;
    padding: 50px 0 0;
}

#contents {
    float: right;
    padding: 0;
}

#contents .topicpath-nav li {
    padding: 0;
}


/************************************************************************************************ 
	SP  ヘッダー
************************************************************************************************/

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

#header-box {
    min-height: 50px;
    transition: 0.3s ease;
    width: 100%;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
    margin: 0;
    position: relative;
}

#logo {
    display: block;
    background: url("https://img21.shop-pro.jp/PA01416/008/etc/logo.png") no-repeat 17px center / 90px;
    height: 100%;
    width: 120px;
}

#category {
    border-top: solid 1px #fff;
    padding-top: 7px;
    font-size: 1.6rem;
}

#header-box a,
.category-list a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.category-list {
    padding: 16px 14px;
    display: block;
}

label {
    margin: 0;
}

#header-box,
#header-box .dropdown ul {
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
}

.mobile-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}


/************************************************************************************************ 
	SP ナビ
************************************************************************************************/


/** 
	search form 
**/

#search {
    margin-top: 14px;
}

#search form {
    margin: 0 5px 0 14px;
    width: calc(100% - 170px);
    display: inline-block;
    position: relative;
}

.search-query {
    height: 32px;
    width: 100%;
    padding-right: 28px !important;
    padding-left: 10px !important;
    border: none;
    /*background: #666;*/
    border-bottom: solid 1px #666;
}

.search input {
    border: none;
}

.glass {
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 32px !important;
    width: 32px !important;
    background-size: 260px !important;
    background-repeat-y: no-repeat;
    background-color: rgba(0, 0, 0, 0)
}

#search .icon_list{
	display: inline;
}

.icon-menu {
    display: inline-block;
    padding: 4px;
    vertical-align: bottom;
}


/**
	mobile menu
**/

#hamburger {
    padding: 24px 16px;
    position: relative;
    cursor: pointer;
}

#hamburger span,
#hamburger span::after,
#hamburger span::before {
    display: block;
    height: 2px;
    width: 20px;
    transition: 0.3s ease;
}

#hamburger span::after,
#hamburger span::before {
    content: '';
    position: absolute;
}

#hamburger span::before {
    margin-top: -8px;
}

#hamburger span::after {
    margin-top: 8px;
}

#header-box #hamburger span,
#header-box #hamburger span::after,
#header-box #hamburger span::before {
    background-color: #fff;
}

.check {
    display: none;
}

.check:checked~#header-box li #hamburger span {
    background-color: transparent;
}

.check:checked~#header-box li #hamburger span::after,
.check:checked~#header-box li #hamburger span::before {
    margin-top: 0;
}

.check:not(:checked)~#header-box {
    overflow: hidden;
    height: 50px;
}

.check:checked~#header-box {
    transition: height 0.3s ease;
    height: 100vh;
    overflow: auto;
}

.check:checked+#header-box .hamburger-spin span::before {
    transform: rotate(45deg);
}

.check:checked+#header-box .hamburger-spin span::after {
    transform: rotate(-45deg);
}

.dropdown {
    position: relative;
    height: auto;
    min-height: 50px;
}

.dropdown:hover>ul {
    position: relative;
    display: block;
    min-width: 100%;
}

.dropdown>a::after {
    position: absolute;
    content: '';
    right: 10px;
    top: 25px;
    border-width: 5px 5px 0;
    border-color: transparent;
    border-style: solid;
}

.dropdown>ul {
    display: block;
    overflow-x: hidden;
    list-style: none;
    padding: 0;
}

.dropdown>ul .category-list {
    min-width: 100%;
    height: 29px;
    padding: 5px 10px 5px 40px;
}

.dropdown>ul .category-list {
    min-height: 29px;
    line-height: 29px;
    padding: 0;
}

.check:not(:checked)~.menu,
.header,
.menu {
    height: 50px;
    min-height: 50px;
}


.weather {
	display: block;
	background: #999;
	color: #fff; 
	padding: 12px; 
	text-align: center; 
	margin-top: 50px; 
	margin-bottom: -50px;
	line-height: normal;
}



/************************************************************************************************
	SP トップページ
************************************************************************************************/

#news .thumb img{
	margin-bottom: 16px;
}

#news .text-info{
	text-align: center;
    padding: 50px;
    background: #f2f2f2;
    margin-bottom: 0 !important;
}

#news .text-info br{
	display: block !important;
}

#pickup .row{
	margin: 0 !important;
}

#pickup .col {
    padding: 0;
}

.allitems {
    display: block;
    background: #ccc;
    color: #fff;
    padding: 50px 0;
}


#top_img .pop-pc{
	display: none;
}



/************
	support
************/

#support .support_img{
	display: block;
	width: 100%;
	min-height: 360px;
	background-size: cover;
	margin-bottom: 16px;
}

#news br,
#support br{
	display: none;
}
#news .news_name,
#news .news_date,
#support .store_name{
	display: block;
	font-weight: 600;
	line-height: 1.6;
	padding-bottom: 0;
}
#news .news_caption,
#support .store_caption{
	padding: 1.5em;
	text-align: justify;
}

/************************************************************************************************ 
	SP パンくず
************************************************************************************************/

.topicpath-nav a {
    color: #1b1b1b;
    display: inline-block;
    height: 100%;
}

.topicpath-nav {
    padding: 4px 16px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    background: #f2f2f2;
}

.topicpath-nav li br {
    display: none;
}


/************************************************************************************************ 
	SP カテゴリー
************************************************************************************************/

#shopinfo h2 {
    padding: 0;
    line-height: 2.7rem;
    margin-bottom: 10px;
}

.listpage h2 {
    padding: 16px;
}

.listpage .expl {
    padding: 0;
}


/*
 * CLIP
 */

.listpage .txt2 {
    background: #f2f2f2;
    padding: 16px;
}

#clip ul {
    padding: 0 1.5%;
}

#clip .thumb p {
    height: auto;
    padding: 0 0 10px;
}

#clip .product-list {
    margin-bottom: 30px;
}

#itemlist .topicpath-nav {
    padding: 4px 16px !important;
}

#itemlist .group-list-s a,
#specific #specific-menu li a {
    display: block;
    width: 100%;
    line-height: 48px;
    color: #232323;
    border-bottom: solid 1px #ccc;
}

.horizontal-scroll-wrap {
    overflow-y: hidden;
    height: 46px;
}

.horizontal-scroll {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    height: 56px;
    -webkit-overflow-scrolling: touch;
}

.group-list {
    display: flex;
    padding-bottom: 30px;
    font-size: 1.4rem;
}

.group-list-unit {
    margin-right: 1px;
}

.group-list-unit a,
.group-list .all {
    display: block;
    width: 100%;
    padding: 16px 12px;
    background: #ccc;
    color: #fff;
    font-weight: 600;
}

.group-list .all {
    color: #333;
    background: #f2f2f2;
}


/*
 * thumb
 */


.thumb-list {
    position: relative;
}

.thumb {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    color: #333;
    font-weight: 300;
    font-size: 1.4rem;
    text-align: center;
}

.thumb-info,
.news_caption,
.store_caption {
    line-height: 1.6;
    margin-top: 0;
    padding: 0 1em;
    height: auto;
}


.thumb-info{
	padding: 12px 0.5em;
}

.thumb-img {
	position: relative;
	padding: 0;
}

.thumb-sold {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
	color: #f2f2f2;
	bottom: 0;
	left: 0;
}

.thumb-sold:before {
  position: absolute;
  top: 50%;
  -webkit-transform : translate(-50%);
  transform : translate(-50%);;
  content: 'SOLD';
  font-weight: 600;
}

.thumb-name{
}

.thumb-price {
    display: block;
}

.thumb i,
.thumb u,
.thumb b,
.thumb tt {
    display: block;
    position: absolute;
    top: -20px;
    left: -45px;
    width: 100px;
    transform: rotate(-45deg);
    color: #999;
    background: #fff;
    padding: 30px 30px 0px;
    line-height: 2.4rem;
    font-size: 1.0rem;
    font-weight: bold;
    text-decoration: none;
}

.thumb i {
    color: #fff;
    background: #000;
}

.thumb u {
    color: #82BC00;
}

.thumb b {
    color: #333;
}



/*
 * checked
 */

#checked .col {
    padding: 0;
}



/*
 * pagenation
 */

.pagination {
    margin: 50px 0;
    text-align: center;
}

.pagination span,
.pagination a {
    font-size: 1.4rem;
    line-height: 1.4rem;
    display: inline-block;
    text-align: center;
    padding: 14px;
    background: #f2f2f2;
}

.pagination_current {
    color: #ccc;
}

.pagination_item,
.pagination_next {
    color: #333;
}


/************************************************************************************************ 
	SP 商品：詳細
************************************************************************************************/

.mainimg img{
	width: 100%;
}

/*.mainimg{
      display: inline-block;
      position: relative;
      width: 100%;
      max-width: 1200px;
    }
    .mainimg::before{
      content: "";
      display: block;
      padding-top: 100%;
    }
    .mainimg img{
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      object-fit: cover;
      object-position: 0 0;
    }*/

.contour {
    margin-left: 16px;
    margin-right: 16px;
}

.contour a{
	text-decoration: underline;
}

.contour .nl{
}

.contour .exp{
	padding: 1em;
	background: #f2f2f2;
	font-size: small;
}

/**改行の調整**/

.br-pc {
    display: none;
}

.br-sp {
    display: block;
}

.br {
    display: none;
}

#product_detail img {
    margin-bottom: 16px;
}

.nl {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 2.7rem;
    margin-bottom: 16px;
    text-align: justify;
    white-space: 
}

.in_s {
    font-size: 1.4rem !important;
    font-weight: normal;
    letter-spacing: 0.1em !important;
    padding-top: 6px;
    margin-top: 8px;
    border-top: solid 1px #999;
}



.catch,
.subcatch {
    font-size: 2.2rem !important;
    line-height: 3.2rem;
    font-weight: normal;
    letter-spacing: 0.2em;
}

.subcatch {
    margin-bottom: 14px;
}

.spec {
    background: url(https://img21.shop-pro.jp/PA01416/008/etc/grid01.gif);
}

.spec dl {
    letter-spacing: 0.01em;
    line-height: 1.6rem !important;
    padding: 32px 0 8px;
}

.spec .contour::before {
    content: "SPEC";
    color: #999;
    font-size: 2.2rem;
    position: relative;
    top: 24px;
}

.spec dt {
    font-weight: 600;
    color: #666;
    line-height: 2.8rem !important;
}

.spec dd {
    padding: 0 0 16px 0;
}

.spec .caution li{
	list-style: disc !important;
	margin-left: 1em;
}

#product_detail .spec img {
    margin-bottom: 0;
}

#contents.thumb_box {
    padding: 0;
}


/* mod_thumbnail
--------------------------------------------*/

.mod_thumbnail {
    margin: 0;
}

.mod_thumbnail img {
    margin-bottom: 0 !important;
}


/* サムネイル画像表示（thumbnaillist）
-----------------------------------------*/

.thumbnaillist {}

.thumbnaillist ul {}

.thumbnaillist li {
    float: left;
}

.thumbnaillist li a {
    display: block;
}


/* 組み合わせて使いたい（together-block）
-----------------------------------------*/

.together-block.hidden{
	display: none;
}

.together-block.pc{
	margin-top: 32px;
}
.together-block.sp{
	margin-bottom: 32px;
}
#product_detail  .together-block img{
	margin-bottom: 0;
}





/************************************************************************************************ 
	SP 商品：カート
************************************************************************************************/

#cart {
    padding: 32px 16px !important;
}

.cart-name,
.cart-price{
	font-size: 2.0rem;
	font-weight: 300;
}

#cart .new_mark_img1,
.topicpath-nav .new_mark_img1 {
    display: none !important;
}

#cart .product-order {
    height: 48px;
}

#cart .product-order ul {
    margin: 0;
}

#cart .product-order ul a,
#cart .product-order ul i {
    display: block;
    height: 24px;
    width: 30px;
}

#cart .icon-lg-b.icon-chevron_up,
#cart .icon-lg-b.icon-chevron_down {
    background-size: 200px;
}

#cart .input-prepend.input-append {
    position: relative;
}

.input-append,
.input-prepend {
}

#cart .input-prepend.input-append input {
    font-size: 1.4rem;
    padding-right: 24px;
    height: 48px;
    width: 100%;
    text-align: left;
}

#cart .input-prepend ul {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
}

.regular_price {
    padding-bottom: 16px;
}

#cart .letterpack{
	font-size: 1.3rem;
	color: #888;
	padding: 10px;
	border: solid 1px #888;
	border-radius: 4px;
	margin-bottom: 16px;
	text-align: center;
}

#cart .disable_cartin {
    height: 100%;
}

#cart .product-num,
.cart-option select {
    background: #fff;
    box-shadow: none;
    border: solid 1px #1b1b1b;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none; 
}

.cart-option select {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    /**text-indent: 1em;**/
    background: url(https://img21.shop-pro.jp/PA01416/008/etc/arrow_down.png) no-repeat 95% center;
    background-size: 10px 10px;
    padding-right: 10%;
    height: 48px;
    line-height: 100%;
}

.option-name {
    font-size: 1.3rem;
    padding: 6px 2px;
    margin-bottom: 6px;
}

.option_price {
    text-align: center;
    margin-top: 16px;
}

.option_price a {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
    background: #aaa;
    width: 100%;
    display: block;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 0;
}

.atc {
    padding-left: 4% !important;
}

.btn-addcart {
    background-color: #333;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 3.0rem;
    width: 100%;
    height: 100%;
}

.btn-lg {
    border-radius: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}

#cart strike {
    color: #ccc;
}

#cart .stock_error {
    background: #fff;
    height: 100%;
    min-height: 48px;
    line-height: 26px;
    position: relative;
    top: -48px;
    margin-bottom: -48px;
    outline: none;
}

#cart .sold {
    border: none;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 600;
    height: 48px;
}

.favorite-button {
    display: block;
    width: 100%;
    height: 48px;
    background: url(https://img21.shop-pro.jp/PA01416/008/etc/clip_bk.png) #ccc no-repeat center center;
    background-size: 72px;
    border: none;
}

.favorite-button.fav-items {
    background-image: url(https://img21.shop-pro.jp/PA01416/008/etc/clip_wh.png);
    background-color: #333;
}

.favorite-button-list {
    display: block;
    width: 30px;
    height: 30px;
    background: url(https://img21.shop-pro.jp/PA01416/008/etc/clip_gy.png) no-repeat 5px 5px;
    background-size: 60px;
    border: none;
    position: absolute;
    bottom: 7px;
    right: 7px;
}

.favorite-button-list.fav-items {
    background-image: url(https://img21.shop-pro.jp/PA01416/008/etc/clip_bk.png);
}

.relation {
    display: none;
}

.sns_btn li {
    display: inline-block;
}

.sns_btn .twitter {
    position: relative;
    top: -1px;
}


/************************************************************************************************ 
	SP checked
************************************************************************************************/


/************************************************************************************************ 
	SP footer
************************************************************************************************/

footer {
    background: url("https://img21.shop-pro.jp/PA01416/008/etc/store_appearance.jpg") no-repeat center / cover;
    min-height: 600px;
    position: relative;
}

footer::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
    background: rgba(0, 0, 0, .5);
}

footer .box {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 20px 16px;
}

footer a {
    color: #fff;
}

#shopinfo {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    text-align:center;
}

#shopinfo dt {
    line-height: 2.7rem;
    font-size: 1.4rem;
    font-weight: 600;
}

#shopinfo dd {
    font-size: 1.4rem;
    margin-top: 4px;
    margin-bottom: 10px;
}

#shopinfo a {
    border: solid 1px #fff;
    padding: 4px 8px;
    font-size: 1.4rem;
    display: inline-block;
    margin-top: 8px;
}

#shopinfo .nl{
	text-align:center !important;
}

#sns {
    text-align: center;
}

#sns li {
    display: inline-block;
}

address {
    position: absolute;
    bottom: 10px;
    left: 16px;
    right: 16px;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: center;
}

address p {
    margin: 0;
    text-align: center;
}

address ul {
    margin: 0 0 10px;
}


/************************************************************************************************ 
	SP 特定商取引
************************************************************************************************/

#delivery br {
	display: none;
}
#specific dt,
#resharp dt{
	padding-bottom: 10px;
	margin: 0 -10px 20px;
	text-indent: 10px;
	border-bottom: solid 5px #fff;
}

#specific .shipping-price{
	margin: 20px 0;
}
#specific .shipping-time{
	margin-top: 20px;
}

#specific .alertBox1,
#resharp .alertBox1{
	background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

#specific .catch {
    margin: 20px 16px;
}

#specific #specific-menu,
#specific dl,
#specific #about div,
#resharp div,
#privacy .nl {
    padding: 20px 16px;
    background: #f2f2f2;
}

#privacy .nl {
    margin-bottom: 0;
}

#privacy h2.sub {
    font-weight: normal;
}

#specific dd,
#resharp dd {
    margin-bottom: 24px;
}

#specific dd li,
#resharp .alertBox1 li {
    margin-left: 1em;
    list-style: disc outside;
}


/**
	問い合わせ
	**/

#logo_img {
    margin: 0 !important;
    padding: 16px 0 !important;
}

#logo_img a {
    display: block !important;
}

#logo_img img {
    width: 120px !important;
}

h1.tit_contact {
    font-size: 1.0rem !important;
}


/************************************************************************************************ 
	SP ???
************************************************************************************************/

h1.txt_28 {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    border: none;
}

.table th,
.table td {
    font-size: 1.4rem;
    font-weight: normal;
}

.pad_20 p.txt_c a.btn {
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    background: #ccc;
}


/* PC・TABLET */

@media (min-width: 768px) {
    /* ~768px */
    #contents {
        padding-left: 0;
    }
    [class*="col-sm-"] {
        padding: 0;
    }
    nav ul {
        flex-flow: row;
        justify-content: flex-end;
    }
    #hamburger {
        display: none;
    }
    #header-box .active,
    #header-box .category:hover {
        background-color: #f2f2f2;
    }
    .check:not(:checked)~#header-box {
        overflow: visible;
    }
    .check:checked~#header-box {
        height: 50px;
    }
    #header-box .category {
        border-top: 0;
    }
    .mobile-menu {
        margin-right: auto;
    }
    .dropdown {
        height: 50px;
    }
    .dropdown:hover>ul {
        position: absolute;
        left: 0;
        top: 50px;
        padding: 0;
    }
    .dropdown>ul {
        display: none;
    }
    .dropdown>ul .category {
        padding: 5px 10px;
    }
    .dropdown>ul .category a {
        white-space: nowrap;
    }
    .icon-b {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_bk.png");
    }
    .icon-w {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_wh.png");
    }
}


/************************************************************************************************ 
	PC 
************************************************************************************************/

@media (min-width: 980px) {
    /************************************************************************************************ 
	PC 共通
************************************************************************************************/
    .br {
        display: block;
    }
    #news h2,
    #pickup h2,
    #checked h2,
    #shopinfo h2,
    #specific h2,
    #resharp h2,
    #privacy h2,
    #itemlist h2,
    #support h2,
    .together-block h2,
    .listpage h2,
    .allitems {
        font-size: 2.4rem;
    }
    #logo {
        background: url(https://img21.shop-pro.jp/PA01416/008/etc/logo.png) no-repeat 15px center / 90px;
    }
    .icon-b,
    .icon-w {
        -webkit-background-size: 220px;
        background-size: 220px;
    }
    .icon-lg-b,
    .icon-lg-w {
        -webkit-background-size: 220px;
        background-size: 220px;
    }
    /************************************************************************************************ 
	PC hover
************************************************************************************************/
    a:hover {
        color:#000;
    }
    #itemlist .group-list-s a:hover,
    .thumb:hover,
    .allitems:hover,
    .thumb span:hover,
    #specific #specific-menu li a:hover,
    footer .map:hover,
    footer .mail:hover{
	    text-decoration: none;
    }
    
    #itemlist .group-list-s a:hover,
    #specific #specific-menu li a:hover {
        border-color: #232323;
    }
    .thumb:hover {
        background: #f2f2f2;
    }
    .btn-addcart:hover {
        background-color: #ccc;
        color: #1b1b1b;
    }
    .btn-addcart:hover i {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_bk.png");
    }
    footer .map:hover,
    footer .mail:hover {
        background: #fff;
        color: #333;
    }
        .thumbnaillist li a:hover {
    opacity: 0.8;
}

.thumbnaillist li a:active {
    opacity: 0.8;
}


/* IE用 ↓*/

.thumbnaillist li a:hover img {
    filter: alpha(opacity=80);
}
    /************************************************************************************************ 
	PC ナビ
************************************************************************************************/
    nav {
        padding: 0 5%;
    }
    nav #category {
        padding: 0;
        border: none;
    }
    nav #logo {
        background-position-x: 1px;
    }
    nav .category-list {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        padding: 18px 16px;
        display: inline-block;
    }
    nav .search-query {
        height: 28px;
        color: #fff;
        background: none;
        border-bottom: solid 1px #fff;
        border-radius: 0 !important;
    }
    nav #search {
        margin-top: 0;
    }
    nav #search form {
        margin: 0 5px 11px 0px;
    }
    nav .icon-menu {
        padding: 13px 4px;
    }
    nav .icon-lg-b.icon-search {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_wh.png");
        background-position: -145px 6px;
    }
    nav .icon-lg-b.icon-help,
    nav .icon-lg-w.icon-help {
        background-position: -123px 4px;
    }
    nav .icon-lg-b.icon-user,
    nav .icon-lg-w.icon-user {
        background-position: -72px 4px;
    }
    nav .icon-lg-b.icon-cart,
    nav .icon-lg-w.icon-cart {
        background-position: -98px 4px;
    }
    .glass {
        height: 28px !important;
        width: 28px !important;
        background-size: 220px !important;
    }
    #category {
	    margin-right: 18px;
    }
    #search {
        text-align: right;
    }
    .icon-clip {
    background-size: 52px;
    background-position: 3px 4px;
}
    
    /************************************************************************************************ 
	PC トップページ
************************************************************************************************/    

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 16px;
  width: 100%;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #fff;
  text-indent: -9999px;
  display: block;
  width: 48px;
  height: 8px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-controls-direction{
	display: block;
}

.bx-wrapper .bx-prev span {
  left: 20px;
  background: url('https://img21.shop-pro.jp/PA01416/008/etc/slider.png') no-repeat 0 0;
}
.bx-wrapper .bx-next span {
  right: 20px;
  background: url('https://img21.shop-pro.jp/PA01416/008/etc/slider.png') no-repeat -30px 0;
}
.bx-wrapper .bx-prev:hover span,
.bx-wrapper .bx-prev:focus span,
.bx-wrapper .bx-next:hover span,
.bx-wrapper .bx-next:focus span {
  background-position-y:-48px;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 0;
  outline: 0;
  display: block;
  width: 70px;
  height: 100%;
  z-index: 999;
}

.bx-wrapper .bx-controls-direction a span {
	position: absolute;
  top: 50%;
  margin-top: -24px;
  outline: 0;
  display: inline-block;
  width: 18px;
  height: 48px;
  background-size: 48px;
  text-indent: -9999px;
	
}    
    
    .slider {
  position: relative;
  left: 20vw; /* (100vw - SlideWidth) / 2 */ /* 20180210 変更 */
  overflow: visible !important;
}

.slide {
  width: 60vw !important;
}

.slide a {
  width: 80%;
  height: auto;
  margin-left: auto;a
  margin-right: auto;
}
    .thumb span.store_name{
	    padding: 0;
    }


.slide p{
	position: absolute;
	bottom: 24px;
	right: 24px;
	width: 29%;
	padding: 16px;
	background: rgba(0,0,0,.2);
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: justify;
	font-size: 2.8rem;
	font-weight: 200;
	color: #fff;
	display: ;
}

#pickup .row{
	margin: 0 !important;
}

#top_img .pop-pc{
	display: block !important;
}
#top_img .pop-sp{
	display: none;
}
    
    /************************************************************************************************ 
	PC カテゴリーページ
************************************************************************************************/
 
    #itemlist .topicpath-nav {
        padding: 4px 5% !important;
    }
    #itemlist .thumb p {
        height: auto;
    }
    #itemlist .group-list-s {
        padding: 3% 12% !important;
    }
    #itemlist .group-list-s li {
        padding: 0 2px;
    }
    #itemlist .expl {
        display: ;
    }
    .favorite-button-list {
        bottom: 24px;
    }
    .listpage .txt2 {
        background: none !important;
        padding: 16px 5% !important;
    }
    .listpage .expl {
        float: right;
        margin-top: 32px;
    }
    .listpage ul {
        padding: 0;
    }
    
    .thumb-list-box .thumb-list{
	    min-height: 250px;
    }
    /************************************************************************************************ 
	PC 商品ページ：詳細
************************************************************************************************/
    .topicpath-nav {
        padding: 4px 5%;
    }
    .contour {
        margin-left: 40px;
        margin-right: 40px;
    }
    #product_detail img {
        margin-bottom: 32px;
    }
    .catch,
    .subcatch {
        font-size: 2.4rem !important;
    }
    .subcatch {
        margin-bottom: 24px;
    }
    .nl {
        margin-bottom: 32px;
    }
    .br-pc {
        display: block;
    }
    .br-sp {
        display: none;
    }
    #product_detail {
        padding: 0 0 0 5% !important;
        margin-bottom: 120px;
    }
    .mod_thumbnail {
        position: relative;
    }
    .mainimglist {
        width: 75%;
    }
    .mainimglist img {
        width: 100%;
    }
    .thumbnaillist {
        position: absolute;
        width: 25%;
        top: 0;
        right: 0;
    }
    
    
    /* 組み合わせて使いたい（together-block）
-----------------------------------------*/

together-block.pc{
	display: block;
}

.together-block.sp{
	display: none;
}

#product_detail .together-block img{
	margin-bottom: 0;
}
    
    
/************************************************************************************************ 
	PC 商品ページ：カート
************************************************************************************************/
    #cart {
        position: fixed;
        right: 0;
        top: 120px;
        padding: 0 5% 240px !important;
    }
    .atc {
        padding-left: 0 !important;
    }
    .cart-clip .col{
	    float: right;
    }
    .option-name {
        text-align: right;
        line-height: 48px;
        padding-right: 5% !important;
    }
    #cart .input-prepend.input-append {
        padding-right: 5% !important;
    }
    #cart .input-prepend ul {
        right: 18%;
    }
    #cart .icon-b,
    #cart .icon-w {
        -webkit-background-size: 312px;
        background-size: 312px;
    }
    #cart .icon-lg-b,
    #cart .icon-lg-w {
        -webkit-background-size: 312px;
        background-size: 312px;
    }
    .option-box {
        height: 48px;
    }
    #clip .thumb p {
        height: auto;
        padding: 0 10px 30px;
    }
    h1.pad_l_10 {
        display: none;
    }
    /************************************************************************************************ 
	PC checked
************************************************************************************************/
    #checked {
        float: left;
    }
    #checked .col-lg-1 {
        width: calc(100% / 9); /* 33.3333333…％ */
    display: flex;
}
    }
    
    /************************************************************************************************ 
	PC footer
************************************************************************************************/
    #specific #specific-menu,
    #specific dl,
    #specific #about div,
    #resharp div,
    #privacy .nl {
        padding: 40px 12% !important;
        margin-bottom: 0;
    }
    #specific #specific-menu {
	    overflow: hidden;
    }
    #specific #specific-menu li{
	    padding: 0 2px;
    }
    #specific #specific-menu ul{
	    clear: both;
    }
    
    
    #specific #page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 3%;
  bottom: 3%;
  background: #fff;
  opacity: 0.6;
  border-radius: 30px;
  z-index: 900;
}
#specific #page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
  text-align: center;
}
#specific #page_top a::before{
  font-weight: 600;
  content: 'TOP';
  font-size: 1.4rem;
  line-height: 60px;
  color: #232323;
  margin: auto;
}    
    
    
    
    
    
    
    
    
    
    
    footer .box {
        padding: 40px 5% !important;
    }
    footer .nl {
        line-height: 2.7rem;
    }
    footer .icon-lg-b,
    footer .icon-lg-w {
        background-size: 300px;
    }
    footer .icon-lg-w.icon-ig {
        background-position: -69px 0 !important;
    }
    footer .icon-lg-w.icon-fb {
        background-position: 0 !important;
    }
    footer .icon-lg-w.icon-tw {
        background-position: -34px 0 !important;
    }
}


/*
-webkit-background-size: 312px;
        background-size: 312px;
*/


/*
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .icon-b,
    .icon-w {
        -webkit-background-size: 312px;
        background-size: 312px;
    }
    .icon-lg-b,
    .icon-lg-w {
        -webkit-background-size: 312px;
        background-size: 312px;
    }
    .icon-b {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_bk.png");
    }
    .icon-w {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_wh.png");
    }
    .icon-lg-b {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_bk.png");
    }
    .icon-lg-w {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_wh.png");
    }
}

@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 768px) and (min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min-resolution: 192dpi), only screen and (max-width: 768px) and (min-resolution: 2dppx) {
    .icon-b {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_bk.png");
    }
    .icon-w {
        background-image: url("https://img21.shop-pro.jp/PA01416/008/etc/icon_wh.png");
    }
}
*/