/* block */
.block {
    margin: 0 0 90px;
}
.block-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.block-head {
    margin: 0 0 35px;
    text-align: center;
}
.block-head h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}
@media screen and (max-width: 968px) {
    .block {
        margin: 0 0 60px;
    }
    .block-head h2 {
        font-size: 24px;
    }
}
@media screen and (max-width: 768px) {
    .block {
        margin: 0 0 40px;
    }
    .block-head h2 {
        font-size: 21px;
    }
}

/* block btn */
.block-btn {
    margin: 45px 0 0;
}
.block-btn a {
    border: 1px solid var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    padding: 18px 15px;
    position: relative;
    transition-duration: .3s;
    width: 100%;
    max-width: 269px;
}
.block-btn.g a {
    background: #c39d60;
    border: 1px solid #c39d60;
    color: #fff;
}
.block-btn.b1 a {
    background: #000000;
    border: 1px solid #c39d60;
    color: #fff;
}
.block-btn.b2 a {
    background: #292929;
    border: 1px solid #292929;
    color: #fff;
}
.block-btn a:hover {
    background: var(--ft-color1);
    border: 1px solid var(--ft-color1);
    color: #fff;
    opacity: 1;
}
.block-btn.g a:hover {
    background: #fff;
    border: 1px solid #b78939;
    color: #292929;
}
.block-btn.b1 a:hover,
.block-btn.b2 a:hover {
    background: #b78939;
    border: 1px solid #b78939;
}
.block-btn a::after {
    background: url(../images/icon-arrow-r.png) no-repeat;
    background-position: center;
    background-size: 9px 13px;
    content: "";
    display: block;
    height: 13px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 9px;
}
.block-btn.g a::after,
.block-btn.b1 a::after,
.block-btn.b2 a::after {
    background-image: url(../images/icon-arrow-r-w.png)
}
.block-btn a:hover::after {
    background-image: url(../images/icon-arrow-r-w.png);
}
.block-btn.g a:hover::after {
    background-image: url(../images/icon-arrow-r.png);
}
@media screen and (max-width: 768px) {
    .block-btn a {
        font-size: 14px;
        padding: 14px 12px;
    }
}

/* sub block */
.sub-block__inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.sub-block__head {
    margin: 0 0 25px;
}
.sub-block__head h3 {
    color: var(--ft-color2);
    font-size: 24px;
    font-weight: 500;
}
@media screen and (max-width: 968px) {
    .sub-block__head h3 {
        font-size: 21px;
    }
}
@media screen and (max-width: 768px) {
    .sub-block__head h3 {
        font-size: 18px;
    }
}

/* breadcrumb */
.breadcrumb {
    margin: 0 0 25px;
}
.main + .breadcrumb {
    margin: 25px 0;
}
.breadcrumb-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}
.breadcrumb-inner ul,
.breadcrumb-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}
.breadcrumb-list {
    width: 92%;
}
.breadcrumb-inner ul li:not(:last-child)::after,
.breadcrumb-list li:not(:last-child)::after {
    content: ">";
    font-size: 14px;
    margin: 0 8px;
}
.breadcrumb-inner ul li a,
.breadcrumb-inner ul li,
.breadcrumb-list li a,
.breadcrumb-list li {
    font-size: 14px;
}

/* mv */
.mv {
    margin: 0 0 90px;
}
.mv-slide img {
    width: 100%;
}
@media screen and (max-width: 968px) {
    .mv {
        margin: 0 0 60px;
    }
}
@media screen and (max-width: 768px) {
    .mv {
        margin: 0 0 40px;
    }
}

/* shopinfo */
.shopinfo {
    margin: 0 0 90px;
}
.shopinfo-inner {
    margin: 0 auto;
    padding: 17px 0;
    position: relative;
    width: 95%;
    max-width: var(--main-column);
}
.shopinfo-head {
    margin: 0 0 50px;
    text-align: center;
}
.shopinfo-head h2 {
    color: var(--ft-color2);
    font-size: 23px;
    font-weight: 700;
}
.shopinfo-slider__inner {
    align-items: stretch;
}
.shopinfo-slide {
    border-right: 1px solid #b2b2b2;
    height: auto;
    padding: 45px 0;
    text-align: center;
}
.shopinfo-slide__image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 61px;
    margin: 0 0 35px;
    text-align: center;
}
.shopinfo-slide__text p {
    color: var(--ft-color2);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
}
.shopinfo-slide__text p span {
    color: var(--ft-color2);
    font-size: 14px;
}
@media screen and (max-width: 968px) {
    .shopinfo {
        margin: 0 0 60px;
    }
    .shopinfo-head {
        margin: 0 0 45px;
    }
    .shopinfo-head h2 {
        font-size: 20px;
    }
    .shopinfo-slide {
        padding: 35px 0;
    }
}
@media screen and (max-width: 768px) {
    .shopinfo {
        margin: 0 0 40px;
    }
    .shopinfo-head {
        margin: 0 0 35px;
    }
    .shopinfo-head h2 {
        font-size: 18px;
    }
    .shopinfo-slide {
        padding: 25px 0;
    }
    .shopinfo-slide__text p {
        font-size: 18px;
    }
    .shopinfo-slide__text p span {
        font-size: 14px;
    }
}

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

/* categories */
.categories {
    background: #f9f6f1;
    margin: 0 0 90px;
    padding: 50px 0 25px;
}
.categories-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.categories-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.categories-item a {
    display: block;
    position: relative;
}
.categories-item__image {
    line-height: 0;
}
.categories-item__text {
    margin: 10px 0 0;
    position: absolute;
    bottom: 3%;
    left: 0;
    text-align: center;
    width: 100%;
}
.categories-item__text p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
@media screen and (max-width: 968px) {
    .categories {
        margin: 0 0 60px;
    }
    .categories-items {
        gap: 20px;
    }
}
@media screen and (max-width: 768px) {
    .categories {
        margin: 0 0 40px;
    }
    .categories-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-item__text p {
        font-size: 16px;
    }
}

/* features */
.features-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.features-item a {
    display: block;
    position: relative;
}
.features-item__image {
    line-height: 0;
}
.features-item__text {
    background: rgba(0, 0, 0, 0.54);
    padding: 10px 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.features-item__text p {
    color: #fff;
    font-family: var(--ft-noto);
    font-size: 18px;
    font-weight: 500;
}
@media screen and (max-width: 968px) {
    .features-items {
        gap: 25px;
    }
    .features-item__text p {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .features-items {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* item list */
.items-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.recommend .items-list {
    grid-template-columns: repeat(5, 1fr);
}
.history .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__text {
    margin: 15px 0 0;
}
.recently-side .item-card__text {
    margin: 8px 0 0;
}
.item-card__ttl {
    color: var(--ft-color2);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 25px;
}
.w .item-card__ttl {
    color: #fff;
}
.recently-side .item-card__ttl {
    font-size: 14px;
}
.item-card__tags {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 15px 0 10px;
}
.item-card__price {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.item-card__price p {
    color: var(--ft-color2);
    font-size: 24px;
    font-weight: 700;
}
.circulation .item-card__price p {
    font-size: 18px;
}
.w .item-card__price p {
    color: #fff;
}
.item-card__price .yentax {
    color: var(--ft-color2);
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 4px 3px;
}
.circulation .item-card__price .yentax {
    font-size: 11px;
}
.w .item-card__price .yentax {
    color: #fff;
}
.recently-side .item-card__price {
    margin: 10px 0 0;
}
.recently-side .item-card__price p {
    font-size: 14px;
}
.recently-side .item-card__price .yentax {
    font-size: 11px;
    margin: 0 0 1px 3px;
}
@media screen and (max-width: 968px) {
    .items-list {
        gap: 20px;
    }
}
@media screen and (max-width: 768px) {
    .items-list {
        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__ttl {
        font-size: 14px;
    }
    .item-card__price p {
        font-size: 18px;
    }
    .item-card__price .yentax {
        font-size: 14px;
        margin: 0 0 2px 3px;
    }
}

/* pickup */
.pickup {
    background: var(--base-bg);
    margin: 0 0 90px;
    padding: 50px 0;
}
.pickup-inner {
    margin: 0 auto;
    padding: 25px 0;
    position: relative;
    width: 95%;
    max-width: var(--main-column);
}
@media screen and (max-width: 968px) {
    .pickup {
        margin: 0 0 60px;
        padding: 45px 0;
    }
}
@media screen and (max-width: 768px) {
    .pickup {
        margin: 0 0 40px;
        padding: 35px 0;
    }
}

/* banner */
.banner {
    margin: 0 0 90px;
}
.banner-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.banner-item a {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.banner-item__image {
    background: url(../images/banner-item.jpg) no-repeat;
    background-position: center;
    background-size: cover;    
    width: calc(100% - 460px);
}
.banner-item__text {
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 75px 0;
    width: 460px;
}
.banner-item__text p {
    color: #fff;
}
.banner-txt {
    margin: 0 0 15px;
}
.banner-item__ttl {
    border-bottom: 1px solid #fff;
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 20px;
    padding: 0 0 20px;
}
.banner-item__txt {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
}
.banner-item__btn {
    background: #b78939;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 25px 0 0;
    padding: 12px;
    text-align: center;
    width: 209px;
}
@media screen and (max-width: 968px) {
    .banner {
        margin: 0 0 60px;
    }
    .banner-item__image { 
        width: calc(100% - 360px);
    }
    .banner-item__text {
        padding: 75px 0;
        width: 360px;
    }
    .banner-item__ttl {
        font-size: 24px;
    }
    .banner-item__btn {
        padding: 12px 10px;
        width: 180px;
    }
}
@media screen and (max-width: 768px) {
    .banner {
        margin: 0 0 40px;
    }
    .banner-item a {
        flex-direction: column-reverse;
    }
    .banner-item__image { 
        height: 300px;
        width: 100%;
    }
    .banner-item__text {
        justify-content: flex-start;
        padding: 25px;
        width: 100%;
    }
    .banner-text__in {
        width: 100%;
    }
    .banner-item__ttl {
        font-size: 21px;
    }
    .banner-item__txt br {
        display: none;
    }
}

/* tab */
.tab {
    background: #000000;
    margin: 0 0 90px;
    padding: 69px 0;
}
.tab-head {
    text-align: center;
}
.tab-head h3 {
    color: #fff;
}
.tab-main__head {
    margin: 0 0 45px;
    overflow-x: auto;
    text-align: center;
}
.tab-head__list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    max-width: max-content;
}
.tab-head__btn {
    border-bottom: 2px solid #d1d1d1;
    cursor: pointer;
    padding: 8px 35px;
    position: relative;
    width: max-content;
    white-space: nowrap;
}
.tab-head__btn.active::before {
    background: #b78939;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
}
.tab-head__btn p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.tab-main__panel {
    display: none;
}
.tab-main__panel.show {
    display: block;
}
@media screen and (max-width: 968px) {
    .tab {
        margin: 0 0 60px;
    }
}
@media screen and (max-width: 768px) {
    .tab {
        margin: 0 0 40px;
    }
    .tab-head__btn {
        font-size: 14px;
        padding: 6px 25px;
    }
}

/* introduction */
.introduction {
    margin: 0 0 90px;
}
.introduction-inner {
    margin: 0 auto;
    padding: 25px 0;
    position: relative;
    width: 95%;
    max-width: var(--main-column);
}
.introduction-head  {
    text-align: center;
}
.introduction-slider__wrapper {
    align-items: stretch;
}
.introduction-slide {
    background: #000;
    height: auto;
}
.introduction-slide__image {
    line-height: 0
}
.introduction-slide__text {
    padding: 10px 0 12px;
    text-align: center;
}
.introduction-slide__text p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
@media screen and (max-width: 968px) {
    .introduction {
        margin: 0 0 60px;
    }
}
@media screen and (max-width: 768px) {
    .introduction {
        margin: 0 0 40px;
    }
    .introduction-slide__text p {
        font-size: 16px;
    }
}

/* notice */
.notice {
    margin: 0 0 90px;
}
.notice-inner {
    position: relative;
}
.notice-item {
    border-bottom: 1px solid #bbbbbb;
}
.notice-item:first-child {
    border-top: 1px solid #bbbbbb;
}
.notice-item a {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 25px;
}
.notice-item__date {
    width: 25%;
}
.notice-item__ttl {
    width: 75%;
}
.notice-more {
    position: absolute;
    right: 0;
    top: 0;
}
.notice-more a {
    color: var(--ft-color2);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
.notice-more a::after {
    background: url(../images/icon-arrow-r.png) no-repeat;
    background-position: center;
    background-size: 9px 13px;
    content: "";
    display: inline-block;
    height: 13px;
    margin-left: 20px;
    width: 9px;
}
@media screen and (max-width: 968px) {
    .notice {
        margin: 0 0 60px;
    }
    .notice-more a {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .notice {
        margin: 0 0 40px;
    }
    .notice-item a {
        padding: 20px;
    }
    .notice-item__date {
        padding: 0 0 5px;
        width: 100%;
    }
    .notice-item__ttl {
        width: 100%;
    }
    .notice-more {
        margin: 25px 0 0;
        position: static;
    }
    .notice-more a {
        justify-content: center;
        font-size: 14px;
    }
}

/* footinfo items */
.footinfo {
    margin: 0 0 90px;
}
.footinfo-items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.footinfo-item {
    border-right: 1px solid #b2b2b2;
    padding: 15px 25px 75px;
    position: relative;
    text-align: center;
    width: 25%;
}
.footinfo-item:last-child {
    border-right: 0;
}
.footinfo-item__image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 0 0 25px;
}
.footinfo-ttl {
    color: var(--ft-color2);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.5em;
    height: 125px;
}
.footinfo-ttl .big {
    color: var(--ft-color2);
    font-size: 28px;
    font-weight: 500;
}
.footinfo-ttl .mini {
    color: var(--ft-color2);
    font-size: 14px;
    font-weight: 500;
}
.footinfo-ttl .mid {
    color: var(--ft-color2);
    font-size: 18px;
    font-weight: 500;
}
.footinfo-ttl .note,
.footinfo-txt {
    color: var(--ft-color3);
    display: block;
    font-family: var(--ft-noto);
    font-size: 14px;
    font-weight: 500;
}
.footinfo-txt a {
    color: var(--ft-color3);
    display: inline;
    padding: 0;
    text-decoration: underline;
}
.footinfo-item .footinfo-link {
    color: var(--ft-color3);
    display: inline;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}
@media screen and (max-width: 968px) {
    .footinfo {
        margin: 0 0 60px;
    }
    .footinfo-item {
        border-top: 1px solid #b2b2b2;
        padding: 25px 20px 95px;
        width: 50%;
    }
    .footinfo-item:nth-child(-n+2) {
        border-top: 0;
    }
    .footinfo-item:nth-child(even) {
        border-right: 0;
    }
    .footinfo-item .footinfo-link {
        bottom: 25px;
    }
}
@media screen and (max-width: 768px) {
    .footinfo {
        margin: 0 0 40px;
    }
    .footinfo-item {
        border-right: 0;
        border-bottom: 1px solid #b2b2b2;
        padding: 15px 25px 75px;
        width: 100%;
    }
    .footinfo-item:last-child {
        border-bottom: 0;
        border-right: 0;
    }
    .footinfo-ttl {
        font-size: 21px;
        height: 110px;
    }
    .footinfo-ttl .big {
        font-size: 26px;
    }
    .footinfo-ttl .mini {
        font-size: 14px;
    }
    .footinfo-ttl .mid {
        font-size: 18px;
    }
    .footinfo-ttl .note,
    .footinfo-txt {
        font-size: 14px;
    }
    .footinfo-item .footinfo-link {
        font-size: 14px;
    }
}

/* swiper arrow */
.slider-arrow {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    position: absolute;
    right: 0;
    top: 0;
}
.swiper-arrow-prev,
.swiper-arrow-next {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 14px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    height: 61px;
    transition-duration: .3s;
    width: 61px;
}
.swiper-arrow-prev {
    background-image: url(../images/icon-arrow-l.png);
    margin-right: 20px;
}
.swiper-arrow-next {
    background-image: url(../images/icon-arrow-r.png);
}
.swiper-arrow-prev:hover,
.swiper-arrow-next:hover {
    opacity: .8;
}
.swiper-button-disabled,
.swiper-button-disabled:hover {
    cursor: no-drop;
    opacity: 0.5;
}
@media screen and (max-width: 968px) {
    .swiper-arrow-prev,
    .swiper-arrow-next {
        height: 50px;
        width: 50px;
    }
}
@media screen and (max-width: 768px) {
    .slider-arrow {
        justify-content: center;
        margin: 25px auto 0;
        position: static;
    }
    .swiper-arrow-prev,
    .swiper-arrow-next {
        height: 45px;
        width: 45px;
    }
}


/* 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) {}



.pager-wrap {
    margin: 35px 0 0;
}
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pager li a, .pager li > span {
    border: 1px solid var(--accent-color);
    font-size: 16px;
    display: block;
    padding: 3px 10px;
}
.pager li > span.current {
    background: var(--accent-color);
    color: #fff;
}
@media screen and (max-width: 768px) {
    .pager li a, .pager li > span {
        font-size: 14px;
    }
}


.faq {
    margin: 65px 0 0;
}
.faq-inner {
    margin: 0 auto;
    width: 100%;
}
.faq-head {
    border-bottom: 2px solid var(--ft-color3);
    margin: 0 0 25px;
    padding: 0 0 20px;
}
.faq-head h2 {
    font-size: 24px;
    font-weight: 500;
}
dl.faq-list {
    border: 2px solid #ccc;
}
.faq-list__item:not(:last-child) {
    border-bottom: 2px solid #ccc;
}
.faq-list__item dt {
    cursor: pointer;
    margin: 0;
    padding: 15px 30px 15px 15px;
    position: relative;
}
.faq-list__item dt::after {
    background: url(../images/icon-arrow-r.png) no-repeat;
    background-position: center;
    background-size: 9px 13px;
    content: "";
    display: inline-block;
    height: 13px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    transform: rotate(90deg);
    transition-duration: .3s;
    width: 9px;
}
.faq-list__item.active dt::after {
    transform: rotate(-90deg);
}
.faq-list__item dd {
    background: #f1f1f1;
    border-top: 2px solid #ccc;
    display: none;
    margin: 10px 0 0;
    padding: 15px 20px;
}
.faq-list__item dt p,
.faq-list__item dd p {
    font-size: 16px;
}
.faq-list__item dt p {
    font-weight: 700;
}
.faq-list__item dd p {
    font-weight: 400;
}

.recommend {
    padding: 0 0 65px;
}
.circulation {
    padding: 0 0 65px;
}
.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%;
    }
    .circulation-flex .history.sub {
        border-bottom: 1px solid var(--ft-color3);
        margin: 0 0 25px;
        padding: 0 0 25px;
    }
}


.recently-all {
    margin: 10px 0 0;
    text-align: right;
}
.recently-all a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}


.category-widget__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category-widget__price {
    width: 45%;
}
.category-widget__price input {
    border: 1px solid #ccc;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    outline: none;
    padding: 5px;
    width: 100%;
}
.category-widget__symbol {
    font-size: 12px;
    text-align: center;
    width: 10%;
}
.category-widget__btn {
    margin: 15px 0 0;
}
.category-widget__btn a {
    background: #fff;
    border: 1px solid #ccc;
    display: block;
    padding: 5px;
    text-align: center;
    transition-duration: .3s;
    width: 100%;
}
.category-widget__btn a:hover {
    background: var(--ft-color3);
    border-color: var(--ft-color3);
    color: #fff;
}


.category-widget__body .taglist {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}
.category-widget__body .taglist li,
.category-widget__body .taglist li:not(:last-child) {
    display: inline-block;
    margin: 0;
    width: max-content;
}
.category-widget__body .taglist li a {
    background: #f3f0eb;
    display: block;
    font-size: 14px;
    padding: 2px 10px;
}

.widget-child__block {
    padding: 0 10px;
}
.widget-child__block:not(:last-child) {
    margin: 0 0 25px;
}
.widget-child__block .child-block__ttl {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
}

.widget-child__block .active-type__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.widget-child__block .active-type__link.full {
    flex-direction: column;
}
.widget-child__block .active-type__link li {
    border-left: 4px solid #ccc;
    padding-left: 3px;
    position: relative;
    transition-duration: .3s;
}
.widget-child__block .active-type__link li:hover,
.widget-child__block .active-type__link li.active {
    border-color: var(--main-theme-color);
}
.widget-child__block .active-type__link li,
.widget-child__block .active-type__link li:not(:last-child) {
    margin: 0;
}
.widget-child__block .active-type__link.half li {
    width: calc(50% - 10px);
}
.widget-child__block .active-type__link.full li {
    width: 100%;
}
.widget-child__block .active-type__link li a {
    display: block;
    font-size: 14px;
    padding: 2px 5px;
}

.more-toggle {
    margin: 10px 0 0;
    text-align: right;
}
.more-toggle__btn {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    outline: none;
    text-decoration: underline;
}

/* 年末年始休み */
.yearsched {
    background: #FAFAFA;
    margin: 0 auto 65px;
    padding: 25px 45px;
    width: 100%;
    max-width: 1200px;
}
.yearsched-inner {
    background: #fff;
    padding: 45px 0 55px;
    width: 100%;
}
.yearsched-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 80%;
}
.yearsched-left {
    width: 250px;
}
.yearsched-right {
    position: relative;
    width: calc(100% - 320px);
}

.yearsched-left h2 {
    color: #808080;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.8em;
}
.yearsched-detail {
    margin: 45px 0 0;
}
.yearsched-detail .yearsched-detail__ttl {
    color: #E6E6E6;
    display: flex;
    align-items: center;
    font-size: 21px;
    font-weight: 400;
    margin: 0 0 10px;
}
.yearsched-detail .yearsched-detail__ttl:before,
.yearsched-detail .yearsched-detail__ttl:after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-color: #e6e6e6;
}
.yearsched-detail .yearsched-detail__ttl:before {
    margin-right: 1rem;
}
.yearsched-detail .yearsched-detail__ttl:after {
    margin-left: 1rem;
}
.yearsched-detail__txt {
    border: 2px solid #E6E6E6;
    padding: 5px;
    text-align: center;
}
.yearsched-detail__txt p {
    color: #808080;
    font-size: 21px;
}
.yearsched-detail__txt p span {
    color: #808080;
    font-size: 16px;
}

.yearsched-notice {
    color: #E6E6E6;
    font-size: 14px;
    margin: 10px 0 0;
}
.yearsched-link {
    color: #808080;
    font-size: 14px;
    position: absolute;
    right: 25px;
    bottom: -15px;
}
.yearsched-link::before {
	content: '';
	position: absolute;
	bottom: -1px;
    right: -23%;
    transform: rotate(45deg);
	width: 12px;
	height: 1px;
	background-color: #333;
}
.yearsched-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: translateY(-50%);
    width: 120%;
    height: 1px;
    background-color: #333;
}
@media screen and (max-width: 1268px) {
    .yearsched {
        padding: 20px 35px;
    }
    .yearsched-flex {
        width: 90%;
    }
    .yearsched-left {
        width: 250px;
    }
    .yearsched-right {
        position: relative;
        width: calc(100% - 280px);
    }
    .yearsched-link {
        bottom: -25px;
    }
}
@media screen and (max-width: 968px) {
    .yearsched {
        margin: 0 auto 35px;
        padding: 20px 25px;
    }
    .yearsched-inner {
        padding: 25px 0 45px;
    }
    .yearsched-flex {
        width: 95%;
    }
    .yearsched-left {
        margin: 0 0 25px;
        width: 100%;
    }
    .yearsched-right {
        padding: 0 0 10px;
        width: 100%;
    }
    .yearsched-left h2 {
        text-align: center;
    }
    .yearsched-detail {
        margin: 25px 0 0;
    }
    .yearsched-link {
        bottom: -25px;
    }
}
@media screen and (max-width: 568px) {
    .yearsched-left h2 {
        font-size: 18px;
    }
    .yearsched-detail .yearsched-detail__ttl {
        font-size: 16px;
    }
    .yearsched-detail__txt p {
        font-size: 16px;
    }
    .yearsched-detail__txt p span {
        font-size: 14px;
    }
    .yearsched-link {
        font-size: 12px;
    }
}