@charset "UTF-8";
/* CSS Document */

/* 中身-モバイルファースト======================================================================================================== */
#search{
background-color: #ea5504;
color: #fff;
padding: 60px 0;
position: relative;
overflow: inherit;
}
#search .contents_size{
position: relative;
z-index: 20;
}
#search dt{
text-align: center;
margin-bottom: 10px;
}
#search dt .num{
font-weight: 700;
line-height: 1;
color: #ea5504;
background-color: #fff;
width: 80px;
height: 80px;
border-radius: 50%;
margin: 0 auto 10px;
border: solid 1px #ea5504;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#search dt .num span{
font-size: 14px;
display: block;
}
#search dt .num em{
font-size: 40px;
}
#search dt h3{
font-size: 20px;
font-weight: 700;
}

#search dd{
margin-bottom: 40px;
}
#search dd h4{
font-size: 18px;
font-weight: 700;
color: #ffcc00;
margin-top: 20px;
margin-bottom: 10px;
}
#search dd h4:first-child{
margin-top: 0;
}
#search dd ul{
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 5px;
grid-row-gap: 5px;
}
#search dd ul li{
}
#search dd ul li label{
display: block;
color: #ea5504;
background-color: #fff;
padding: 5px;
}
#search dd ul li label:has(:checked){
background-color: #ffcc00;
}
#search dd ul li span{
font-size: 12px;
}
#search .common_btn a{
color: #ea5504;
}
#search .common_btn a::after{
background-color: #ffcc00;
}
#search .illust{
width: 40vw;
position: absolute;
top: -3vw;
left: 0;
z-index: 10;
}

/* PCのみ======================================================================================================== */
@media print, screen and (min-width: 751px){
#search{
padding: 5vw 0;
}
#search dt{
display: flex;
align-items: center;
}
#search dt .num{
margin: 0;
}

#search dt h3{
font-size: 30px;
margin-left: .5em;
}

#search dd h4{
font-size: 24px;
margin-top: 40px;
margin-bottom: 20px;
}
#search dd ul{
grid-template-columns: repeat(4, 1fr);
}
#search dd ul li:nth-child(4n-3){
margin-left: 0;
}
#search dd ul li label{
padding: 15px;
}

#search .common_btn a:hover::before{
background-color: #ffea00;
}

#search .illust{
width: 20vw;
max-width: 314px;
left: 0;
}


}

