body.selModalBody{
	overflow: hidden;
}

.selModal{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999999;
	display: none;
}

.selModalOverlay{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
}

.selModal .selModalInner{
	position: absolute;
	box-sizing: border-box;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	width: 95%;
	max-width: 600px;
	max-height: 95%;
	border-radius: 0 0 5px 5px;
	overflow-y: hidden;
}

.selModal .selModalInner .selModalHeader{
	background-color: #EFEFEF;
	text-align: right;
	padding: 10px;
	border-radius: 5px 5px 0 0;
}

.selModal .selModalInner .selModalHeader::after{
	content: "";
	display: block;
	clear: both;
}

.selModalCloseIcon{
	display: block;
	width: 25px;
	height: 25px;
	position: relative;
	cursor: pointer;
	float: right;
}
.selModalCloseIcon span::before,
.selModalCloseIcon span::after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 84%;
	height: 10%;
	margin: -8% 0 0 -42%;
	background: #555555;
}
.selModalCloseIcon span::before{
	transform: rotate(-45deg);
}
.selModalCloseIcon span::after{
	transform: rotate(45deg);
}

.selModal .selModalInner .selModalList{
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	overflow-y: auto;
}

.selModal .selModalInner ul{
	margin: 0;
	padding: 0;
	color: #333;
	background-color :#FFF;
	padding-bottom: 1px;
	box-sizing: border-box;
}

.selModal .selModalInner ul li{
	display: block;
	position: relative;
	margin: 0 0 -1px 0;
	padding: 10px 25px 10px 15px;
	border: 1px solid #DDD;
	cursor: pointer;
	box-sizing: border-box;
}

.selModal .selModalInner ul li img{
	height: auto;
	vertical-align: middle;
	margin-right: 5px;
	max-width: 40px;
}

.selModal .selModalInner ul li.selected{
	background-color: #dddddd;
}

.selModal .selModalInner ul li.selected::before{
	position: absolute;
	content: '';
	display: block;
	height: 100%;
	top: 0;
	left: 0;
	width: 4px;
	background-color: #181a5e;
}

.selModal .selModalInner ul li::after{
	position: absolute;
	top: 50%;
	right: 15px;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 1px solid #888;
	border-right: 1px solid #888;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.selModalButton {
    display: inline-flex;            /* ← ここ重要 */
    align-items: center;             /* 縦中央 */
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 60px;                    /* ← 高さ固定 */

    padding: 0 22px 0 12px;          /* ← 上下padding削除 */
    
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;

    text-decoration: none;
    line-height: 1;                  /* ← 崩れ防止 */
    cursor: pointer;
    text-align: left;
    font-size: inherit;
	color: rgba(8, 7, 36, 0.5);  
}

.selModalButton::before, .selModalButton::after{
	content: '';
	position: absolute;
	z-index: 2;
	right: 7px;
	width: 0;
	height: 0;
	border: 4px dashed;
	border-color: #333 transparent;
	pointer-events: none;
}

.selModalButton::before{
	border-bottom-style: solid;
	border-top: none;
	top: 30%;
}

.selModalButton::after{
	border-top-style: solid;
	border-bottom: none;
	bottom: 30%;
}

.selModal .selModalInner ul li.totch{
	background-color: #EFEFEF;
}

	.selModal .selModalInner ul li {
		font-size: 16px;
	}

@media screen and (max-width: 767px) {

.selModalButton {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 45px;
    padding: 0 22px 0 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    text-align: left;
    font-size: inherit;
    color: rgba(8, 7, 36, 0.5);
}
	
fieldset div.content input[type=text], fieldset div.content input[type=email], fieldset div.content input[type=tel], fieldset div.content textarea, fieldset div.content select {

    height: 45px;
}
	
::placeholder {
  color: rgba(8, 7, 36, 0.5);        /* 色（グレーなど） */
  font-size: 15px;    /* 文字サイズ */
	font-weight: normal;
	font-family: 'Zen Old Mincho', serif !important;
}
	
	.selModal .selModalInner ul li {
		font-size: 15px;
	}
	
    fieldset div.content p {
		font-size: 14px;
    }
	
}