/* TACKLE-LUMBERページCSS */
.ec-tackle-lumber-img-box {
    width: 100%;
    aspect-ratio: 9/4;
}

.ec-tackle-lumber-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* カテゴリーページ */
.ec-categoryRole {
    background-color: transparent !important;
}

.ec-categoryRole .ec-secHeading {
    margin: 0 0 60px;
}

/* 新しい商品ページ */
/* 検索 */
.ec-headerSearch {
    max-width: 1000px;
    margin: auto;
    padding: 30px;
}

.ec-headerSearch__category {
    display: none;
    /*左の商品カテゴリーを消去*/
}

.ec-headerSearch .ec-headerSearch__keyword {
    width: 100% !important;
    border-radius: 50px !important;
}

input.search-name {
    padding: 20px 30px !important;
}

/* 商品画像を正方形に */
.ec-shelfGrid .ec-shelfGrid__item img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* お気に入り */
.ec-mypageRole {
    max-width: 1100px;
    padding: 30px;
}

/* レビュー */
.ec-review-card a {
    display: flex;
    justify-content: start;
}

.ec-review-card__image {
    display: flex !important;
    align-items: flex-start !important;
}

#reviewContent {
    margin-bottom: 30px;
}

.ec-inlineBtn--action {
    border: 1px solid #9B9B9B;
    background: transparent;
    color: #000;
    border-radius: 10px;
    font-weight: 300;
}

.review_list {
    list-style: none;
    padding: 0 !important;
}

.review_list li:first-child {
    border-top: 1px solid #333;
}

.review_list li {
    border-bottom: 1px solid #333;
    padding: 30px 10px;
}

.review_list li>strong {
    margin: 5px 0 10px;
    display: inline-block;
}

/* 商品 */
.ec-blockBtn--action,
.ec-blockBtn--action:hover {
    color: #fff;
    background-color: #466D4E !important;
    border-color: #466D4E !important;
}

.ec-progress .is-complete .ec-progress__number {
    color: #fff;
    background-color: #466D4E !important;
}

.ec-progress .is-complete .ec-progress__label {
    color: #466D4E !important;
}

/* TOPIC詳細 */
/* topicDtail 共通 */
.topicDtail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
}

/* タイトル */
.topicDtail__title {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    border-top: 1px solid #9B9B9B;
    border-bottom: 1px solid #9B9B9B;
    padding: 30px 10px;
    font-weight: bold;
    color: #000;
}

/* 上段 */
.topicDtail__content {
    display: flex;
    gap: 30px;
}

/* 左画像 */
.topicDtail__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右情報 */
.topicDtail__info {
    background: #bfe6f6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.topicDtail__subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

.topicDtail__text {
    font-size: 14px;
    line-height: 1.6;
}

.topicDtail__products img {
    width: 100%;
    margin-top: 20px;
}

/* 下段 */
.topicDtail__message {
    text-align: center;
    margin-top: 40px;
}

.topicDtail__catch {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000;
}

.topicDtail__description {
    font-size: 14px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* トピック */
.topicsRow {
    max-width: 1100px;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 30px;
}

.topicsRow .topicsBox {
    width: 31%;
    min-width: 300px;
    margin: auto;
}

img.topics-card-img-top {
    width: 100%;
}

.topics-card-body {
    color: #000;
    text-align: center;
    margin-top: 10px;
}

/* --------------------
   レスポンシブ
-------------------- */
@media (max-width: 768px) {
    .topicDtail__content {
        flex-direction: column;
    }

    .topicDtail__info {
        padding: 15px;
    }

    .topicDtail__catch {
        font-size: 16px;
    }

    .ec-review-card a {
        flex-direction: column;
    }

    .ec-review-card__content {
        width: 100% !important;
    }
}