.search_panel {
    width: 100%;
}
.search_panel_flame {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #fff;
    clear: both;
}
.search_panel_flame:hover {
    border: 1px solid #00479d;
}
.search_panel_flame h2 {
	font-size: 14px;
    padding: 0px 38px;
    background-image: url(/img/icon_search.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    margin-bottom: 10px;
}
.search_panel_flame h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    padding: 0 38px;
    background-image: url(/img/icon_search.svg);
    background-size: 24px;
    background-repeat: no-repeat;
}
.search_btn {
    width: 120px;
    height: 50px;
    margin: -60px 10px 0 0;
    padding: 0;
    float: right;
    color: #fff;
    background-color: #ec2552;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 4px 4px 8px #c5c2c2;
    border: 0px;
    font-weight: bold;
}
.search_btn:hover {
    box-shadow: 6px 6px 10px #c5c2c2;
}
.search_panel_table {
	width: calc(100% - 140px);
}
.search_panel_table .message {
    box-sizing: border-box;
    color: red;
    display: none;
    position: absolute;
    top: 6px;
    left: 270px;
    white-space: nowrap;
}
.search_panel_table .search_item {
	display: inline-block;
}
.search_panel_table ul {
	display: table;
    margin-left: 10px;
}
.search_panel_table li {
    display: table-cell;
	height: 30px;
    vertical-align: middle;
    position: relative;
}
.search_panel_th {
    background-color: #e7e7e7;
    font-size: 12px;
    font-weight: bold;
    width: 100px;
    box-sizing: border-box;
    text-align: left;
    padding-left: 8px;
    background-size: 1em;
    background-repeat: no-repeat;
    background-position: right 0.5em center;
}
.search_panel_th .question_mark {
    width: 16px;
    float: right;
    margin: 1px 5px 0 0;
}

/*エリア検索パネル*/
.search_panel_selected_city,
.search_panel_selected_town {
    font-weight: bold;
    text-decoration: underline;
}
.search_panel_change_city,
.search_panel_change_town {
    height: 100%;
    width: 70px;
    text-align: center;
    line-height: 28px;
    border: 1px solid;
    border-radius: 6px;
    box-shadow: 2px 2px 4px #c5c2c2;
}
.search_panel_change_city:hover,
.search_panel_change_town:hover {
    box-shadow: 4px 4px 4px #c5c2c2;
}
.search_panel_area_item {
	width: 270px;
    box-sizing: border-box;
    padding: 0 0 0 10px;
}

/*FW検索パネル*/
.search_panel_fw_item {
	width: 325px;
    box-sizing: border-box;
    padding: 0 0 0 10px;
}
.fw_text_area {
    width: 245px;
}

/* 駅選択パネル */
.search_panel_station_item {
	width: 645px;
    box-sizing: border-box;
    padding: 0 0 0 10px;
}
.search_panel_selected_station {
    font-weight: bold;
    text-decoration: underline;
    margin-right: 10px;
}
.search_panel_change_station {
    height: 100%;
    width: 70px;
    text-align: center;
    line-height: 28px;
    border: 1px solid;
    border-radius: 6px;
    box-shadow: 2px 2px 4px #c5c2c2;
    display: inline-block;
}
.search_panel_change_station:hover {
    box-shadow: 4px 4px 4px #c5c2c2;
}



/* ツールチップ */
.tooltip {
	float:right;
}
.tooltip span {
    display: none;
    padding: 5px;
    z-index: 1;
}
.tooltip:hover span{
    display: inline;
    position: absolute;
    border: 1px solid rgba(197, 194, 194, 0.84);
    border-radius: 2px;
    background: #fff;
    font-size: 10px;
	font-weight: normal;
}
.tooltip span.tooltip_facility {
    margin: -47px 0 0 0px;
    width: 560px;
}
.tooltip span.tooltip_indoor_outdoor {
    margin: -47px 0 0 0px;
    width: 420px;
}
.tooltip span.tooltip_size {
    margin: -77px 0 0 0px;
    width: 530px;
}
.tooltip span.tooltip_other {
    margin: -32px 0 0 0px;
    width: 380px;
}
.search_panel_td {
    width: 125px;
    font-size: 12px;
    box-sizing: border-box;
    padding-left: 10px;
}
.search_panel_blank {
	width: calc(100% - 375px);
	z-index: -1;
}
.search_panel_message {
	width: calc(100% - 375px);
}



/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
.modal_ckb {
    padding: 3px 0 0 25px;
    margin-left: 12px;
    position: absolute;
    top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 99%;
    box-sizing: border-box;
}
.modal_ckb::before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    border-radius: 4px;
}
input[type=checkbox]:checked + .modal_ckb::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 2px solid #002853;
    border-right: 2px solid #002853;
}
input[type=checkbox]:disabled + .modal_ckb::before {
    background-color: rgb(231, 231, 231);
}



/*モーダル共通*/
.search_panel_select_modal_overlay {
	position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
}
.search_panel_select_modal {
    width: 960px;
    max-width: 100%;
    border: 1px solid #00479d;
    border-radius: 8px;
    box-sizing: border-box;
    margin: 180px auto;
    position: relative;
    padding: 10px;
    background-color: #fff;
}
.search_panel_select_modal_inner {
	max-height: 500px;
    overflow: auto;
}
.search_panel_select_label {
    padding: 5px 15px 5px 40px;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
    margin-bottom: 10px;
}

/*市区町村・大字・町選択モーダル*/
.search_panel_select_label.city,
.search_panel_select_label.town {
    background-image: url(/img/icon_jpn_map.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position-x: 5px;
    background-position-y: 5px;
}
.search_panel_select_close_btn {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 13px;
    top: 11px;
    background-image: url(/img/close.svg);
    background-size: 25px;
}
.search_panel_select_close_btn:hover {
    opacity: 0.8;
}
.search_panel_link_row {
    width: 100%;
    font-size: 0px;
}
.search_panel_link_key {
    display: inline-block;
    background-color: #002853;
    color: #fff;
    margin: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: top;
    line-height: 20px;
    font-size: 12px;
}
.search_panel_link_list {
    display: inline-block;
    width: calc(100% - 30px);
    font-size: 0px;
}
.search_panel_link_box {
    display: inline-block;
    width: 129px;
    padding-left: 5px;
    margin: 5px 0;
    box-sizing: border-box;
}
.search_panel_link:hover {
    color: #ec2552;
}
.search_panel_link {
    line-height: 20px;
    font-size: 12px;
    text-decoration: underline;
    color: #686868;
}

/*駅選択モーダル*/
.search_panel_select_label.station {
    background-image: url(/img/icon_train.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position-x: 5px;
    background-position-y: 5px;
}
.from_station_head_side{
    font-size: 12px;
    margin-left: 20px;
}
.railway_block {
    width: 100%;
}
.railway_name {
    width: 100%;
    box-sizing: border-box;
    color: #002853;
    padding: 5px 20px;
    font-size: 12px;
    background-color: #E7E7E7;
}
.station_list{
    margin: 10px 15px;
}
.station_box{
    width: 178px;
    height: 30px;
    display: inline-block;
    position: relative;
}
.btn_area{
    width: 400px;
    height: 48px;
	margin: 30px auto 10px auto;
    overflow: hidden;
}
.btn_area .modal_railway_select_btn {
    color: #fff;
    background-color: #69788c;
    width: 180px;
    height: 35px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 2px 2px 4px #c5c2c2;
    display: block;
    float: left;
    margin-right:30px;
    border-style: none;
}
.btn_area .modal_railway_select_btn:hover {
    box-shadow: 4px 4px 10px #c5c2c2;
}
.btn_area .modal_search_btn {
    color: #fff;
    background-color: #ec2552;
    width: 180px;
    height: 35px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 2px 2px 4px #c5c2c2;
    display: block;
    float: left;
    border-style: none;
}
.btn_area .modal_search_btn:enabled {
    background-color: #ec2552;
}
.btn_area .modal_search_btn:disabled {
    background-color: #f692a9;
}
.btn_area .modal_search_btn:enabled:hover {
    box-shadow: 4px 4px 10px #c5c2c2;
}