.maker {
    background:linear-gradient(transparent 70%, #ff6 60%);
    display: inline;
}

/* mv */
.mv {
    height: 350px;
    margin: 0 0 -25px;
    width: 100%;
}
.mv-inner {
    background-color: #ccc;
    background-position: center top;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative;
    width: 100%;
    max-width: 1000px;
}
.mv-inner svg {
    position: absolute;
    bottom: 0;
    left: 0;
}
.mv-inner::after {
    background: rgb(255 255 255 / 75%);
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.mv-ttl {
    position: relative;
    text-align: center;
    z-index: 1;
}
.mv-ttl p {
    color: #404040;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.mv-ttl h1 {
    color: #153963;
    font-size: 42px;
    font-weight: 700;
}
@media screen and (max-width: 968px) {
    .mv-ttl p {
        font-size: 16px;
    }
    .mv-ttl h1 {
        font-size: 32px;
    }
}
@media screen and (max-width: 768px) {
    .mv {
        height: 300px;
        margin: 25px 0 0;
    }
    .mv-inner {
        border-radius: 0;
    }
    .mv-ttl p {
        font-size: 14px;
    }
    .mv-ttl h1 {
        font-size: 26px;
    }
}

/* breadcrumb */
.breadcrumb {
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
}
.breadcrumb-inner {
    margin: 0 auto;
    overflow-x: auto;
    width: calc(100% - 30px);
    max-width: 1000px;
}
.breadcrumb-inner ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
}
.breadcrumb-inner ul li:not(:last-child)::after {
    content: ">";
    margin: 0 8px;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* mainflex */
.mainflex-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
}
.sidebar {
    width: 200px;
}
.maincont {
    width: calc(100% - 235px);
}
.sidebar-widget:not(:last-child) {
    margin: 0 0 25px;
}
.sidebar-widget__ttl {
    margin: 0 0 8px;
}
.sidebar-widget__ttl p {
    background: #f1f1f1;
    color: #0095F0;
    font-size: 18px;
    font-weight: 600;
    padding: 4px 10px;
}
.sidebar-category__list {
    display: grid;
    gap: 10px;
    padding: 0 5px;
}
.sidebar-inner__list {
    display: grid;
    gap: 3px;
    padding: 3px 5px 0 22px;
}
.sidebar-category__list li a,
.sidebar-inner__list li a {
    font-size: 14px;
    font-weight: 300;
}
.sidebar-category__list li a::before {
    content: "◎";
    color: var(--cr-female);
    font-size: 14px;
    font-weight: 300;
    margin-right: 5px;
}
.sidebar-inner__list li a::before {
    display: none;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .sidebar {
        order: 2;
        width: 100%;
    }
    .maincont {
        order: 1;
        width: 100%;
    }
}

/* products */
.products.block {
    padding-top: 0;
}
.products-items {
    display: grid;
    gap: 35px;
}
.products-item__ttl {
    margin: 0 0 25px;
}
.products-item__ttl h2 {
    background: #E7F2FF;
    border-left: 5px solid #0095F0;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 10px;
}
.product-cards {
    display: grid;
    gap: 20px;
}
.product-card {
    background: #fff;
    border-radius: 20px;
    filter: drop-shadow(0 2px 5px rgb(0 0 0 / 10%));
    overflow: hidden;
}
.product-card a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 100%;
    padding: 15px;
    width: 100%;
}
.product-card__image {
    border-radius: 20px;
    line-height: 0;
    overflow: hidden;
    width: 250px;
}
.product-card__text {
    width: calc(100% - 275px);
}
.product-card__text h2 {
    color: #153963;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
}
.product-card__text h2 span {
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    height: 26px;
    margin-right: 10px;
    padding: 0 10px;
    text-align: center;
    width: max-content;
}
.product-card__text h2 span[data-type="男性用"] {
    background: var(--cr-male);
}
.product-card__text h2 span[data-type="女性用"] {
    background: var(--cr-female);
}
.product-card__text h2 span[data-type="男女共通"] {
    background: var(--cr-unisex);
}
.product-card__price {
    margin: 0 0 15px;
}
.product-card__price .price {
    color: #d56363;
    font-size: 18px;
    font-weight: 600;
}
.product-card__price .yen,
.product-card__price .tax {
    font-size: 13px;
    font-weight: 600;
}
.product-card__excerpt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
}
.product-inspection__tags {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0 0;
}
.inspection-tag {
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    padding: 0 10px;
    width: max-content;
}
.inspection-tag p {
    font-size: 14px;
    font-weight: 400;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .product-card__image {
        margin: 0 0 20px;
        text-align: center;
        width: 100%;
    }
    .product-card__text {
        width: 100%;
    }
}

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