.searchContentAreaWrapper{
    z-index: 2001;
    position: fixed;
}
.searchContentArea{
    width:100vw;
    height:0vh;
	background-color: rgb(240, 240, 240, 0.8);
	overflow:hidden;
	cursor:pointer;
	
	/* animation */	
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;	
}
.searchContentArea.view{
    height:100vh;
    overflow: auto;
}
.SearchAreacloseBtn{
    font-size: 30pt;
    font-weight: 100;
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
}
.searchformKey,.searchform{
	/*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    padding: 30px;
    border: solid 0.5px #eeeeee;
     
}
.formArea{
    background-color: #f8f8f8;
    width: 600px;
    margin-left: calc((100% - 600px) / 2);
    margin-top: 80px;
	position:relative;
}
.formArea > .closeFormBtn{
	position:absolute;
    top: 15px;
    right: 15px;
}
.searchform > .caption,.searchform > .caption{
	font-size:130%;
    margin-bottom:15px;
}
.searchform > .parts{
/*    margin-bottom:25px;	*/
    position:relative;
    display:inline-block;
}
.searchform > .line{
    margin-top:10px;
    margin-bottom:30px;
}
.searchform > .line::before{
    display: inline-block;
    width: calc(20%);
    height: 0.5px;
    background-color: black;
    content: " ";
    margin-bottom: 15px;
    margin-right: 10px;
    transform: translate(0,11px);
}
.searchform > .line::after{
        display: inline-block;
        width: calc(80% - 80px);
        height: 0.5px;
        background-color: black;
        content: " ";
        margin-bottom: 15px;
        margin-left: 10px;
        transform: translate(0,11px);
}

.searchform > .SearchDisplayTriggerButtonS{
    padding-top:6px;
    top: 2px;
    left: calc(100% - 50px);
    width: 30px;
    height: 30px;
    background: lightgray;
}
.searchform > .SearchDisplayTriggerButtonS > .SearchDisplayTriggerButtonCircleS{
    margin-left: 12px;
    height: 10px;
    width: 10px;
    border: solid 1px;
}
.searchform > .SearchDisplayTriggerButtonS > .SearchDisplayTriggerButtonLineS{
    margin-left: 12px;
    border-bottom: solid 1px;
    width: 14px;
}
select.SearchSelectAreaS{
	/* Graphic */
    width: 280px !important;
    margin-right: 20px;
    margin-bottom: 20px;
	/* Font */
    font-size:10pt;
    cursor: pointer;
}
.searchLock{
	overflow:hidden;
}

select {
    -webkit-appearance: none;
    appearance: none; /* デフォルトの矢印を非表示 */
  }
  select::-ms-expand {
    display: none; /* デフォルトの矢印を非表示(IE用) */
  }
  /* セレクトボックスの矢印デザイン変更 */
  .searchform > .searchParts::after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4.5px solid gray;
	content: "";
	position: absolute;
	right: 29px;
	top: 46px;
	width: 0;
	pointer-events: none; /* ポインターイベントを無効化 */

  }
  .SearchSelectAreaS {
    -webkit-appearance: none;
    appearance: none; /* デフォルトの矢印を無効 */
  }
  .SearchSelectAreaS::-ms-expand {
    display: none; /* デフォルトの矢印を無効(IE用) */
  }

input.SearchTextAreaS {
	/* Layout */
    width: 280px !important;
    height:36px;
    margin-right:20px;

	/* Graphic */
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
    border: 1px solid #000000;
    border-color: #dddddd;
    background-color: #fff;
    padding-left: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 25px;
	
	/* Font */
    color: #555555;
    letter-spacing:0.1em;
    font-size:10pt;
}
button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    /* width: 150px; */
    border-style: solid;
    border-width: 0.5px;
    background-color: black;
    border: solid 1px #dddddd;
    color: white;
    text-align: center;
    transition: background-color 0.75s ease;
    transition: color 0.75s ease;
    font-size: 12pt;
    letter-spacing: 0.1em;
    cursor: pointer;
}
button:hover{

	/* Design */
	border-style:solid;
	border-width:0.5px;
	background-color:#ffffff;
	color:black;
	text-align:center;
	cursor:pointer;
}
.PageContentsProductSearchTextAreaS{
    width: 240px;
    border: solid 1px;
    padding-left: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 20px;
}

/*====================================================================================*/
/* スマフォ縦表示
/*====================================================================================*/
@media only screen and (max-width: 1024px) and (orientation:portrait){
	.formArea {
		background-color: #f8f8f8;
		width: calc(100% - 50px);
		margin-left: 25px;
		margin-top: 120px;
	}
	.searchform {
        width: 100%;
    }
	select.SearchSelectAreaS {
		width: calc(100% - 60px) !important;
	}
	input.SearchTextAreaS {
		width: calc(100% - 60px) !important;
	}
}

@media only screen and (max-height: 800px) and (orientation:portrait){
	.formArea{
        margin-top: 25px;			
	}
}

@media only screen and (max-height: 630px) and (orientation:portrait){
	.formArea{
        margin-top: 25px;			
	}
}