@charset "shift_jis";
/* CSS Document */



#system_container {
	text-align: center;
	position: relative;
	margin-top: 50px;
}

/*=============================
   selfpayment
=============================*/
.selfpayment {
    position: relative;
}

#selfpayment {
	position: absolute;
	bottom: 2%;
    right: 10px;
}
#second_tab01 #selfpayment_02 {
    position: absolute;
    bottom: 2%;
    right: 10px;
}
#third_tab01 #selfpayment_03 {
	position: absolute;
	bottom: 34%;
    right: 10px;
}

.button {
  display       : inline-block;
  font-size     : ;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 10px!important;   /* 余白       */
  background    : #990000;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 1px 1px 3px #666666;  /* 影の設定 */
  border        : 2px solid #ffffff;    /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #990000;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
  border        : 2px solid #990000;    /* 枠の指定 */
}


/*=============================
   タブ切り替え
=============================*/


.cp_tab *, .cp_tab *:before, .cp_tab *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_tab img {
	margin-bottom: 10px;
}
.cp_tab > input[type='radio'] {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
	-webkit-appearance: none;
	        appearance: none;
	display: none;
}
.cp_tab #tab_contents {
	margin-top: 20px;
}
.cp_tab .cp_tabpanel {
	display: none;
}
.cp_tab > input:first-child:checked ~ .cp_tabpanels > .cp_tabpanel:first-child,
.cp_tab > input:nth-child(3):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(2),
.cp_tab > input:nth-child(5):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(3),
.cp_tab > input:nth-child(7):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(4),
.cp_tab > input:nth-child(9):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(5),
.cp_tab > input:nth-child(11):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(6) {
	display: block;
}
.cp_tab > label {
	font-family: serif;
	position: relative;
	display: inline-block;
	padding: 10px 10px;
	cursor: pointer;
	border: 1px solid #ccc;
	color: #fff;
    background-color: #000;
    margin-bottom: 5px;
}
.cp_tab > label:hover,
.cp_tab > input:focus + label {
	color: #ccc;
}
.cp_tab > input:checked + label {
	color: #000;
	background-color: #fff;
	font-weight: bold;
}
.cp_tab .cp_tabpanel {
}



/* loop
---------------------------*/
.loop-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 30px;
  background: #fff000;
    margin-top: 30px;
}
.loop-area {
  display: flex;
  animation: loop-slide 60s infinite linear 1s both;
  list-style: none;
  margin: 0;
  padding: 0;
}
.loop-area .content {
    width: 1200px;
    font-family: serif;
    font-weight: bold;
    color: #000;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}









