
/* ********************************** 製品アーカイブページの設定 ********************************** */

#new_item_list_warapper .pickup_title{
    padding-bottom: 0.5em;
}

#new_item_list_warapper .pickup_title::before {
    content: "";
    background: url(../images/systems/icon/pickup_icon.svg);
    display: inline-block;
    background-size: cover;
    vertical-align: middle;
    width: 1.2em;
    height: 1.4em;
    margin-right: 0.4em;
}

.new_item_ttl{
    margin-top: 0.5em;
    line-height: 1.4em;
}

#new_item_list_warapper .search_box_wrapper {
    text-align: center;
    max-width: unset;
}

#new_item_list_warapper .search_container{
    background-color: var(--notecolor);
    padding: 2em;
}

.item_category_box_wrapper{
    margin-top: 2em;
    text-align: center;
}

.search_title{
    background-color: var(--assortcolor);
    border: 2px solid var(--assortcolor);
    padding: 0.8em 0;
    text-align: center;
}

.search_title::before {
    content: "";
    background: url(../images/systems/icon/search_icon.svg);
    display: inline-block;
    background-size: cover;
    vertical-align: middle;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.4em;
}


.post-type-archive .search_box_wrapper .custom_input,
.post-type-archive .search_box_wrapper .custom_select,
.post-type-archive .search_box_wrapper .custom-search-button {
    width: 9em;
}

.post-type-archive .search_box_wrapper .custom_input{
    background-position: left 0.5em center;
    padding-left: 2em;
}




.category_name_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 2px solid var(--assortcolor);
}

.category_name_box > li{
    border: 1px solid var(--assortcolor);
    padding: 2em;
}

.list_item_cat_ttl{
    margin-top: 1em;
    border-bottom: 1px solid var(--assortcolor);
    padding-bottom: 1em;
    margin-bottom: 0.5em;
}

.category_list_content{
    text-align: left;
}

.category_list_content li{
    line-height: 2em;
}

.category_list_content li a{
    display: block;
    border-bottom: 2px solid transparent;
}


.category_list_content li::before {
    content: "";
    float: left;
    width: 2em; /* 必要に応じて調整 */
    height: 1em; /* 必要に応じて調整 */
    background-image: url(../images/systems/icon/simple_arrow_icon_orange.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
}


.seen_category_list_box_wrapper,
.season_category_list_box_wrapper{
    padding-top: 2.5em;
}

.seen_category_list_box_wrapper > li:nth-child(2){
    padding: 0 2em;
    background-color: var(--assortcolor);
}


.seen_category_list_contents {
    margin: 0em auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列のグリッドを作成 */
    gap: 2em; /* グリッド間のマージンを設定 */
    width: 100%;
    background-color: var(--assortcolor);
}

.seen_category_list_contents > li{
    display: block;
    height: 250px;
    border: 3px solid var(--assortcolor);
    position: relative;

}

/* 最後のliの余白スペースを埋めるための要素 */
.seen_category_list_contents::after {
    content: "";
    grid-column: span 3; /* 3列分のスペースを埋める */
}

.seen_category_list_contents > li a,
.season_category_list_box_wrapper > li a{
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
}

.seen_category_list_contents li a:hover{
    background-color: var(--hovercolor);
    border: 6px solid var(--maincolor);
    border-radius: 30px;
}


.seen_category_list_contents li img{
    position: absolute; /* 絶対位置を指定 */
    top: 50%; /* 上端を親要素の中央に配置 */
    left: 50%; /* 左端を親要素の中央に配置 */
    transform: translate(-50%, -50%); /* 中心を親要素の中央に移動 */
    width: 120px;
    height: auto;
    filter: invert(61%) sepia(82%) saturate(4203%) hue-rotate(12deg) brightness(100%) contrast(101%);
}

.seen_category_list_contents li:nth-child(1) img,
.seen_category_list_contents li:nth-child(2) img,
.seen_category_list_contents li:nth-child(10) img,
.seen_category_list_contents li:nth-child(11) img,
.seen_category_list_contents li:nth-child(12) img{
    width: 150px;
}


.seen_category_list_contents li:nth-child(3) img{
    width: 130px;
}


.seen_category_list_contents li:nth-child(5) img,
.seen_category_list_contents li:nth-child(8) img{
    width: 165px;
}

.seen_category_list_contents li:nth-child(6) img,
.seen_category_list_contents li:nth-child(7) img,
.seen_category_list_contents li:nth-child(9) img{
    width: 145px;
}

.seen_category_list_contents li:nth-child(1) img,
.seen_category_list_contents li:nth-child(4) img,
.seen_category_list_contents li:nth-child(6) img,
.seen_category_list_contents li:nth-child(9) img,
.seen_category_list_contents li:nth-child(10) img{
    top: 45%;
}

.seen_category_list_contents li:nth-child(11) img,
.seen_category_list_contents li:nth-child(12) img{
    top: 40%;
}

.seen_category_list_contents li .seen_ttl,
.season_category_list_box_wrapper li .seen_ttl{
    position: absolute;
    bottom: 2em; /* 下端に配置 */
    left: 50%; /* 左端を中央に配置 */
    transform: translateX(-50%); /* 左端を中央に移動 */
    width: 100%;
    text-align: center;
}

.seen_category_list_contents li .seen_ttl::before,
.season_category_list_box_wrapper li .seen_ttl::before{
    content: "▷";
}








.season_category_box{
    padding: 0em 2em 2em 2em;
    background-color: var(--assortcolor);
}

.season_category_list_contents {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background-color: white;
    padding: 2em 0;
}

/* 最後のliの余白スペースを埋めるための要素 */
.season_category_list_contents::after {
    content: "";
    grid-column: span 4; /* 4列分のスペースを埋める */
}

.season_category_list_box_wrapper li:nth-child(2){
    padding: 0;
}

.season_category_list_contents > li {
    display: block;
    height: 180px;
    border-right: 3px solid var(--assortcolor);
    position: relative;
}

.season_category_list_contents > li:last-of-type{
    border: unset;
}

.season_category_list_box_wrapper li a:hover{
    transform: scale(0.9);
    transition-duration: 0.5s;
}

.season_category_list_box_wrapper li img{
    position: absolute; /* 絶対位置を指定 */
    top: 40%;
    left: 50%; /* 左端を親要素の中央に配置 */
    transform: translate(-50%, -50%); /* 中心を親要素の中央に移動 */
    width: 140px;
    height: auto;
    filter: invert(61%) sepia(82%) saturate(4203%) hue-rotate(12deg) brightness(100%) contrast(101%);
}


.season_category_list_contents li:nth-child(1) img{
    width: 155px;
    top: 45%;
}

.season_category_list_contents li:nth-child(2) img{
    width: 145px;
}

.season_category_list_box_wrapper li .seen_ttl{
    bottom: 0em; /* 下端に配置 */
}

.tag_list_box_wrapper{
    padding-top: 3em;
}

.tag_list_box_wrapper .search_title{
    border: 3px solid var(--assortcolor);
    background-color: white;
}

.tag_list_box_wrapper .search_title::before {
    background: url(../images/systems/icon/tag_icon.svg);
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.3em;
}

.tag_list_contents{
    border: 3px solid var(--assortcolor);
    border-top: unset;
    padding: 2em 2em 0.75em 2em;
    height: fit-content;
    max-height: 400px;
    overflow-y: scroll;
}

.tag_list_contents li a::before{
    content: "#";
}

.tag_list_contents li{
    display: inline-block;
    
}

.tag_list_contents li a{
    display: inline-block;
    padding: 1.5em 3em;
    background-color: var(--assortcolor);
    margin: 0 1.25em 1.25em 0;
    border-radius: 0.75em;
}

.tag_list_contents li a:hover{
    background-color: var(--pointcolor);
    color: white;
}






























