@charset "UTF-8";
/* CSS Document */
/*================================.search_area ================================*/
.search_area{
margin-bottom: 104px;
}
.search_area input[type="radio"] ,
.search_area input[type="checkbox"] {
 accent-color: #C65422; /* チェック後の色 */
}
.search_area label{
margin: 0;
}
.search_area button:hover{
cursor: pointer;
}
.search_area .keyword_box{
margin-bottom: 24px;
}
.search_area .keyword_box .wrap {
flex: 1;
display: flex;
}
.search_area .keyword_box .wrap input{
flex: 1;
padding: 24px 24px 24px 0;;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 2px solid #C65422;
box-sizing: border-box;
margin: 0;
}
.search_area .keyword_box .wrap input::placeholder{
color: #6a7181;
font-size: 1.7rem;
}
.search_area .keyword_box .wrap input:focus::placeholder{
color: transparent;
}
.search_area .keyword_box .wrap input[type="text"]:focus{
outline: none;
box-shadow: none;
}
.search_area .keyword_box .wrap button{
display: flex;
justify-content: center;
align-items: center;
width: 100px;
background: url(../images/icon/icon-search-o.svg) no-repeat center;
background-size: 25px auto;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 2px solid #C65422;
padding: 0 8px;
transition: .3s;
}
.search_area .keyword_box .wrap button:hover{
opacity: 0.7;
}
.search_area .keyword_box ul{
display: flex;
align-items: center;
gap: 16px;
margin-left: 24px;
}
.search_area .keyword_box ul li{
display: flex;
align-items: center;
}
.search_area a{
text-decoration: none;
}
.search_area .suggestions{
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 24px;
}
.search_area .suggestions a span{
font-style: italic;
color: #C65422;
margin-right: 8px;
}
.narrow-down dt{
font-size: 1.8rem;
padding: 24px 0;
display: flex;
align-items: center;
cursor: pointer;
}
.narrow-down dt span{
position: relative;
display: block;
width: 40px;
height: 40px;
border: 2px solid #C65422;
border-radius: 50%;
margin-right: 10px;
}
.narrow-down dt span::before{
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 2px;
background-color: #C65422;
}
.narrow-down dt span::after{
transition: all .3s ease;
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) rotate(90deg);
width: 20px;
height: 2px;
background-color: #C65422;
}
.narrow-down dt.open span::after{
transform: translate(-50%, -50%) rotate(180deg);
 opacity: 0;
}
.narrow-down dd{
display: none;
padding: 16px 16px 0;
}
.narrow-down dd ul:not(.search_area ul:nth-of-type(2)){
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 40px;
}
.narrow-down dd ul li:not(.search_area ul:nth-of-type(2) li){
width: calc((100% - 40px) / 5);
}
.narrow-down dd ul li:not(.search_area ul:nth-of-type(2) li):last-child{
width: 100%;
margin-top: 32px;
}
.narrow-down ul:nth-of-type(2){
display: flex;
justify-content: center;
gap:24px;
margin-top: 56px;
}
.narrow-down ul:nth-of-type(2) li:nth-of-type(1) button{
display: block;
width: 320px;
padding: 24px;
color: #C65422;
font-size: 1.8rem;
font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
border: 1px solid #CFCFCF;
font-optical-sizing: auto;
letter-spacing: 0.05em;
text-decoration: none;
background: #CFCFCF url("../images/icon/icon-reset-o.svg") no-repeat right 24px center;
background-size: 20px auto;
transition: 0.3s;
line-height: 1.2;
}
.narrow-down ul:nth-of-type(2) li:nth-of-type(1) button:hover{
color: #fff;
background: #CFCFCF url("../images/icon/icon-reset-w.svg") no-repeat right 24px center;
background-size: 20px auto;
}
.narrow-down ul:nth-of-type(2) li:nth-of-type(2) button{
display: block;
width: 320px;
padding: 24px;
color: #C65422;
font-size: 1.8rem;
font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
border: 1px solid #C65422;
font-optical-sizing: auto;
letter-spacing: 0.05em;
text-decoration: none;
background: #fff url("../images/icon/icon-search-o.svg") no-repeat right 24px center;
background-size: 20px auto;
transition: 0.3s;
line-height: 1.2;
}
.narrow-down ul:nth-of-type(2) li:nth-of-type(2) button:hover{
color: #fff;
background: #C65422 url("../images/icon/icon-search-w.svg") no-repeat right 24px center;
background-size: 20px auto;
}
@media only screen and (max-width: 767px) {
.search_area{
margin-bottom: 32px;
}
.search_area input[type="checkbox"] {
margin-right: .5rem;
transform: scale(1.8);
}
.search_area .keyword_box{
margin-bottom: 0;
}
.search_area .keyword_box .wrap input{
padding: 16px 8px 18px 0;
}
.search_area .keyword_box .wrap input::placeholder{
font-size: 1.5rem;
}
.search_area .keyword_box .wrap button{
width: 50px;
background: url(../images/icon/icon-search-o.svg) no-repeat center;
background-size: 20px auto;
padding: 0;
}
.search_area .suggestions{
gap: 5px 10px;
margin-top: 16px;
}
.search_area .suggestions a{
font-size: 1.5rem;
}
.search_area .suggestions a span{
margin-right: 4px;
}
.narrow-down dt{
font-size: 1.6rem;
padding: 16px 0 8px;
}
.narrow-down dt span{
width: 32px;
height: 32px;
margin-right: 10px;
}
.narrow-down dt span::before,
.narrow-down dt span::after{
width: 10px;
height: 2px;
}
.narrow-down dd{
padding: 0;
}
.narrow-down dd label{
display: inline-block;
font-size: 1.5rem;
}
.narrow-down dd ul:not(.search_area ul:nth-of-type(2)){
gap: 16px;
margin-bottom: 24px;
padding: 8px;
}
.narrow-down dd ul li:not(.search_area ul:nth-of-type(2) li){
width: auto;
}
.narrow-down dd ul li:not(.search_area ul:nth-of-type(2) li):last-child{
margin-top: 16px;
}
.narrow-down ul:nth-of-type(2){
flex-direction: column;
gap:10px;
margin-top: 32px;
}
.narrow-down ul:nth-of-type(2) li:nth-of-type(1) button,
.narrow-down ul:nth-of-type(2) li:nth-of-type(2) button{
width: 100%;
padding: 16px;
font-size: 1.6rem;
}
}

/*================================.item_area ================================*/
.toolbar{
display: flex;
justify-content: space-between;
margin: 16px 0;
}
.item_area .toolbar:nth-of-type(2){
justify-content: flex-end;
}
body:not(.home) main .toolbar p {
margin-bottom: 0
}
.toolbar span{
font-size: 40px;
font-family: Lato;
font-weight: 500;
margin-right: 4px;
}
.toolbar label{
margin: 10px 0;
}
.pager ul{
display: flex;
gap: 8px;
font-family: Lato;
}
.pager ul li.current{
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
color: #fff;
background: #C65422;
}
.pager ul li a{
position: relative;
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
transition: .3s;
}
.pager ul li a:hover{
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
color: #fff;
background: #C65422;
}
.pager ul li.prev a::before,
.pager ul li.next a::after{
position: absolute;
content: '';
display: block;
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
}
.pager ul li.prev a::before{
left: 50%;
border-bottom: solid 1px #333;
border-left: solid 1px #333;
transform: translateY(-50%) rotate(45deg);
}
.pager ul li.prev a:hover::before{
left: 50%;
border-bottom: solid 2px #fff;
border-left: solid 2px #fff;
transform: translateY(-50%) rotate(45deg);
}
.pager ul li.next a::after{
right: 50%;
border-top: solid 1px #333;
border-right: solid 1px #333;
transform: translateY(-50%) rotate(45deg);
}
.pager ul li.next a:hover::after{
right: 50%;
border-top: solid 2px #fff;
border-right: solid 2px #fff;
transform: translateY(-50%) rotate(45deg);
}
.item_area .created-year{
display: flex;
flex-wrap: wrap;
gap: 3px;
}
.item_area .created-year-ad span:not(:last-child)::after,
.item_area .created-year-jp span:not(:last-child)::after{
content: " - "
}
.item_area .created-year-ad span:first-child::before{
content: "（"	
}
.item_area .created-year-ad span:last-child::after{
content: "）"	
}
.item_area .dimensions span:not(:last-child)::after{
content: " × "
}
.item_list{
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.item_list li{
width: calc((100% - 60px) / 4);
border: #C65422 1px solid;
}
.item_list li a{
display: flex;
flex-direction: column;
height: 100%;
text-decoration: none;
transition: .3s;
}
.item_list li a:hover{
color: #333;
opacity: 0.7;
}
.item_list li figure{
position: relative;
aspect-ratio: 4 / 3;
background: #f5f5f5;
}
.item_list li figure img{
object-fit: contain;
width: 100%;
height: 100%;
line-height: 0;
position: absolute;
top: 0;
transition: 0.3s;
}
.item_list li .text_wrap{
display: flex;
flex-direction: column;
flex: 1; 
padding: 8px 16px 16px;
}
.item_list li .ttl{
line-height: 1.5;
font-weight: 700;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2; /* ← 表示したい行数 */
overflow: hidden;
margin-bottom: 16px;
}
.item_list li dl div:not(.created-year div){
display: flex;
gap: 8px;
margin-bottom: 8px;
}
.item_list li dl div:last-of-type{
margin-bottom: 0;
}
.item_list li dl{
line-height: 1.2;
font-size: 1.5rem;
margin-top: auto; /* ← dlを一番下へ */
}
.item_list li dl dt{
width: 30%;
}
.item_list li dl dd{
width: 70%;
}
.item_area .btn01 a{
margin: 64px auto 0;
}
.item_area .wrap{
display: flex;
flex-wrap: wrap;
gap: 40px;
margin-bottom: 72px;
}
.item_area .wrap figure{
width: 460px;
height: auto;
position: relative;
aspect-ratio: 1 / 1;
background: #fff;
}
.item_area .wrap figure img{
object-fit: contain;
width: 100%;
height: 100%;
line-height: 0;
position: absolute;
object-position: top left;
}
.item_area .text_wrap:not(.item_list li .text_wrap){
width: 620px;
}
.item_area .collection_ttl{
font-size: 3rem;
font-weight: 600;
line-height: 1.5;
margin-bottom: 56px;
}
.item_area .collection_ttl span{
display: block;
font-size: 1.5rem;
font-weight: 500;
margin-top: 16px;
}
.item_area .artist{
font-size: 2rem;
margin-bottom: 56px;
}
.item_area .collection_data h5.ttl{
margin-bottom: 0;
font-size: 1.7rem;
border-left: none;
border-bottom: 3px solid #333;
padding: 0 0 8px;
}
.item_area .collection_data table{
margin: 0;
border-top: none;
}
.item_area .collection_data table th{
background: #fff;
padding: 30px 30px 30px 0;
width: 35%;
font-weight: 500;
}
.item_area .collection_data table td{
padding: 30px;
}
.item_area .collection_data table th,
.item_area .collection_data table td{
border-bottom: 1px solid #e5e0df;
}
.item_area .collection_data .created-year{
gap: 10px;
}
@media only screen and (max-width: 767px) {
.item_area .toolbar:nth-of-type(2){
justify-content: center;
}
.item_area .toolbar:nth-of-type(1) .pager{
display: none;
}
.item_list{
justify-content: center;
gap: 10px;
}
.item_list li{
width: 90%;
}
.item_list li .text_wrap{
padding: 8px 16px;
}
.item_list li .ttl{
margin-bottom: 8px;
}
.item_list li dl{
font-size: 1.4rem;
}
.item_area .btn01 a{
margin: 32px auto 0;
}
.item_area .wrap{
gap: 10px;
margin-bottom: 0;
}
.item_area .wrap figure{
aspect-ratio: auto;
height: auto;
}
.item_area .wrap figure img{
position: static;
height: auto;
}
.item_area .text_wrap:not(.item_list li .text_wrap){
width: 100%;
}
.item_area .collection_ttl{
font-size: 2.4rem;
margin-bottom: 16px;
}
.item_area .collection_ttl span{
margin-top: 8px;
}
.item_area .artist{
font-size: 1.7rem;
margin-bottom: 24px;
}
.item_area .collection_data h5.ttl{
font-size: 1.6rem;
}
.item_area .collection_data table th{
padding: 16px 16px 16px 0;
width: 30%;
font-size: 1.5rem;
}
.item_area .collection_data table td{
padding: 16px;
font-size: 1.5rem;
}
.item_area .collection_data .created-year{
gap: 10px;
}
}