@charset "utf-8";

/* パン屑ナビ */
#bread-nav {
    font-size: 15px;
    /*margin-top: 70px;*/
}
.bread-nav__list > li {
    display:inline-block;
	margin-left: 10px;
}
.bread-nav__list > li:before {
    content: '>';
	margin-right: 10px;
}
.bread-nav__list > li:first-child {
    margin-left:0;
}
.bread-nav__list > li:first-child:before {
    display: none;
}
.bread-nav__list > li a {
    color: var(--base-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#main-contents {
    margin-top: 100px;
}


.page-subtitle {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}
.intro-text {
    margin: 30px 0 50px;
    line-height: 2;
}

.page-table {
    width: 100%;
    border-collapse: collapse;
    border-top: solid 1px #ccc;
    line-height: 2;
}
.page-table th {
    width: 300px;
    font-weight: 500;
    border-bottom: solid 1px #ccc;
    padding: 10px;
    text-align: left;
    background: #f4f2f2;
    line-height: 2;

}
.page-table td {
    border-bottom: solid 1px #ccc;
    padding: 10px;
    line-height: 2;

}


@media (max-width: 815px) {

	#main-contents {
		margin-top: 50px;
	}
	#bread-nav {
		margin-top: 0;
	}
	
	.page-table th {
		width: 100px;
	}

}

/*-----------------------
item
------------------------*/
.item-detail-main {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.item-detail-main-img {
    width: 48%;
}
.item-detail-main-img .main-img {
    height: 0;
    padding-top: 100%;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    border: solid 1px #eee;
}
.item-detail-main-img .main-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*
.item-detail-main-img .thumb-img-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
*/
.item-detail-main-img .thumb-img-list .swiper-wrapper {
    flex-wrap: wrap;
}
.item-detail-main-img .thumb-img-list .swiper-slide {
    width: 18%;
    height: 0;
    padding-top: 18%;
    text-align: center;
    position: relative;
    border: solid 1px #eee;
    margin: 0 0 2.5% 2.5%;
    cursor: pointer;
    opacity: 0.5;
}
.item-detail-main-img .thumb-img-list .swiper-slide.active {
    opacity: 1;
    border: solid 2px #dd0000;
}
.item-detail-main-img .thumb-img-list .swiper-slide:nth-child(5n+1) {
    margin-left: 0;
}
.item-detail-main-img .thumb-img-list .swiper-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.thumb-img__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.thumb-img__list >li {
    width: 19%;
    height: 0%;
    padding-top: 19%;
    position: relative;
    margin: 0 0 1.25% 1.25%;
	border: solid 1px transparent;
	cursor: pointer;
	/*background: #000;*/
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.thumb-img__list >li:nth-child(5n+1) {
	margin-left: 0;
}
.thumb-img__list >li img {
    width: 100%;
    height: 100%;
	opacity: 0.5;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.thumb-img__list >li.active {
	border: solid 1px #000;
}
.thumb-img__list >li.active img {
	opacity: 1;
}

.item-detail-main-info {
    width: 52%;
    padding-left: 4%;
}
.item-detail-main-info .item-d-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.item-detail-main-info .item-d-code {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}
.item-detail-main-info .item-d-price {
	margin-top:10px;
}
.item-detail-main-info .item-d-price-main {
    color: #dd0000;
}
.item-detail-main-info .item-d-price-main .price {
    font-size: 36px;
    font-weight: 500;
}
.item-detail-main-info .item-d-price-main .price span {
    font-size: 16px;
}
.item-detail-main-info .item-d-price-main .tax {
}
.item-detail-main-info .item-d-price-deli {
    font-size: 13px;
}
.item-detail-main-info .item-d-price-deli a {
    color:#000;
}
.item-d-buy {
    margin-top: 20px;
}
.item-d-buy-quantity {
    display: inline-block;
    font-size: 13px;
}
.item-d-buy-quantity select,
.item-d-qty-input {
    height: 50px;
    font-size: 16px;
    border: solid 1px #ccc;
    border-radius: 5px;
    max-width: 50px;
    text-align: center;
}
.item-d-buy-btn {
    display: inline-flex;
	font-size: 13px;
    width: calc(50% - 55px);
    height: 50px;
    align-items: center;
    justify-content: center;
    background: none;
    color: #333;
    border: solid 1px #dd0000;
    cursor: pointer;
    vertical-align: bottom;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.item-d-buy-btn i {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right:10px;
	vertical-align:middle;
	background-image:url(../img/cmn/icon_p_cart.png);
	background-repeat:no-repeat;
	background-position: center;
	background-size: contain;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.item-d-buy-btn:hover {
    background: #dd0000;
    color: #fff;
}
.item-d-buy-btn:hover i{
	background-image:url(../img/cmn/icon_p_cart_wht.png);
}

.item-detail-main-info .item-d-desc {
	font-size: 13px;
	line-height: 2;
	margin-top:20px;
}
.item-detail-main-info .item-d-info {
	margin-top:20px;
	line-height: 2;
}
.item-detail-main-info .item-d-info table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
}
.item-detail-main-info .item-d-info table th {
	font-weight: 500;
    padding: 10px;
    text-align: left;
    width: 110px;
    background: #eee;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
	line-height: 2;
}
.item-detail-main-info .item-d-info table th span {
    font-size: 11px;
    font-weight: normal;
    display: block;
}
.item-detail-main-info .item-d-info table td {
    padding: 10px;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
	line-height: 2;
}

.item-d-caution {
    margin-top: 20px;
}
.item-d-caution p {
    color: #dd0000;
    font-size: 13px;
}


/* matome */
.matome-buy-info {
    padding: 20px;
    border: solid 2px #dd0000;
    border-radius: 5px;
}
.matome-buy-info h4 {
    color: #dd0000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
.matome-buy-info ul li {
    font-size: 16px;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: dotted 1px #ccc;
}
.matome-per-off {
    display: inline-block;
    font-size: 120%;
    color: #fff;
    background: #dd0000;
    padding: 3px 5px 4px;
    margin: 0 5px;
    line-height: 1;
}
.matome-per-tanka span {
    color: #dd0000;
    font-size: 120%;
    font-weight: 500;
}


/**/
#item-lp { 
    margin-top: 100px;
}



.item-page-html {
    margin-top: 100px;
    padding: 10px;
    border: solid 5px #F1F1F4;
}

/* custome */
.item-detail-main-info .item-saleprice {
	    margin: 0 0 10px;
}
.item-detail-main-info .item-saleprice-off {
    font-size: 15px;
    padding: 0 10px;
    margin-right: 5px;
}
.item-detail-main-info .item-saleprice-price {
	font-size: 15px;
	line-height: 1;
}

/**/
.item-group {
    margin-bottom: 70px;
}
.item-group h2 {
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 20px;
}
.cmn-item-form {
    margin: 30px 0;
}
.form-in {
    margin: auto;
    text-align: center;
}
.item-quantity {
    display: inline-block;
}
.item-quantity select {
	font-size: 15px;
	width:40px;
	height:40px;
	margin-right:10px;
	background: #eeeeee;
    border: none;
}
.item-buy {
    display: inline-block;
    padding-left: 30px;
}
.item-buy-btn {
    cursor: pointer;
    display: block;
    font-size: 17px;
    font-weight: bold;
    width: 100%;
    max-width: 340px;
    text-align: center;
    line-height: 1;
    padding: 15px 60px;
    margin: auto;
    color: #d72001;
    background: #fff;
    border: solid 2px #d72001;
    border-radius: 100px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.item-buy-btn:before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right:10px;
	vertical-align:middle;
	background-image:url(../img/cmn/icon_p_cart.png);
	background-repeat:no-repeat;
	background-position: center;
	background-size: contain;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.item-buy-btn:hover {
	color: #fff;
	background: #d72001;
}
.item-buy-btn:hover:before {
	background-image:url(../img/cmn/icon_p_cart_wht.png);
}

/**/
.products-contents-sub {
	margin-top: 100px;
}
.products-contents-rmd {
	margin-top: 70px;
}
.rmd-title {
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    margin-bottom: 50px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}
.rmd-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.rmd-list li {
	width: 23%;
	margin-left: 2.66666%;
}
.rmd-list li:first-child {
	margin-left: 0;
}
.rmd-list li a {
	display: block;
	color: #000;
}
.rmd-list li .thumb {
	margin-bottom: 20px;
}
.rmd-list li .item-price {
    color: #dd0000;
    font-size: 20px;
    font-weight: bold;
}
.rmd-list li .item-price span {
    font-size: 13px;
}

#rmd-relation .rmd-list li {
    margin: 0 0 4% 2.66666%;
}
#rmd-relation .rmd-list li:nth-child(4n+1) {
    margin-left: 0;
}


#rmd-recipe .recipe-title {
	font-weight: bold;
	color: #333;
	margin:0;
}
#rmd-recipe .recipe-date {
	font-size: 13px;
	color: #666666;
	margin:0;
}
#rmd-recipe .recipe-category {
    display: inline-block;
    color: #666;
    background: #eee;
    font-size: 12px;
    margin: 5px 0 0;
    padding: 2px 10px;
}

#rmd-column .thumb {
    margin-bottom: 10px;
    height: 0;
    padding-top: 65%;
    overflow: hidden;
    position: relative;
}
#rmd-column .thumb img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
#rmd-column .date {
	font-size: 13px;
	color: #666666;
	margin:0;
}
#rmd-column .category-name {
    display: inline-block;
    color: #666;
    background: #eee;
    font-size: 12px;
    margin: 5px 0 0;
    padding: 2px 10px;
}
#rmd-column  .title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

#rmd-ranking .rmd-list li {
    width: 19%;
    margin: 0 0 0 1.25%;
}
#rmd-ranking .rmd-list li:first-child {
    margin-left: 0;
}
#rmd-ranking .rmd-list li a {
    color: #000;
    font-size: 12px;
}
#rmd-ranking .rmd-list li .ranking-num {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #464646;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

/* newsletter */
.page-con .newsletter-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.page-con .newsletter-list li {
    width: 48%;
    margin: 0 0 50px 4%;
}
.page-con .newsletter-list li:nth-child(2n+1) {
    margin-left: 0;
}
.page-con .newsletter-list li a {
    display: block;
    color: #000;
    font-size: 12px;
}
.page-con .newsletter-list .item-thumb {
    margin-bottom: 10px;
}
.page-con .newsletter-list .item-title {
    font-size: 15px;
    font-weight: bold;
}



.item-lp {
    text-align: center;
    margin: 100px 0;
}



@media (max-width: 815px) {

	.item-detail-main {
		display: block;
	}
	.item-detail-main-img {
		width: 100%;
		margin-bottom: 30px;
	}
	.item-detail-main-info {
		width: 100%;
		padding-left: 0;
	}
	
	.item-d-buy-btn {
		font-size: 15px;
		padding: 0 5px;
	}

	.rmd-list > li,
	#rmd-relation .rmd-list li {
		width: 48%;
		margin: 0 0 30px 4%;
	}
	.rmd-list > li:nth-child(2n+1),
	#rmd-relation .rmd-list li:nth-child(2n+1){
		margin-left: 0;
	}

/* matome */
	.matome-buy-info {
		padding: 15px;
	}
	.matome-buy-info h4 {
		font-size: 13px;
		margin-bottom: 10px;
	}
	.matome-buy-info ul li {
		font-size: 12px;
		margin-top: 5px;
		padding-bottom: 5px;
	}
}


/*-------------------------
gift
---------------------------*/
#gift-page {
	padding-bottom: 0;
}
.gift-nav {
    padding: 30px;
    background: var(--bg-color);
    border-radius: 10px;
}
.gift-nav__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
}
.gift-nav__list >li {
    font-size: 20px;
    width: 48%;
    text-align: center;
    margin: 20px 0 0 4%;
}
.gift-nav__list >li:nth-child(2n+1) {
    margin-left: 0;
}
.gift-nav__list >li a {
    color: var(--bas-color);
    display: block;
    padding: 10px;
    border: solid 1px;
    border-radius: 10px;
    background: #fff;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.gift-nav__list >li a:hover {
	color: #fff;
	background: var(--main-color);
}

/*----------------
scene
-----------------*/
#select-scene {
    background: var(--bg-color);
    margin-bottom: 5px;
}
.scene-nav__list {
	display: flex;
	flex-wrap: wrap;
}
.scene-nav__list >li{
	font-size: 15px;
	font-weight: 500;
	width: 32%;
	margin: 0 0 20px 2%;
	cursor: pointer;
	background: #fff;
	border: solid 1px;
	border-radius: 1000px;
	text-align: center;
	padding: 10px 20px;
	position: relative;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.scene-nav__list >li:nth-child(5n+1){
	margin: 0 0 20px 2%;
}
.scene-nav__list >li:nth-child(3n+1){
	margin-left: 0;
}
.scene-nav__list >li:hover,
.scene-nav__list >li.active {
	color: #fff;
	background: #454545;
}
.scene-nav__list >li i {
	width: 7px;
	height: 7px;
	background: var(--main-color);
	border-radius: 100px;
	position: absolute;
	left: 20px;
	top: calc(50% - 3.5px);
}
.scene-nav__list >li i.icon-scene01 {
	background: #eeeeee;
}
.scene-nav__list >li i.icon-scene02 {
	background: #e286b6;
}
.scene-nav__list >li i.icon-scene03 {
	background: #be9be2;
}
.scene-nav__list >li i.icon-scene04 {
	background: #94b5de;
}
.scene-nav__list >li i.icon-scene05 {
	background: #83d0cc;
}
.scene-nav__list >li i.icon-scene06 {
	background: #bace7c;
}
.scene-nav__list >li i.icon-scene07 {
	background: #cbb122;
}
.scene-nav__list >li i.icon-scene08 {
	background: #ed7514;
}

.scene-item-wrap {
	margin-top: 50px;
	padding-top: 50px;
	border-top: solid 2px;
}
.scene-item {
	display: none;
}
.scene-item h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 50px;
}
.scene-item__list {
	display: flex;
	flex-wrap: wrap;
}
.scene-item__list >li {
	width: 22%;
	margin: 0 0 50px 4%;
}
.scene-item__list >li:nth-child(4n+1) {
	margin-left: 0;
}
.scene-item__list a {
	display: block;
	color: var(--base-color);
}
.scene-item__list .thumb {
	height: 0;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
}
.scene-item__list .thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.scene-item__list >li p {
	font-size: 16px;
	font-weight: 500;
	margin-top: 15px;
}



@media (max-width: 815px) {


	.scene-nav__list >li {
		width: 48%;
		margin: 0 0 10px 4%;
	}
	.scene-nav__list >li:nth-child(5n+1) {
		margin: 0 0 10px 4%;
	}
	.scene-nav__list >li:nth-child(3n+1) {
		margin: 0 0 10px 4%;
	}
	.scene-nav__list >li:nth-child(2n+1) {
		margin-left: 0;
	}

	.scene-item__list >li {
		width: 48%;
		margin: 0 0 50px 4%;
	}
	.scene-item__list >li:nth-child(2n+1) {
		margin-left: 0;
	}

}

/* price */
.price-item h3 {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    margin-bottom: 50px;
    border-top: solid 1px;
    border-bottom: solid 1px;
}


/* privacy */
.privacy__list >li {
    margin-bottom: 50px;
}
.privacy__list >li h3 {
    font-size: 18px;
    font-weight: 500;
}
.privacy__list >li p {
    line-height: 2;
    margin-top: 10px;
}





/**/
#Wrap {
	/* width: auto; */
}


/* event */
#page-otherItem h2 {
    font-weight: 500;
    line-height: 1.6;
}
.fd-items .item-name {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.fd-items__list {
    display: flex;
    flex-wrap: wrap;
}
.fd-items__list li {
    width: 48%;
    margin: 0 0 50px 4%;
}
.fd-items__list li:nth-child(2n+1) {
    margin-left: 0;
}
.fd-items__list li .item-buy {
    display: block;
    padding-left: 0;
}
.item-buy__btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    max-width: 340px;
    text-align: center;
    line-height: 1;
    padding: 15px 0;
    margin: auto;
    color: #d72001;
    background: #fff;
    border: solid 2px #d72001;
    border-radius: 100px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.item-buy__btn i {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/cmn/icon_p_cart.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.item-buy__btn:hover {
	color: #fff;
	background: #d72001;
}
.item-buy__btn:hover i {
	background-image:url(../img/cmn/icon_p_cart_wht.png);
}

span.icon-jyoon,
span.icon-reizo,
span.icon-reito {
    color: #fff;
    display: inline-block;
    font-size: 85%;
    font-weight: 400;
    background: skyblue;
    padding: 0 10px;
    margin-right: 10px;
    border-radius: 1000px;
}
span.icon-jyoon {
    background: orange;
}
span.icon-reizo {
    background: dodgerblue;
}
    
.cmn-item-form .item-name {
}
.cmn-item-form .-item-prce {
    font-size: 20px;
    font-weight: 600;
    color: #dd0000;
}
.cmn-item-form .-item-prce span {
    font-size: 150%;
}

.sale-p-comment {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 10px 0;
}
.sale-p-comment span {
    font-size: 120%;
    color: #d72001;
}




@media (max-width: 815px) {

	.fd-items .item-name {
		font-size: 15px;
		text-align: left;
	}
	.item-buy__btn {
		font-size: 12px;
	}
	.item-buy__btn i {
		width: 20px;
		height: 20px;
	}
	.sale-p-comment {
		font-size: 12px;
	}

}



/* product list */

@media (max-width: 815px) {

#ctl00_ContentPlaceHolder1_ctl02_dvProductSortSearch h3 {
    font-weight: 500;
    margin-bottom: 10px;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductSortSearch table {
    width: 100%;
    border: solid 1px #ccc;
    margin-bottom: 10px;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductSortSearch table th {
    width: 100px;
    font-weight: 500;
    background: #f1f1f1;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductSortSearch table td {
    padding: 10px;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductSortSearch table .horizon li {
   display: inline-block;
   margin: 5px;
}


#pagination-above .total {
    display: inline-block;
    margin: 10px 0;
}

}

/*---------------
cart
---------------------*/

#CartList div.productList dl.name dd,
#CartList div.productList div.product p.taxRate,
#CartList div.productList div.product p.subtotal {
    font-weight: 500;
}
.priceList {
    font-size: 14px;
}
.priceList dd {
    font-size: 20px;
    font-weight: 500;
}

