.site_search_open{
	overflow:hidden;
}
.search_area_wrap{
	opacity:0;
	visibility:hidden;
	left: -100vw;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
	top: 24%;
	position: fixed;
	width:100%;
	z-index: 10001;
}

.site_search_open .search_area_wrap{
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
	left:50%;
	visibility:visible;
	transform:translateX(-50%);
	opacity:1;
}

.site_search_open .search_area_wrap .overlay{
	position:fixed;
	opacity:1;
	width: 200vw;
	height:200vh;
	top: -100vh;
	left: -1px;
	background: rgba(84, 84, 84, 0.7);
}

.site_search_area{
	max-width: 525px;
	margin: 0 auto;
	width: 90%;
}

.site_search_area form{
	position: relative;
	box-sizing:border-box;
	padding: 1px 0 0;
	border-radius: 5px;
}

.search-inputarea{
	justify-content: space-between;
	display: flex;
	box-sizing: border-box;
	border-radius: 3px 3px 0 0;
	margin-bottom: 2%;
}

.search-inputarea .submit-wrapper{
	display: inline-block;
	background: #000000;
	border-radius: 3px;
	margin-left: 5px;
	/* box-shadow: 0 1px 2px #6f6f6f; */
	font-size: 115%;
	width: 16%;
	transition:background 0.2s;
	box-sizing: border-box;
}

.search-inputarea .submit-wrapper:hover{
	background:#8a8a8a;
}


.search-inputarea input[type="submit"]{box-sizing: border-box;border:none;background:none;height:100%;width:100%;font-size:90%;cursor: pointer;color: #ffffff;}


.search-inputarea input[type="text"]{
    -webkit-appearance: none;
    background: #ffffff url(/share/images/submitbtn.png) no-repeat left center;
    border: none;
    padding: 3.5% 0 3% 10%;
    width: 83%;
    vertical-align: middle;
    font-size: 123%;
    height: 2em;
    box-sizing: border-box;
    flex-grow: 1;
    background-size: contain;
    border-radius: 3px;
}

.site_search_bt_close {
	text-align:right;
}


.site_search_bt_close button{
	display:inline-block;
	position:relative;
	background:#5c5c5c;
	z-index:1000;
	width: 10vw;
	height: 10vw;
	color:transparent;
	max-width: 30px;
	max-height: 30px;
	cursor:pointer;
	border:none;
	top: 0;
	right: -1vw;
	border-radius: 100%;
}
.site_search_bt_close button::before,
.site_search_bt_close button::after{
	content:"";
	display:inline-block;
	width: 50%;
	height:2px;
	background:#f0f0f0;
	transform-origin:center;
	position:absolute;
	top:calc(50% - 1px);
	left:50%;	
}
.site_search_bt_close button::before{
	transform: translateX(-50%) rotate(45deg);
}
.site_search_bt_close button::after{
	transform: translateX(-50%) rotate(-45deg);
}


.site_search_area .search-words{
	display:flex;
	align-items:center;
	margin: 0;
	line-height: 1.3;
	font-size: 96%;
	flex-direction: column;
}

.site_search_area .search-words dt{
    color: #ffffff;
    font-size: 100%;
    white-space:nowrap;
    padding-bottom: 0;
    text-align: left;
    font-weight: bold;
    width: 100%;
}

.site_search_area .search-words a {
    background: rgba(222, 222, 222, 0.9);
    border-radius: 2px;
    color: #000000;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    padding: 0.5em;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.site_search_area .search-words a:before {
    content:"";
    width: 0.25em;
    height: 0.25em;
    display: inline-block;
    border-bottom: solid 2px #777777;
    border-right: solid 2px #777777;
    transform: rotate(-45deg) translateY(-0.1em);
    margin-right: 0.5em;
    vertical-align: middle;
}
.site_search_area .search-words ul{
	text-align:left;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.site_search_area .search-words li{
	display:inline-block;
	margin-bottom: 0.25em;
	margin-top: 0.25em;
	min-width: 32%;
	margin-right: 1%;
	text-align: center;
	box-shadow: 0 1px 3px #000000;
}
.site_search_area .search-words li:not(:last-of-type){
}

.site_search_btn{
	position:fixed;
	cursor:pointer;
	transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
	right: 0;
	z-index:10000;
	top: 64px;
	width: 64px;
	height: 64px;
	opacity:1;
	visibility:visible;
	min-width: 44px;
	min-height: 44px;
}

.site_search_btn img{
	max-width:100%;
}

.site_search_open .site_search_btn{
	display:inline-block;
	opacity:0;
	visibility:hidden;
	transition: opacity 0.3s ease-out, visibility 0s ease-out,width 0s;
}

.site_search_open .site_search_btn img{
	width:100%;
	max-width:100%;
}


@media screen and (min-width: 641px){

.site_search_bt_close button{
	top:0.65vw;
}

.search-inputarea input[type="text"]{font-size: 110%;}

.search-inputarea .submit-wrapper{
	background:#000000;
}

.search-inputarea input[type="text"]{
	padding: 8px 0% 8px 10%;
	box-sizing: content-box;
}

.site_search_area .search-words{
	flex-direction: row;
	padding:0.85em 1em 0.65em;
	background-color: rgba(35, 35, 35, 0.85);
}

.site_search_area .search-words a{
	padding:0;
	color: #ffffff;
	background: none;
}


.site_search_area .search-words ul{
	justify-content: space-between;
}
.site_search_area .search-words li{
	/*margin: 0 1em 0 0;*/
	margin: 0 2em 0 0;
	box-shadow: none;
	text-align: left;
	min-width: auto;
}

.site_search_area .search-words dt{font-size: 100%;padding:0;box-shadow:none;margin-right:3%;border-right: solid 1px #cacaca;padding-right: 1em;flex-basis: auto;font-weight: normal;width: auto;/* color: #000000; */}
.site_search_area .search-words dd{flex-grow:1;}

	.search-inputarea{
		padding:1.5%;
		margin-bottom: 5px;
		background: rgba(255, 255, 255, 0.49);
	}

	.site_search_area .search-words a:before {
		border-color:#949494;
		margin-right:0.25em;
	}

}
@media screen and (min-width:980px){
		.site_search_btn{
			        right: auto;
        left:0;
		top: 114px;
		width: 64px;
		height: 64px;
	}
}