@charset "utf-8";

/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
    タイプ選択用のボタン
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */

.l-typefilter {
    margin: 40px 0;
}

.l-typefilter__title {
    margin-bottom: 12px;
    font-family: serif;
    font-size: 22px;
    font-weight: bold;
}

.l-typefilter__list {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 5px;
}

/* component */
.c-typefilterBtn {
    width: 100%;
    padding: 5px;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    outline: none;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: .2s;
}

.c-typefilterBtn:focus {
    outline: none;
}

.c-typefilterBtn:focus-visible {
    outline: none;
}

.c-typefilterBtn img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 4px;
    object-fit: contain;
}

.c-typefilterBtn__text {
    display: block;
    font-size: 12px;
    line-height: 1;
}

@media (hover: hover) {
    .c-typefilterBtn:hover {
        border-color: #999;
    }
}

/* active */
.c-typefilterBtn.is-active {
    border-color: #333;
    box-shadow: inset 0 0 0 2px #333;
}

/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
    タイプ選択用のボタン 
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */


/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
    扇子アイテムブロックの説明
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */

.l-notation {
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: start;
    align-items: start;
    column-gap: 24px;
    row-gap: 0;
    padding: 16px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    background: #f7f7f7;
}

.l-notation__head {
    flex-shrink: 0;
}

.l-notation__title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

.l-notation__lead {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.l-notation__body {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.l-notation__legend {
    display: flex;
    align-items: center;
    gap: 7px;
}

.l-notation__example {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.l-notation__exampleLabel {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.l-notation__equal {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}

.l-notation__desc {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

/* component */
.c-notationBadge {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
}

.c-notationBadge--red {
    border: 1px solid #ff4b4b;
}

.c-notationBadge--blue {
    border: 1px solid #4b92e8;
}

.c-notationText {
    font-size: 14px;
    line-height: 1;
}

.c-notationText--red {
    color: #ff4b4b;
}

.c-notationText--blue {
    color: #4b92e8;
}

.c-notationTag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #333;
    line-height: 1;
    box-sizing: border-box;
}

/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
    扇子アイテムブロックの説明 
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */


/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
    タイプ別アイテムリスト
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */

.l-productBlock {
    margin: 40px 0;
}

.l-productBlock__head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 12px;
}

.l-productBlock__title {
    margin: 0;
    font-family: serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    color: #111;
}

.l-productBlock__text {
    margin: 0;
    font-size: 12px;
    color: #333;
}

.l-productBlock__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

/* card */
.c-productCard {
    border: 1px solid #d2d2d2;
    border-radius: 7px;
    background: #fff;
    overflow: hidden;
}

.c-productCard__link {
    display: block;
    padding: 0 15px;
    color: inherit;
    text-decoration: none;
}

.c-productCard__figure {
    margin: 0;
    text-align: center;
}

.c-productCard__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.c-productCard__content {
    width: 95%;
    margin: 0 auto;
    padding: 0px 5px 10px;
}

.c-productCard__title {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
}

.c-productCard__badges {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
}

.c-productBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 2px 5px;
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
    line-height: 1;
    box-sizing: border-box;
}

.c-productBadge--red {
    border: 1px solid #ff4b4b;
    color: #ff4b4b;
}

.c-productBadge--blue {
    border: 1px solid #4b92e8;
    color: #4b92e8;
}

.c-productCard__order {
    display: flex;
    align-items: center;
    gap: 6px;
}

.c-productCard__input {
    width: 40%;
    height: auto;
    padding: 0 0 0 5px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fff;
    font-size: 12px;
    color: #333;
    text-align: left;
    box-sizing: border-box;
}

.c-productCard__input[type="text"] {
    padding: 0 0 0 5px;
    font-size: 12px;
}

.c-productCard__unit {
    font-size: 12px;
    color: #333;
}

/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
    タイプ別アイテムリスト
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */