@charset "utf-8";
/*========================================
	Japan Concierge - CSS
========================================*/

.JcExportDialog p, .JcExportDialog ul, .JcExportDialog li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

#JcExportDialogLayer {
    line-height: 1.3;
    font: 13px helvetica,arial,clean,sans-serif;
}


#JcExportDialogLayer .btn a {
        border: 1px solid #5F607C;
        border-radius: 5px;
        text-shadow: 1px 1px 0px #FFF;
        text-align: center;
        color: #2A3A59;
        text-decoration: none;
        background: #efefef;
        background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#efefef));
        background: -webkit-linear-gradient(top, #ffffff, #efefef);
        background: linear-gradient(top, #ffffff, #efefef);
        cursor: pointer;
}

#JcExportDialogLayer {
    display: none;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
}

.JcExportDialog {
  position:fixed;
  left: 50%;
  top: 50%;
  margin: -162px 0 0 -201px; /*要素の半分*/
/*  width: 402px; */
  padding: 5px 10px 10px 10px;
  border: 1px solid #ccc;
  background: #f3f3f3;
  z-index: 9999;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

.JcExportDialog .close {
    margin: 10px auto ;
    text-align: right;
}
.JcExportDialog .close a {
    font-weight: bold;
position:relative;
padding-left:15px;
}
.JcExportDialog .close a:before,
.JcExportDialog .close a:after{
	display: block;
	content: '';
	width: 3px;
	height: 15px;
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background-color: #00f;
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 0;
}
.JcExportDialog .close a:after{
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.JcExportDialog > .ttl {
    margin-bottom: 10px;
    padding: 10px 0;
    line-height: 1.0em;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    background: #4c5570;
    color: #fff;
}

.JcExportDialog .select > .ttl {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2em;
    color: #4c5570;
}

.JcExportDialog ul {
    margin-bottom: 10px;
    padding-bottom: 10px;
    list-style: none;
}

.JcExportDialog ul li {
    float: left;
}
.JcExportDialog ul li:first-child {
    margin-right: 8px;
}

.JcExportDialog ul li a {
    display: inline-block;
    padding: 10px 0;
    width: 195px
}






@media screen and (max-width: 959px) {
 .JcExportDialog {
  position:relative;
  left:0;
  top:0;
  margin: 48% 3%; /*要素の半分*/
  padding: 5px 10px 10px 10px;
  box-sizing:border-box ;
 }

 .JcExportDialog ul li{
  float :none ;
  margin:0 auto 10px auto ;
 }

 .JcExportDialog ul li a{
  display:block ;
  width:100% ;
  box-sizing: border-box ;
 }

 .JcExportDialog ul li:first-child{
  margin-right: 0 ;
 }


}






