@charset "UTF-8";

/* ----------------------------------------------------*/
/* メインのCSS                                         */
/* ----------------------------------------------------*/
body {
	background: #ffffc8;
}
a {
	color: skyblue;
	text-decoration: none;
}

/* ----------------------------------------------------*/
/* 水平線のCSS                                         */
/* ----------------------------------------------------*/
.style0 {
	background-color:#ff7f00;
	border:none;
	height:3px;
}

/* ----------------------------------------------------*/
/* テーブルのCSS                                       */
/* ----------------------------------------------------*/
table{
	width: auto;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 12px;
}

table th,table td{
	padding: 2px 0;
	text-align: center;
	white-space: nowrap;
}

table tr:nth-child(odd){
	background-color: #eee
}

/* ----------------------------------------------------*/
/* リストボックスのCSS                                 */
/* ----------------------------------------------------*/
ul.cp_list {
	padding:0.5em;
	list-style-type:none;
}
ul.cp_list li {
	position:relative;
	padding: 0em 0.3em 0.3em 1.3em;
}
ul.cp_list li::before {
	position: absolute;
	content: '';
	display: block;
	top: 0.5em;
	left: 0;
	width: 6px;
	height: 6px;
	border-right: 3px solid #00BCD4;
	border-bottom: 3px solid #00BCD4;
	transform: rotate(-45deg);
}

/* ----------------------------------------------------*/
/* ボタンのCSS                                         */
/* ----------------------------------------------------*/
.button {
  display       : inline-block;
  border-radius : 20%;
  font-size     : 10pt;
  text-align    : center;
  cursor        : pointer;
  padding       : 11px 10px;
  background    : #ff7f00;
  color         : #ffffff;
  line-height   : 1em;
  transition    : .3s;
  box-shadow    : 6px 6px 3px #666666;
  border        : 2px solid #ff7f00;
}
.button:hover {
  box-shadow    : none;
  color         : #ff7f00;
  background    : #ffffff;
}

/* ----------------------------------------------------*/
/* テキストボックスのCSS                               */
/* ----------------------------------------------------*/
/* 非活性状態 -----------------------------------------*/
.m-form-text {
    height: 2.4em;
    width: 7em;
    padding: 0 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #bde9ba;
    font-size: 100%;
}
.m-form-text:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

/* 活性状態 ------------------------------------------*/
.m-form-text2 {
    height: 2.4em;
    width: 7em;
    padding: 0 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #e0e0e0;
    font-size: 100%;
}
.m-form-text2:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
