
/* 共通設定  */
body{
	background: #f5f8fa;
}

h1,h2,h3,h4{font-size: 100%;}



/*ロゴ部分*/
.p-1 img{max-width: 100%;}




#mainArea{
    margin-top: 150px;
    }

nav.navbar{
background: #6e757a;
}

.mainTitle{
	font-size: 130%;
	font-weight: bold;
	color: #fff;
	padding: 10px 10px 0px 10px;
    width: 100%;
    text-align: center;
}

.formTitle{
	font-size: 100%;
	font-weight: bold;
}

.box{
	padding: 0 0 20px 0;
}

/*残高表示部*/
#zandaka{
box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.2);
}

#zandaka h4{
border-radius: 20px;
background: #366;
color: #fff;
padding: 10px 10px;
margin: 0 30px;
}

#zandaka p{
font-size: 300%;
font-weight: bold;
color: #366;
}

#zandaka span{
display: block;
margin: 0 0 10px 0;
}



.input-group-text{
	background: #fff;
	border: 1px solid #ccc;
    font-weight: bold;
}


/* チャージボタン */
#cgBtn button{
	font-weight: bold;
	min-width: 105px;

}



/* ボタン設定（button）  */
.list-group button.list-group-item {
color: #36f;
text-align: center;
}

.list-group.list-group-flush{
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
box-shadow: 0px 4px 5px 3px rgba(0,0,0,0.1);
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}


.list-group a.list-group-item span {
font-weight: bold;
position: absolute;
top: 35%;
left: 60px;
}



/* ボタン右矢印 > button  */
.list-group button.list-group-item::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-top: 2px solid #36f;
  border-right: 2px solid #36f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}



/* ボタン右矢印 > a  */
.list-group a.list-group-item::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}



/* ステップインジケーター  */
.progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  margin-bottom: 20px;
}
.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 25%;
    color: #999;
    font-weight: bold;
    counter-increment: steps;
}
.progressbar li:before {
    display: block;
    width: 26px;
    height: 26px;
    margin: 7px auto 10px auto;
    content: '';
    line-height: 26px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    background-color: #F5F5F5;
    content: counter(steps);
}
.progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 18px;
    left: -50%;
    width: 100%;
    height: 3px;
    content: '';
    background-color: #fff;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
    color: #36e;
}
.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: #36e;
    color: #FFF;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #36e;
}




/* サイドバーメニュー  */

#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    width: 250px;
    top: 0;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    background: #212529;

}
.sidebarMenuInner{
    margin:140px 0 0 0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li{
    list-style: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
     border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;

}
.sidebarMenuInner li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
.sidebarMenuInner li a object svg{
    color: #fff;
}

nav.navbar input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

nav.navbar input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 22px;
    left: 15px;
    height: 22px;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #fff;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}





/* CSS Hack  */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance:textfield;
}
