@charset "utf-8";

/* 共通設定 */
body{
    font-family: Helvetica Neue, Helvetica, Hiragino Sans, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}

table {
    border: solid 1px;              /* 枠線指定 */
    border-collapse:  collapse;     /* セルの線を重ねる */
}
 
tr:nth-child(odd) {
    background-color:  #ddd;    /* 背景色指定 */
}
 
th,td {
    border: solid 1px;              /* 枠線指定 */
    padding: 3px 5px;                /* 余白指定 */
}

.paymentBalance{
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    display: block;
    padding: 10px;
    margin: -3px;
}

.paymentRate{
    text-align: center;
}

.systemInfo{
    font-family: 'Courier', 'Courier New', 'Consolas';
    color: #808080;
}

p.SettingsMenu{
    font-weight: bold;
    margin: 0px 0px 5px 0px;
    padding: 3px 0px;
    border-top: 1px dashed #808080;
}

p.SettingsMenu > a:link, a:visited, a:hover, a:active{
    color: #000000;
    text-decoration: none;
}

p.SettingsMenu > img{
    vertical-align: middle;
}

.c-switch-check {
    display: none;
}
.c-switch-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
    border-radius: calc(30px / 2);
    background: #cccccc;
    transition: background 200ms;
}
.c-switch-label::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: calc(30px - 4px);
    height: calc(30px - 4px);
    border-radius: calc((30px - 4px) / 2);
    background: #ffffff;
    transform: translateX(0);
    transition: transform 200ms;
}
.c-switch-check:checked + .c-switch-label {
    background: #3dcc55;
}
.c-switch-check:checked + .c-switch-label::before {
    transform: translateX(calc((50px - 4px) - (30px - 4px)));
}

/* By: https://webparts.cman.jp/input/text/ */
/* --- INPUT=TEXTの標準デザイン設定 ---------------------*/
.inText {
  box-sizing    : border-box;
  margin        : 0;
  vertical-align: top;
 
  width         : 100%;                /* 一旦100%幅     */
  max-width     : 250px;               /* 入力域の最大幅 */
  height        : 47px;                /* 入力域の高さ   */
  background    : #ffffff;             /* 入力域の背景色 */
  border        : 2px solid #1e6bb9;   /* 入力域の枠線   */
  border-radius : 4px;                 /* 入力域の角丸   */
  padding       : 0 10px;              /* 入力文字の余白 */
  font-size     : 26px;                /* 入力文字サイズ */
  color         : #333333;             /* 入力文字の色   */
  font-weight   : bold;                /* 入力文字の太字 */
  letter-spacing: .1em;                /* 入力文字の間隔 */
}
 /* --- 入力フィールドにフォーカスか来たら ----------------*/
.inText:focus {
  border-color  : #59b300;                 /* 枠線色     */
  background    : rgba(89, 179, 0, 0.20);  /* 背景色     */
  box-shadow    : 4px 4px 2px #999;        /* 影付け     */
  outline       : 0;
}
 /* --- 入力説明の文字(標準) -----------------------------*/
.inText:placeholder-shown {
  color         : #808080;                 /* 文字色     */
  font-size     : 18px;                    /* 少し小さく */
}
 /* --- 入力説明の文字(Chrome,Safari,Android,iOS等) ---- -*/
.inText::-webkit-input-placeholder {
  color         : #808080;                 /* 文字色     */
  font-size     : 18px;                    /* 少し小さく */
}
 /* --- 入力説明の文字(IE用) -----------------------------*/
.inText:-ms-input-placeholder {
  color         : #808080;                 /* 文字色     */
  font-size     : 18px;                    /* 少し小さく */
}
 /* --- IEの入力エリア右側×消し -------------------------*/
.inText::-ms-clear {
  display     : none;                      /* ×を消す   */
}

.loginButton {
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 25px;
    text-decoration: none;
    color: #FFF;
    background: #668ad8;
}

.nameButton {
    box-shadow:inset 0px 1px 0px 0px #ffffff;
    background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
    background-color:#ffffff;
    border-radius:6px;
    border:1px solid #dcdcdc;
    display:inline-block;
    cursor:pointer;
    color:#666666;
    font-size:15px;
    font-weight:bold;
    padding:10px;
    text-decoration:none;
    text-shadow:0px 1px 0px #ffffff;
}
.nameButton:hover {
    background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
    background-color:#f6f6f6;
}
.nameButton:active {
    position:relative;
    top:1px;
}
