@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    word-break: break-all;
}

img[width="0"],img[width="1"]{
    display: none;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{
    display: block;
}

body{
    line-height: 1;
    position: relative;
}

ol, ul{
    list-style: none;
}

blockquote, q{
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after{
    content: "";
    content: none;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
}

pre{
    font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
    white-space: pre-wrap;
}

body{
    font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
    font-size: 16px;
    background-color: #ffffff;
    line-height: 1.6;
}

a{
    color: #000;
    text-decoration:  none;
}

a:hover{
    text-decoration: underline;
}

a:hover img{
    opacity: 0.8;
}

.wrapper{
    width: 100%;
    overflow: hidden; /* 親要素の外にはみ出た部分を隠す */
}

.head{
    background-color: #eee;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 2%;
    z-index: 10000;
}

.logo{
    margin-right: auto;
    max-width: 20%;
    width: 20%;
}

.logo img{
    max-width: 100%;
    max-height: 140px;
}

.navbar{
    width: 60%;
    margin-left: 2%;
}

.navbar-list{
    display: flex;
}

.navbar-list-main{
    width: 20%;
    font-size: 16px;
    font-weight: bold;
}


.navbar-list-main-link{
    display: block;
    position: relative;
    padding: 40px 0; /* 上下のpaddingを調整 */
    text-align: center;
    word-wrap: break-word;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
    line-height: 40px; /* 全てのメニューの高さを統一 */
}

.navbar-list-main-link:hover{
    background-color: #FFF;
    text-decoration: none;
    padding: 40px 0; /* 上下のpaddingを調整 */
}

.navbar-list-parent:hover{
    background-color: #FFF;
}

.navbar-list-parent:hover .navbar-list-main-link {
    background-color: #FFF; /* 親要素のホバー時にも背景色を白く */
}

.action{
    width: 200px;
    margin: 0 0 0 24px;
    position:  relative;
    z-index: 10000;
}

.action-search-input{
    border: solid 1px #CCC;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
}

.action-search-button{
    position: absolute;
    top: 2px;
    right: 4px;
    padding: 4px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.action-search-button i{
    font-weight: bold;
    color: #999;
}

.action-button{
    margin-bottom: 16px;    
}

.action-button-list{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.action-button-list i{
    flex-flow: row;
    font-size: 28px;
}

.button-link{
    background-color: #CCC;
    padding: 9px 10px 4px;
    border-radius: 50%;
    display: block;
    margin-left: 8px;
}

.action-button-list a:hover{
    background-color: #FFF;
}

.action-search{
    position: relative;
}

.button-sns{
    position: relative;
}

.button-cart{
    position: relative;
}

.cart-badge{
    display: inline-block;
    background: #EF4933;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
    line-height: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 12px;
}

.navbar-sub{
    display: none;
}

.navbar-sub-in{
    position: absolute;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    top: 120px;
    left: 0;
    width: 100%;
    background-color: #FFF;
    padding: 40px 40px 24px;
    box-sizing: border-box;
    z-index: 10000;
}

.navbar-sub-list{
    flex-basis: 160px;
    margin: 0 16px 16px 0;
}


.navbar-sub-list-title{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 16px;
}

.navbar-sub-list-data{
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: normal;
}

.navbar-sub-list-data a{
    color: #000;
}

/* COMPANYメニューのみを対象にする */
.navbar-list-main.company .navbar-sub-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* 左寄せに変更 */
    align-items: center; /* 垂直方向の中央寄せを追加 */
    flex-wrap: nowrap;
}

.navbar-list-main.company .navbar-sub-list-title, 
.navbar-list-main.company .navbar-sub-list-data {
    margin: 0 40px; /* 余白を調整 */
    white-space: nowrap; /* 改行しないようにする */
}




/* main */
.main-visual{
    text-align: center;
}

#M_slider{
    height: 100%;
}
.main-visual li{
    display: flex;
    align-items: center;
    height: 100%;
}

.main-visual a,{
    margin: auto;
　　max-width: 100%;
}

.bx-wrapper {
  border: none !important;
}

.main-visual img {
    margin: auto;
    width: 100%;
}

.main-contents{
    max-width: 1100px;
    margin:  0 auto;
    padding: 0 20px;
}

.item-info{
    display: flex;
    flex-direction: column;
}

.item-info-name{
    font-weight: bold;
}

.item-info-price{
    font-weight: normal;
}

.item-info-sale {
    color: #E03F3D;
}

.item-price-down {
    font-size: 14px;
    margin-left: 8px;
}

.item-list{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.item-list li{
    margin: 0 8px 24px;
}

.pickup-list li{
    width: calc(100% / 2 - 16px);
}


.item-list-img {
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    width: 100%; /* 親要素の幅 */
    padding-top: 120%; /* 縦の長さを10%短くした新しい縦横比 */
    overflow: hidden; /* 親要素の外にはみ出た部分を隠す */
}

.item-list-img img {
    position: absolute; /* 親要素内に絶対配置 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 表示したい範囲(100%) */
}











.item-soldout{
    position: absolute; /* 絶対配置を使用 */
    top: 50%; /* 親要素の上から50%の位置に配置 */
    transform: translateY(-50%); /* 上下中央に揃える */
    line-height: 32px; /* 行の高さを32pxに設定 */
    display: inline-block; /* インラインブロック要素として表示 */
    background: rgba(255,255,255,0.75); /* 背景色を半透明の白に設定 */
    left: 0; /* 親要素の左端に配置 */
    width: 100%; /* 幅を親要素の100%に設定 */
    text-align: center; /* テキストを中央揃えに設定 */
}



.newitems-list li{
    width: calc(100% / 4 - 16px);
}

.ranking-list li{
	width: calc(100% / 4 - 16px);
}

.checked-list li{
	width: calc(100% / 4 - 16px);
}

.item-ranking-num{
	position: absolute;
	left: 8px;
	top: 8px;
	background: #57886C;
	color: #fff;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}


.section-title{
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    margin: 60px 0 40px;
    position: relative;
}

.section-title-checked,
.section-title-newitems,
.section-title-pickup{
    text-align: center;
    font-size: 36px;
	margin: 120px 0 50px;
    position: relative;
}

.item-view-button{
    display: block;
    width: 300px;
    padding: 16px 48px;
    margin: 40px auto 0;
    text-align: center;
    border: solid 3px #000;
    font-weight: bold;
    box-sizing: border-box;
}

.item-view-button:hover{
    background: #000;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
}

.item-view-btn {
    text-align: center;
    margin-top: 40px;
}

.item-view-btn a {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    background-color: #999;
    border-radius: 5px;
    padding: 16px 80px;
}

.item-view-btn a:hover {
    text-decoration: none;
    background-color: #AAA;
}

.search-result{
    margin-bottom: 48px;
    text-align: center;
}

.search-count span{
	margin: 0 2px;
}

.pager-wrap {
    text-align: center;
    margin-top: 80px;
}

.pager-list {
    display: inline-block;
    font-weight: bold;
}

.pager-list a,
.pager-selected{
    display: inline-block;
    padding: 0 16px;
}

.pager-list a:hover {
    color: #666;
    text-decoration: none;
}

.pager-selected {
    color: #ccc;
}

.pager-button a {
    display: block;
    color: #FFF;
    font-size: 12px;
    vertical-align: 1px;
    background-color: #000;
    padding: 6px 10px;
}

.pager-button a:hover {
    color: #FFF;
    background-color: #666;
}

.breadcrumb {
    margin-top: 40px;
}

.breadcrumb-list {
    display: inline-block;
    font-size: 14px;
}

.breadcrumb-list:not(:last-child):after {
    content: ">";
    color: #666;
    margin: 0 4px 0 8px;
}

.main-contents-detailitem {
    margin-top: 3%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.item-image {
    margin-top: 5%;
    margin-bottom: 5%;
    width: 50%;
}


.item-image-list {
	margin-bottom: 10px;
	line-height: 0;
	display: flex;
	align-items: center; }
.item-image-list img {
	max-width: 100%; }
.item-image-large {
    position: relative	;
	margin: 0 auto 1rem; 
	padding-bottom: 1rem; }
.item-image-large .item-image-list {
    position: absolute;
	top: 60%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-50%) translateY(-50%); }
.item-image-small {
    display: flex;
    flex-wrap: wrap;
    position: relative;
   margin-top: 1rem; /* 空白を減らすために調整 */
    margin-bottom: 5%;
}

.item-image-small .item-image-list {
	margin: 2px;
	padding: 2px;
	width: 100px;
	height: 134px; 
}


.item-none-text {
    text-align: center;
    margin-top: 16px;
    font-size: 20px;
}

.item-detail {
width: 46%;
padding-left: 3%;
box-sizing: border-box;
}



.item-brand-title {
    font-size: 18px;
    font-weight: bold;
}

.item-detail-title {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.4;
    margin-top: 8px;
}

.item-default-price-text{
    margin-top: 14px;
    margin-bottom: -14px;
}

.item-default-price {
    font-size: 18px;
    text-decoration: line-through;
    margin-right: 4px;
}

.item-price-text {
    font-size: 24px;
    margin-top: 14px;
}

.item-price {
    font-size: 24px;
    color: #6e0101;
    margin-top: 14px;
}


.item-detail-table {
    margin-top: 40px;
}

.item-detail-table th {
    font-weight: normal;
    text-align: left;
    padding: 10px 0;
}

.item-detail-table td {
    padding: 10px 0;
}

.item-detail-table td:before {
    content: "：";   
}

.item-detail-num {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    background-color: #F1F1F1;
    border: 1px solid #999;
    padding: 10px;
    background: #fff;
    font-size: 15px;
}

.item-detail-label {
    display: inline-block;
    margin-left: -4px;
    position: relative;
}

.makeshop-option-wrap{
    padding: 10px 0;
}

.makeshop-option-select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background-color: #F1F1F1;
    border: 1px solid #999;
    padding: 10px;
    background: #fff;
    font-size: 15px;
}

.makeshop-option-select-wrap{
    position: relative;
    display: block;
}

.makeshop-option-select-wrap::after {
    content: "▼";
    font-size: 12px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.item-detail-text {
    font-size: 14px;
    line-height: 2.2;
    margin-top: 40px;
}

.item-stock{
    margin-bottom: 16px;
}

.item-stock-small{
    color: #E03F3D;
}

.item-detail-addcart {
    margin-top: 48px;
}

.item-detail-addcart a {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 3px solid #57886C;
    border-radius: 5px;
    padding: 20px 0;
    background: #57886C;
    color: #fff;
    box-sizing: border-box;
}

.item-detail-addcart a:hover {
    color: #57886C;
    border: 3px solid #57886C;
    background: inherit;
}

.item-detail-soldout {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #CCC;
    border: 3px solid #CCC;
    border-radius: 5px;
    padding: 24px 0;
}

.item-detail-addcart .on{
	display: inline-block;
}

.item-detail-addcart .off{
	display: none;
}

.item-cart-table {
    width: 100%;
    border-bottom: 1px solid #999;
}

.item-cart-table th {
    font-size: 18px;
    background-color: #DADADA;
    padding: 16px 0;
}

.item-cart-table td {
    vertical-align: middle;
    padding: 32px 16px;
}

.item-cart-table tbody tr {
    border-top: 1px dashed #999;
}

.item-cart-table tbody tr:first-child {
    border: none;
}

.item-cart-image {
    float: left;
    margin-right: 16px;
}

.item-cart-image a {
    display: table-cell;
    width: 80px;
    height: 80px;
    vertical-align: middle;
}

.item-cart-image img {
    max-width: 80px;
    max-height: 80px;
}

.item-cart-title {
    font-size: 18px;
    white-space: normal;
}

.item-cart-options {
    margin-top: 8px;
    font-size: 14px;
}

.item-cart-label {
    display: inline-block;
    position: relative;
    margin-right: 16px;
}

.item-cart-label:after {
    content: "▼";
    font-size: 12px;
    position: absolute;
    top: 8px;
    right: 10px;
}

.item-cart-select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 35px;
    background-color: #FFF;
    border: 1px solid #999;
    padding: 6px 30px 6px 6px;
}

input[name="it