@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------------------------

	item-list　商品一覧

-----------------------------------------------------------------*/


/*------------------------------------------------------------------------------
  ソート
------------------------------------------------------------------------------*/
.item-sort {
    width: 90%;
    margin: 0 auto 2rem;
    background: #f5f5f5;
    border-radius: 15px;
    padding: 3rem 5rem;
    box-sizing: border-box;
}

.item-sort dl {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.item-sort dl:not(:last-child) {
    margin-bottom: 1.8rem;
}

.item-sort dl dt {
    width: 140px;
    font-size: 1.6rem;
    color: #5c5c5c;
    font-weight: bold;
    padding-right: 20px;
    margin-right: 10px;
    border-right: 2px solid #e3e3e3;
    text-align: center;
    box-sizing: border-box;
    display:flex;
	justify-content: center;
	align-items: center;
}

.item-sort dl dd {
    width: calc(100% - 150px);
    font-size: 1.5rem;
}


.item-sort .sort-keyword input[type="text"] {
    width: calc(100% - 2rem);
}

.item-sort .sort-checkbox ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 10px;
}
.item-sort .sort-checkbox ul li span {
    color: #5c5c5c;
}



@media screen and (max-width: 810px) {
    .item-sort {
        width: 100%;
    }
    
    .item-sort dl dt {
        width: 90px;
    }
    
    .item-sort dl dd {
        width: calc(100% - 100px);
    }
    
    .item-sort .sort-price input[type="number"] {
        margin: 5px 1rem;
    }
}

@media screen and (max-width: 480px) {
    .item-sort {
        width: 100%;
        padding: 2.5rem;
    }
    
    .item-sort dl dt {
        width: 100%;
        padding: 0 0 5px;
        margin: 0 0 10px;
        border-right: none;
        border-bottom: 2px solid #e3e3e3;
    }
    
    .item-sort dl dd {
        width: 100%;
    }
}










.item-sort input,
.item-sort select {
	padding: 10px;
	border: 1px solid #9c9fab;
	box-sizing: border-box;
	transition: all 0.1s ease-out;
	font-size: 15px;
	border-radius: 5px;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 500;
}

.item-sort input:focus,
.item-sort select:focus {
	background-color: #ededf9;
	border: 1px solid #7576b7;
	z-index: 10;
    outline: 0;
}

.item-sort label {
    cursor: pointer;
}

::placeholder {
  color: #797979;
}


@media screen and (max-width: 810px) {
	/* iOSでのデフォルトスタイルをリセット */
	.item-sort input[type="submit"],
	.item-sort input[type="button"] {
	  border-radius: 0;
	  -webkit-box-sizing: content-box;
	  -webkit-appearance: button;
	  appearance: button;
	  border: none;
	  box-sizing: border-box;
	  cursor: pointer;
	}
	.item-sort input[type="submit"]::-webkit-search-decoration,
	.item-sort input[type="button"]::-webkit-search-decoration {
	  display: none;
	}
	.item-sort input[type="submit"]::focus,
	.item-sort input[type="button"]::focus {
	  outline-offset: -2px;
	}
	.item-sort input[type=text],
	.item-sort input[type=select],
	.item-sort input[type=number],
	.item-sort textarea {
	  font-size: 16px;
	}
    
    
    .item-sort label {
        font-size: 1.5rem;
    }
}


/*ラジオボタン*/
.item-sort input[type="radio"]{
	border: none;
	vertical-align: middle;
}
.item-sort .type-radio li label {
	display: inline-block;
	word-break: break-all;
	cursor: pointer;
}
input[type="radio"]:checked + span {
    color: #ff2654;
}

.item-sort li label input[type="radio"] + span {
	position: relative;
	padding: 0 0 0 25px;
	letter-spacing: 0;
	display: inline-block;
	text-align: left;
    min-height: 20px;
}
.item-sort li label input[type="radio"] + span::before {
  	border: 1px solid #e1e1e1;
	background: #e1e1e1;
}
.item-sort label input[type="radio"] {
  display: none;
}
.item-sort label input[type="radio"] + span::before {
  content: '';
  display: block;
  background-color: transparent;
  width: 18px;
  height: 18px;
  border: 2px #78909c solid;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  top: 1px;
  left: 0;
  margin: auto;
}
.item-sort li label input[type="radio"]:checked + span::after {
  content:"";
  display: block;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff2654;
  position: absolute;
  top: 4px;
  left: 3px;
  margin: auto;
}
.item-sort li label input[type="radio"]:checked + span::before {
    border: 1px solid #e8d8db;
    background: #e8d8db;
}

/*単一テキスト*/
.item-sort input[type="text"]{
	width: 9em;
	margin: 0 1rem;
}

@media screen and (max-width: 480px) {
	.item-sort input[type="text"]{
		width: calc(100% - 20px);
	}
}


/*数字*/
.item-sort input[type="number"]{
	width: 9em;
	margin: 0 1rem;
}


/*チェックボックス*/
.item-sort .sort-checkbox input[type="checkbox"]:checked + span {
    color: #1b4597;
}

.item-sort .sort-checkbox label input[type="checkbox"] + span {
	position: relative;
	padding: 0 0 0 30px;
	display: inline-block;
	line-height: 1.2em;
	margin: 0 1rem;
}
.item-sort .sort-checkbox label input[type="checkbox"] {
	position: absolute;
	display: none;
}
.item-sort .sort-checkbox label input[type="checkbox"] + span::before {
	content: '';
	display: block;
	background-color: transparent;
	width: 20px;
	height: 20px;
	border: 1px #9aa9b0 solid;
	border-radius: 3px;
	background: #FFF;
	box-sizing: border-box;
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.item-sort .sort-checkbox label input[type="checkbox"]:checked + span::before {
	border-color: #1b4597;
	background: #1b4597;
}

.item-sort .sort-checkbox label input[type="checkbox"]:checked + span::after {
	content: "";
	display: block;
	box-sizing: border-box;
	width: 7px;
	height: 12px;
	border-bottom: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
	position: absolute;
	top: -1px;
	bottom: 1px;
	left: 7px;
	margin: auto;
}


.item-sort .sort-checkbox label input[type="checkbox"]:disabled + span::before {
	background: #EAEAEA;
}


/*----sort-tag----*/
.item-sort .sort-tag.block {
    display: flex;
}

.item-sort .sort-tag label input[type="checkbox"] {
  display: none;
}

.item-sort .sort-tag ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 7px;
    padding: 0 1rem;
}

.item-sort .sort-tag label {
    display: block;
}

.item-sort .sort-tag label span {
    border: 2px solid var(--main-color);
    box-sizing: border-box;
    display: inline-block;
    padding: .7rem 2rem;
    border-radius: 5px;
    background: #FFF;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--main-color);
    transition: var(--transition);
}

.item-sort .sort-tag label input[type="checkbox"]:checked + span {
    color: #FFF;
    background: var(--main-color);
}

.item-sort .sort-tag label span:hover {
    background: #e6e6f4;
    
}

@media screen and (max-width: 810px) {
    .item-sort input[type="number"]{
        width: 5em;
    }
    
    .item-sort .sort-print ul li {
        min-height: 20px;
        line-height: 20px;
    }
    .item-sort .sort-print ul li:not(:last-child) {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 480px) {
    .item-sort .sort-tag ul {
        padding: 0;
    }
}



/*----sort-print----*/
.item-sort .sort-print ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    margin: 0 1rem;
}

.item-sort .sort-print ul li {
    margin-right: 20px;
}



/*----btn-cont----*/
.item-sort .btn-cont {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    width: 80%;
    margin: 3rem auto 0;
    gap: 10px 0;
}

.item-sort .btn-cont li {
    width: 48%;
}


.item-sort .btn-cont li button,
.item-sort .btn-cont li a {
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    /* ▲ reset用*/
        
    border: 1px solid #191919;
    border-radius: 5px;
    display: block;
    text-align: center;
    padding: 10px 20px;
    font-size: 1.7rem;
    width: 100%;
    letter-spacing: .1em;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.item-sort .btn-cont .clear-btn a {
    color: #828282;
    box-sizing: border-box;
    font-size: 1.5rem;
    height: 100%;
}
.item-sort .btn-cont .search-btn button {
    font-weight: bold;
    color: #FFF;
    background: #191919;
}

.item-sort .btn-cont .clear-btn a:hover {
    opacity: 1;
    background: #fff;
}
.item-sort .btn-cont .search-btn button:hover {
    background: #425a96;
}

@media screen and (max-width: 810px) {
    .item-sort .btn-cont {
        width: 100%;
        margin: 2rem auto 0;
    }
}

@media screen and (max-width: 480px) {
    .item-sort .btn-cont {
       flex-direction:column-reverse;
    }
    
    .item-sort .btn-cont li {
        width: 100%;
    }
}



/*------------------------------------------------------------------------------
  並べ替え
------------------------------------------------------------------------------*/
.sort-list {
    width: 90%;
    margin: 0 auto 5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.sort-list dt {
    width: 100px;
    font-size: 1.6rem;
    color: #5c5c5c;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    display:flex;
	justify-content: center;
	align-items: center;
}
.sort-list dd {
    width: calc(100% - 100px);
}

.sort-list dd ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 0;
}

.sort-list dd ul li:not(:last-child) {
    border-right: 1px solid #b9b9b9;
}

.sort-list dd ul button {
    display: block;
    width: fit-content;
    padding: 0 2rem;
    font-weight: bold;
    color: #3c3c3c;
    background: #FFF;
    border: none;
    border-radius: 100px;
    font-size: 1.4rem;
    transition: all 0.3s ease-out;
}

.sort-list dd ul button.select {
    color: #425a96;
}

.sort-list dd ul button.select:hover {
    color: #425a96;
}

.sort-list dd ul button:hover {
    cursor: pointer;
    color: var(--main-color);
}

@media screen and (max-width: 810px) {
    .sort-list {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .sort-list {
        margin-bottom: 3rem;
    }
    
    .sort-list dt {
        width: 100%;
        padding: 0 0 5px;
        margin: 0 0 10px;
        border-right: none;
        border-bottom: 2px solid #e3e3e3;
    }

    .sort-list dd {
        width: calc(100% + 40px);
        margin: 0 -20px;
        overflow: hidden;
    }
    
    .sort-list dd ul {
        overflow-x: scroll;
        flex-wrap: nowrap;
        padding: 0 20px 10px;
    }
    
    .sort-list dd ul li {
        flex-shrink: 0;
    }
}

/*------------------------------------------------------------------------------
  商品一覧
------------------------------------------------------------------------------*/
.item-list {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 4.5rem calc((100% - 800px)/3);
    margin-bottom: 6rem;
}

.item-list * { font-weight: bold !important; }

.item-list > li {
    width: 200px !important;
}

@media screen and (max-width: 810px) {
    .item-list {
        gap: 4.5rem 3.5%;
    }

    .item-list > li {
        width: 31% !important;
    }
}

@media screen and (max-width: 480px) {
    .item-list {
        gap: 4.5rem 6%;
    }

    .item-list > li {
        width: 47% !important;
    }

}


.item-list .img {
    margin-bottom: 1.5rem;
    position: relative;
}
.item-list .img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background:rgba(0,195,119,0);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-out;
}

.item-list .img img {
    border: 1px solid #cacaca;
    box-sizing: border-box;
    width: 100%;
    height: auto;
}

.item-list .item-name {
    color: var(--main-color);
    font-size: 15px;
    margin-bottom: 5px;
}

.item-list .number {
    font-size: 13px;
    color: #999999;
    margin-bottom: 5px;
}

.item-list .item-price {
    display: flex;
	flex-wrap: wrap;
	align-items: first baseline;
    color: #ff0c3f;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.item-list .item-price span:last-child {
    font-size: 12px;
}

.item-list .item-price .price {
    font-size: 1.5rem;
}

.item-list .item-price .price em {
    font-size: 2.2rem;
    padding-right: 3px;
}


.item-list .item-data {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 6px; /* 縦 5px、横 6px */
    padding: 0;
    margin: 0;
    list-style: none;
    margin: auto 0 5px;
}

.item-list .item-data li {
    flex: 1 1 auto;
    min-width: 0;
    padding: 5px 10px;
    border-radius: 3px;
    text-align: center;
    font-size: 13px;
    background: #e4f5f9;
    color: #107e9b;
    box-sizing: border-box;
}

.item-list .item-data li.size {
    background: #c5edf6;
    color: #007695;
}
.item-list .item-data li.outdoor {
    background: #ffe6d4;
    color: #ff3f25;
}
.item-list .item-data li.indoor {
    background: #cef1ca;
    color: #24ab42;
}


.item-list .intro {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    font-weight: 400;
    font-weight: normal !important;
    margin-bottom: 1.5rem;
    border-top: 1px dotted #dbdbdb;
    padding-top: 1.5rem;
}

.item-list .intro br {
    display: none;
}


.item-list .day {
    color: #4f4f4f;
    padding: 3px 10px;
    border-radius: 3px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #4f4f4f;
}
.item-list .day span {
	position: relative;
	padding-left: 25px;
    line-height: 1.3;
}

.item-list .day span:before {
	content: "";
	display: block;
	width: 19px;
	height: 19px;
    -webkit-mask: url(../../_images/common/icon/car.svg) no-repeat center / contain;
	mask: url(../../_images/common/icon/car.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
    background-color: #4f4f4f;
}

@media screen and (max-width: 810px) {
    .item-list .item-data li {
        width: 48%;
    }
}

@media screen and (max-width: 480px) {
    .item-list .item-data li {
        font-size: 11px;
    }
    
    .item-list .item-name {
        font-size: 13px;
    }

}


/*hover*/
.item-list > li a {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.item-list > li a:hover {
    opacity: 1;
}

.item-list a:hover .img:before {
    background: rgba(105, 169, 225, 0.3);
}

.item-list a:hover  .item-name {
    text-decoration: underline;
    color: #358cd7;
}

/*----soldout----*/
.item-list .soldout .img:before {
    background: rgba(000, 000, 000, 0.4);
}

.item-list .soldout .img:after {
    content: "完売";
    color: #FFF;
    font-weight: bold;
    background: #E10433;
    padding: 3px 12px 17px;
    position: absolute;
    top: 0px;
    left: 1px;
    font-size: 1.8rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    writing-mode: vertical-rl;
    line-height: 1;
    transform: rotate(-7deg);
    letter-spacing: -5px;
    border-top: 6px solid #a80024;
}



/*------------------------------------------------------------------------------
  ページネーション
------------------------------------------------------------------------------*/

.sort-list + .item-pagenation ul {
    margin: 0 auto 3rem;
}

.item-pagenation ul {
    display:flex;
	justify-content: center;
    flex-flow: row wrap;
    width: 80%;
    margin: 0 auto 7rem;
    gap: 1rem;
}

.item-pagenation ul li:not(:has(a)) {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1;
}

.item-pagenation a {
    font-size: 1.4rem;
    color: #2d2d2d;
    border-radius: 3px;
    border: 1px solid #2d2d2d;
    padding: 10px 15px;
    display: block;
    box-sizing: border-box;
    width: 45px;
    text-align: center;
}

.item-pagenation .active a {
    background: #d8e3fd;
    border-color: #919cb9;
    color: #425a96;
}
.item-pagenation a:hover {
    opacity: 1;
    color: #425a96;
    border-color: #919cb9;
    background: #d8e3fd;
}


/*prev,next*/
.item-pagenation .prev a { margin-right: 1rem; }
.item-pagenation .next a { margin-left: 1rem; }

.item-pagenation .prev a,
.item-pagenation .next a {
    position: relative;
    background: #191919;
    width: 5.5rem;
    font-size: 0;
    height: 100%;
}

.item-pagenation .prev a:before,
.item-pagenation .next a:before {
    content: "";
    display: block;
    position: absolute;
    border: 2px solid;
    transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
    top: 50%;
    width: .7rem;
    height: .7rem;
}

.item-pagenation .prev a:before {
    border-color: transparent transparent #FFFFFF #FFFFFF;
    left: 55%;
}

.item-pagenation .next a:before {
    border-color: #FFFFFF #FFFFFF transparent transparent;
    left: 48%;
}

.item-pagenation .prev a:hover,
.item-pagenation .next a:hover {
    background: #2f4784;
}


/*no-link*/
.item-pagenation a.no-link {
    background: #FFF;
    border: 1px dotted #2d2d2d;
}

.item-pagenation .prev a.no-link:before {
    border-color: transparent transparent #2d2d2d #2d2d2d;
}

.item-pagenation .next a.no-link:before {
    border-color: #2d2d2d #2d2d2d transparent transparent;
}

.item-pagenation a.no-link:hover {
    background: #FFF;
    cursor: default;
}


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
    .item-pagenation {
        width: 100%;
        flex-flow: row wrap;
    }

    .item-pagenation ul {
        width: 100%;
    }
        
    .item-pagenation .number {
        order: 2;
        width: auto;
        max-width: 100%;
        padding-bottom: 15px;
    }
    
    .item-pagenation a {
        width: 40px;
        height: 37px;
        padding: 10px;
    }

    .item-pagenation a.no-link {
        height: 37px;
    }
}


/*------------------------------------------------------------------------------
  no-item
------------------------------------------------------------------------------*/
.no-item {
    background: #fff6fc;
    border-radius: 10px;
    width: fit-content;
    max-width: 90%;
    margin: 0 auto 3rem;
    padding: 5rem 8rem;
    text-align: center;
}

.no-item dt {
    color: #F719AB;
    margin-bottom: .5rem;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .1em;
}

.no-item dd {
    color: #535353;
    font-size: 1.4rem;
    font-weight: bold;
}










