/* CSS Document */

#accessories {
    background: #F9F9F9;
    color: #000000;
}
a:hover {
    opacity: 0.7;
}

/*=================
アクセサリー一覧
===================*/
#accessories_list {
    padding-top: 40px;
}
#accessories_list .lead {
    font-size: 1.6rem;
    text-align: center;
    padding-bottom: 60px;
}
#accessories_list .outer_list {
    max-width: 1020px;
    margin: 0 auto;
}
#accessories_list .accessories_wrap {
    width: 100%;
    border-top: 1px solid #000000;
    padding-top: 33px;
}
#accessories_list .accessories_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 56px 50px;
}
#accessories_list .item_wrap {
    display: flex;
    flex-direction: column;
    width: calc(25% - 150px / 4);
}
#accessories_list .item_wrap .link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: 0.3s;
}
#accessories_list .item_wrap .link .img_box {
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}
#accessories_list .item_wrap .link img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}
#accessories_list .item_wrap .link:hover img {
    transform: scale(1.05);
}
#accessories_list .item_wrap .link h2 {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 8px;
}
#accessories_list .item_wrap .link .type span {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.3;
    background-color: #E6E6E6;
    border-radius: 16px;
    padding: 2px 12px;
}
#accessories_list .item_wrap .link .type span + span {
    margin-top: 4px;
}

@media (max-width: 1024px) {
    #accessories_list .item_wrap {
        width: calc(33.3333% - 100px / 3);
    }
}
@media (max-width: 768px) {
    #accessories_list .lead {
        font-size: 1.4rem;
        padding-bottom: 40px;
    }
    #accessories_list .item_wrap {
        width: calc(50% - 50px / 2);
    }
    #accessories_list .item_wrap .link .type span {
        font-size: 1.2rem;
        padding: 2px 8px;
    }
}
@media (max-width: 390px) {
    #accessories_list .item_wrap {
        width: 100%;
    }
}

/*=================
ステートメント
===================*/
#statement {
    background: #070602;
    padding-top: 120px;
    padding-bottom: 130px;
    color: #FFFFFF;
    height: 180vh;/*sticky固定高さ*/
}

#statement .-w-wrapper {
    display: flex;
    gap: 60px;
    position: sticky;
    top: 40px;
}
#statement .text_wrap {
    width: 60%;
}
#statement .image_wrap {
    width: calc(40% - 60px);
    position: relative;
    height: 500px;
}