/* block */
.block {
    margin: 0 0 90px;
}
.block-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
@media screen and (max-width: 968px) {
    .block {
        margin: 0 0 60px;
    }
}
@media screen and (max-width: 768px) {
    .block {
        margin: 0 0 40px;
    }
}

/* sub block */
.sub-block__inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.sub-block__head {
    margin: 0 0 35px;
}
.sub-block__head h3 {
    font-size: 22px;
}

/* circulation */
.recommend {
    padding: 0 0 65px;
}
.circulation {
    background: #fff;
    margin: 0 0 65px;
    padding: 65px 0;
}
.cart-history {
    padding: 0 0 65px;
}
.circulation-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.circulation-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
}
.circulation-flex::after {
    background: var(--ft-color3);
    content: "";
    display: block;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1px;
}
.circulation-flex .sub {
    width: 48%;
}
.circulation-flex .sub .sub-block__inner {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .circulation-flex::after {
        display: none;
    }
    .circulation-flex .sub {
        width: 100%;
		margin-top: 20px;
    }
	.introcolumn .introcolumn-inner{
		margin-top: 45px;
	}
    .circulation-flex .history.sub {
        border-bottom: 1px solid var(--ft-color3);
        margin: 0 0 25px;
        padding: 0 0 25px;
    }
}

/* item list */
.items-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.items-list.col2 {
    grid-template-columns: repeat(2, 1fr);
}
.items-list.col3 {
    grid-template-columns: repeat(3, 1fr);
}
.items-list.col5 {
    grid-template-columns: repeat(5, 1fr);
}
.recommend .items-list {
    grid-template-columns: repeat(5, 1fr);
}
.history .items-list {
    grid-template-columns: repeat(2, 1fr);
}
.introcolumn .items-list {
    grid-template-columns: repeat(2, 1fr);
}
.relation .items-list {
    grid-template-columns: repeat(2, 1fr);
}
.cart-history .items-list {
    grid-template-columns: repeat(5, 1fr);
}
.item-card__image {
    line-height: 0;
}
.item-card__image img {
    width: 100%;
}
.item-card__text {
    margin: 15px 0 0;
}
.recently-side .item-card__text {
    margin: 8px 0 0;
}
.item-card__ttl {
    color: var(--ft-color2);
    font-size: var(--font-size--medium);
    font-weight: 700;
    margin-bottom: .8em;
	letter-spacing: .05em;
}
.recently-side .item-card__ttl {
    font-size: 16px;
}
.item-card__tag {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 15px 0 10px;
}
.item-card__tag dt,
.item-card__tag dd {
    font-size: 14px;
    font-weight: 400;
}
.item-card__tag dt {
    background: var(--accent-color);
    color: #fff;
    padding: 5px;
    text-align: center;
    width: 72px;
}
.item-card__tag dd {
    background: #fff;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 5px 15px;
    width: max-content;
}
.item-card__price {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}
.item-card__price p {
	font-family: 'Ysabeau Office', sans-serif;
    color: var(--ft-color2);
    font-size: clamp(1.25rem, 1.091rem + 0.73vw, 1.5rem);/*20-24*/
    font-weight: 650;
	letter-spacing: -.05em;
}
.item-card__price .yen,
.item-card__price .tax {
	font-family: "Noto Sans JP", sans-serif;
    color: var(--ft-color2);
    font-size: 85%;
    font-weight: 700;
    margin-left: .3em;
	font-feature-settings: "palt";
}
.recently-side .item-card__price {
    margin: 10px 0 0;
}
.recently-side .item-card__price p {
    font-size: 24px;
}
.recently-side .item-card__price .yen,
.recently-side .item-card__price .tax {
    font-size: 15px;
    margin: 0 0 1px 3px;
}
@media screen and (max-width: 968px) {
    .items-list {
        gap: 20px;
    }
    .item-card__tag dt {
        width: 50px;
    }
    .item-card__tag dd {
        padding: 5px;
        text-align: center;
        width: calc(100% - 50px);
        max-width: max-content;
    }
}
@media screen and (max-width: 768px) {
    .items-list,
    .items-list.col3,
    .items-list.col5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .recommend .items-list,
    .cart-history .items-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .cart-history .items-list .item-card:last-child,
    .recommend .items-list .item-card:last-child {
        display: none;
    }
    .item-card__tag dt,
    .item-card__tag dd {
        font-size: 13px;
    }
    .item-card__tag dt {
        width: 40px;
    }
    .item-card__tag dd {
        width: calc(100% - 40px);
    }
    .item-card__price .yen {
        font-size: 14px;
        margin: 0 0 2px 3px;
    }
}

/* recently */
.recently {
    margin: 65px 0 0;
}
.recently-inner {
    border-top: 1px solid #acacac;
    margin: 0 auto;
    padding: 45px 0;
    width: 92%;
    max-width: 1200px;
}
.recently-head {
    margin: 0 0 35px;
}
.recently-head h2 {
    color: #353433;
    font-size: 22px;
}
.recently .item-card {
    display: none;
}
.recently .item-card:nth-child(-n+5) {
    display: block;
}
@media screen and (max-width: 768px) {
    .recently .item-card:nth-child(-n+6) {
        display: block;
    }
}

/* cat */
.cat {
    padding: 85px 0;
}
.cat-row {
    border-bottom: 2px solid var(--main-theme-color);
    padding: 25px 0 35px;
}
.cat-row:first-child {
    border-top: 2px solid var(--main-theme-color);
}
.cat-row__head {
    margin: 0 0 20px;
}
.cat-row__head h3 {
    color: var(--ft-color4);
    font-size: 18px;
    font-weight: 500;
}
.cat-row__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.cat-row__item {
    text-align: center;
}
.cat-row__item a {
    background: #fff;
    border: 1px solid #999;
    color: #232323;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 5px 12px 25px;
    text-align: left;
    transition-duration: .3s;
    width: 100%;
}
.cat-row__item a:hover {
    background: #999;
    color: #fff;
}
.cat .block-more a {
    border-bottom: 1px solid var(--main-theme-color);
    padding: 10px 20px 10px 8px;
    position: relative;
}
.cat .block-more a::after {
    background: var(--main-theme-color);
    content: "";
    display: block;
    height: 15px;
    position: absolute;
    right: 5px;
    bottom: -3px;
    transform: rotate(-48deg);
    width: 1px;
}
@media screen and (max-width: 1068px) {
    .cat-row__item a {
        padding: 10px 2px 10px 10px;
    }
}
@media screen and (max-width: 968px) {
    .cat {
        padding: 65px 0;
    }
    .cat-row__items {
        gap: 10px;
    }
    .cat-row__item {
        width: 100%;
    }
    .cat-row__item a {
        font-size: 14px;
        padding: 10px 5px 10px 20px;
    }
}
@media screen and (max-width: 768px) {
    .cat {
        padding: 45px 0;
    }
    .cat-row__head h3 {
        font-size: 18px;
    }
    .cat-row__items {
        grid-template-columns: repeat(3, 1fr);
    }
    .cat-row__item a {
        font-size: 14px;
        padding: 10px 5px;
        text-align: center;
    }
}
@media screen and (max-width: 468px) {
    .cat-row__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* cart item */
.cart-detail-image {
    max-width: 200px;
    width: 100%;
}
.cart-detail-image img {
    width: 100%;
    max-width: none;
}
.cart-detail-info {
    width: calc(100% - 220px);
}

.cart-detail-name {
    margin: 0 0 15px;
}
.cart-detail-name a {
    font-size: 20px;
}
.cart-detail__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.base-price {
    font-size: 18px;

}
.total-price {
    font-size: 24px;
}
.total-price .txt,
.total-price .yen {
    font-size: 15px;
}
.cart-detail-option {
    margin: 15px 0;
}
.cart-list-option p {
    font-size: 15px;
    line-height: 1.8em;
}
.cart-detail-operate {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.cart-detail-quantity {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.cart-detail-quantity input,
.cart-quantity__btn {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 45px;
    outline: none;
    text-align: center;
    width: 45px;
}
.cart-quantity__btn.btn-minus {
    border-right: 0;
}
.cart-quantity__btn.btn-plus {
    border-left: 0;
}
.cart-detail-delete a {
    border-bottom: 1px solid #3d3735;
    color: #3d3735;
    display: inline-block;
    font-size: 18px;
    padding: 5px 7px;
    letter-spacing: .1em;
}
@media screen and (max-width: 1300px) {
	.cart-detail-image{
		width: 26%;
	}
}
@media screen and (max-width: 1100px) {
	
}
@media screen and (max-width: 968px) {
    .cart-detail-info {
        width: calc(100% - 125px);
    }
    .cart-detail-name a {
        font-size: 16px;
    }
    .base-price {
        font-size: 15px;
    }
    .total-price {
        font-size: 18px;
    }
    .total-price .txt,
    .total-price .yen {
        font-size: 14px;
    }
    .cart-list-option p {
        font-size: 16px;
    }
    .cart-detail-quantity input,
    .cart-quantity__btn {
        font-size: 16px;
        height: 35px;
        width: 35px;
    }
    .cart-detail-delete a {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .cart-detail-info {
        width: calc(100% - 115px);
    }
    
    .cart-detail-name {
        margin: 0 0 10px;
    }
    .cart-detail-name a {
        font-size: 14px;
    }
    .base-price {
        font-size: 12px;
    }
    .total-price {
        font-size: 16px;
    }
    .total-price .txt,
    .total-price .yen {
        font-size: 12px;
    }
    .cart-detail-option {
        margin: 10px 0;
    }
    .cart-list-option p {
        font-size: 14px;
    }
    .cart-detail-delete a {
        font-size: 14px;
    }
}


/* cart panel */
.cartpanel-detail .cart-detail-list li{
	display: flex;
	gap: 20px;
}
.cartpanel-detail {
	& .cart-detail-list li {
    	margin: 0 0 30px;
	}
	& .total-price{
		font-size: 19px;
	}
	& .cart-detail-image{
		max-width: 130px;
		width: 25%;
	}
	& .cart-list-option p{
		line-height: 1.4em;
	}
}




/* news */
.news {
    background: var(--ft-color4);
    padding: 10px 0;
}
.news-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 500px;
}
.news-sliders {
    position: relative;
}
.news-slider {
    margin: 0 auto;
    overflow: hidden;
    width: 85%;
}
.news-slider__inner{
	align-items: center;
}
.news-slide {
    text-align: center;
    width: max-content;
}
.news-slide a,.news-slide p {
    color: #fff;
    font-size: 16px;
	& span{
		color:inherit;
		display: inline-block;
    	text-decoration: underline;
    	padding-left: 1em;
	}
}
.news-slide a{
	text-decoration: underline;
}
.news-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.swiper-arrow-prev,
.swiper-arrow-next {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    .news-slide a,
    .swiper-arrow-prev,
    .swiper-arrow-next {
        font-size: 14px;
    }
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}


/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}