main{
    font-feature-settings: "palt";
}
.mv{
    width: 100%;
    background-color: var(--base-color);
    padding: 4rem 0;
}
.wrap{
    padding: 0 20px;
}
.mv h2{
    text-align: center;
}
.mv h2 img{
    max-height: 32px;
}

.list-area{
    margin: 4rem 0;
}
.list-lead{
    line-height: 1.6;
    margin: 4re;
}

/* サイド検索バー
===============================================================*/
#side-search-box{
	display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    right: -390px;
    width: 390px;
    height: 100%;
    transition: .1s all;
	z-index: 1000;
}


#side-trigger{
    position: fixed;
    width: 5rem;
    padding: 3rem 1.5rem;
    font-size: 1.6rem;
    background: var(--main-color);
	box-shadow: 0 0 8px #7d7d7d;
    color: #fff;
    right: 0;
    top: 250px;
    font-weight: normal;
    transition: .1s all;
    line-height: 1.15;
    z-index: 10;
	cursor: pointer;

}
#side-trigger u{
	vertical-align: sub;
}
#side-search-box.open{
	right: 0;
}
#side-search-box.open #side-trigger{
	right: 340px;
	opacity: 1;
}

#side-search-box .search-wrap{
	background-color: #fff;
	width: 340px;
	position: absolute;
    right: 0;
    height: 100%;
	box-shadow: 0 0 8px #666;
    overflow: hidden;
	display: flex;
	flex-direction: column;
}

.search-header{
	padding: 20px 0 20px;
	display: flex;
	justify-content: space-between;
	box-shadow: 0 2px 3px #5454541f;
}
.search-header .back{
	display: block;
	position: relative;
}

.search-header .back::before{
	content: '×';
    font-size: 30px;
    color: #333;
    position: absolute;
    left: 15px;
    top: -6px;
	cursor: pointer;
}
.search-title{
	font-size: 2rem;
	width: 100%;
	text-align: center;
	font-weight: bold;
}
.triangle-arrow:first-child{
	margin-left: 1.5rem;
}
.triangle-arrow{
	display: inline-block;
	width: 0;
    height: 0;
    border-top: solid 10px transparent;
    border-right: solid 10px transparent;
    border-bottom: solid 10px transparent;
    border-left: solid 10px #004c81;
}

.search-content{
	height: 100%;
	padding: 20px 16px;
	overflow-y: auto;
}
.search-footer{
	padding: 20px 0;
	margin: 0 16px;
	display: flex;
	border-top: 1px solid #ccc;
}


#search-button{
	display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color) !important;
    border: none;
    width: 100%;
	padding: 1rem;
    font-size: 1.6rem;
    color: #fff !important;
	font-weight: bold;
    cursor: pointer;
	margin-left: 15px;
	white-space: nowrap;
}

#search-reset{
    border: 1px solid var(--main-color);
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--main-color);
    background: transparent;
	cursor: pointer;
	width: 41%;
	white-space: nowrap;
}

/* 検索ボタン */
.search-wrap h3{
	font-size: 1.6rem;
	/* font-weight: bold; */
	position: relative;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
	border-bottom: 1px solid #cccccc;
}
.content-trigger{
	position: relative;
	color: #999;
    width: 1.4rem;
    height: 1.4rem;
	display: inline-block;
    margin-left: 1rem;
}

.search-wrap h3::after{
	content: '';
	width: 10px;
	height: 10px;
	border-top: solid 2px var(--main-color);
	border-right: solid 2px  var(--main-color);
	position: absolute;
	right: 15px;
	transform: rotate(315deg);
	transition: all .3s;
}


.search-wrap h3.open::after{
	transform: rotate(135deg);
	transition: all .3s;
}

/* ラジオボタン */
.search-radio,
.search-checkbox
{
	display: flex;
	flex-wrap: wrap;
	padding: 1rem 0 0;
}
.radio {
	display: none;
}

.search-checkbox input{
    display: inline-block;
    width: auto;
    appearance: none;
    border: 1px solid #ccc;
    width: 13px;
    height: 13px;
    padding: 0;
    vertical-align: text-top;
    position: relative;
    color: #fff;
    cursor: pointer;
}

.search-checkbox input:checked {
    border: 1px solid  var(--main-color);
    background-color: var(--main-color);
    color: var(--main-color);
}
.search-checkbox input:checked::before {
    content: "";
    background: #fff;
    transition: all .2s ease-in-out;
    position: absolute;
    left: 0px;
    top: 7px;
    width: 5px;
    height: 2px;
    -webkit-transform: rotate(45deg);
}
.search-checkbox input:checked:after {
    position: absolute;
    content: "";
    background: #fff;
    transition: all .2s ease-in-out;
    right: 4px;
    bottom: 0px;
    width: 2px;
    height: 9px;
    transition-delay: .2s;
    -webkit-transform: rotate(40deg);
}
.search-radio label,
.search-checkbox label {
	margin-right: .7rem;
	margin-bottom: .7rem;
	display: block;
	padding: .8rem;
	font-size: 1.4rem;
	font-weight: normal;
	border: 1.5px solid var(--border-graycolor);
    text-align: center;
	cursor: pointer;
}
.radio:checked + label {
	color: var(--main-color);
	border-color: var(--main-color);
}

#result-conditions{
	padding: 0 0 2rem;
	font-size: 1.8rem;
	white-space: nowrap;
	display: none;
}
#result-conditions > div{
	display: inline-flex;
	align-items: flex-start;
}
#result-conditions ul{
	display: flex;
	flex-wrap: wrap;
}
#result-conditions ul li{
	margin-right: 1.5rem;
	margin-bottom: 1.3rem;
}
#result-info li{
	display: none;
}
#no-result,#no-json{
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	display: none;
}
#result-number{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
i{
	font-weight: 500;
}
#result-number i,
#result-number span{
	display: inline-block;
	padding: 0 1rem;
}
#result-number i{
	padding-left: 0;
}

#list-result-wrap{
	margin-top: 4rem;
	padding: 4rem 0;
	background-color: var(--base-color);
}
/* .list-desplay{
	padding: 3rem 0;
} */
@media (max-width: 600px) {
	.dark.open{
		position: fixed;
		inset: 0;
		z-index: 1000;
		background-color: #3030302b;
	}

	#side-trigger {
		width: 4.3rem;
		padding: 2rem 1rem;
		font-size: 1.4rem;
		text-align: center;
		top: 250px;
		opacity: .8;
	}
	#side-trigger .icon img {
		max-width: 16px;
	}

	#search-button,
	#search-reset {
		font-size: 1.4rem;
		padding: .7rem;
	}
	#search-button{
		margin-left: 10px;
	}

	#no-result{
		font-size: 2.5rem;
	}

	#result-conditions,
	#result-number{
		font-size: 1.5rem;
	}
	#result-conditions ul li{
		margin-right: 1.3rem;
	}

}

@media (max-width: 400px) {
	#side-search-box.open #side-trigger {
		right: 80%;
	}
	#side-search-box {
		right: -400px;
		width: 97%;
	}
	#side-search-box .search-wrap {
		width: 82.5%;
	}
}


/* 結果表示
===============================================================*/

#list-result{
    display: flex;
    flex-wrap: wrap;
	gap: 15px;
}
#list-result > li{
    width: 32%;
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;

	/* margin-bottom: 15px;
	margin-left: 15px; */
}
#list-result .nendo-title{
	font-size: 1.6rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 1rem;
}
/* #list-result > li:nth-last-of-type(3n-1){
	margin-left: 0;
} */
#list-result li a{
    display: block;
	flex-grow: 1;
	background-color: #fff;
    border: 1px solid var(--border-graycolor);
}
#list-result li .list-text{
    padding: 1.2rem;
}
#list-result li h3{
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: .5rem;
    line-height: 1.6;
}
#list-result li span{
    font-size: 1.4rem;
    font-weight: 400;
}
#list-result li p{
    margin-top: 1rem;
    margin-bottom: .8rem;
    line-height: 1.6;
    font-weight: 400;
    font-size: 1.4rem;
	overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.cat-list {
    padding: 0 1.5rem 0rem 1.5rem;
}
.cat-list ul{
    display: flex;
    flex-wrap: wrap;

}
.cat-list ul li{
    padding: .8rem;
    font-size: 1.3rem;
    border: 1px solid var(--border-graycolor);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 1024px){
    /* #list-result > li{
		margin-left: 10px;
    } */
	#list-result{
		gap: 5px;
	}
}
@media (max-width: 768px){
    #list-result > li{
        width: 49%;
		/* margin-left: 10px; */
    }
	/* #list-result > li:nth-last-of-type(3n-1){
	margin-left: 10px;
}
	#list-result > li:nth-of-type(odd){
		margin-left: 0px;
    } */
}

@media (max-width: 550px){
    #list-result > li{
        width: 100%;
		margin-left: 0;
    }
}