/*====================================================================*/
/*  General Classes　*/
/*====================================================================*/

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
	font-style:none;
}

html {
    margin: 0;
    padding: 0;
}



body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.0;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

h4 {
    font-size: 22px;
    font-weight: 700;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 14px;
    font-weight: 700;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #666666;

}

a:hover {
	font-style:none;
    text-decoration: none;
	cursor: pointer;
}
.textwidget p a,.widget_recent_comments a,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a,.comment-content p a,.widget_text p a,.content-area article p a{
    text-decoration: underline;
}
img {
    max-width: 100%;
}


ol,
ul {
    list-style: none;
}

li {
    list-style: none;

}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"] {
    border: 1px solid #d0d0d0;
    color: #a1a1a1;
    height: 50px;
    padding: 0px 10px 0 20px;
    width: 100%;
    font-weight: 400;
}

textarea {
    border: 1px solid #d0d0d0;
    color: #000000;
    padding: 10px 10px 0 20px;
    width: 100%;
    font-weight: 400;
}

select {
    width: 100%;
    height: 50px;
    background: none;
    border: 1px solid #ccc;
    border-radius: 0;
}

blockquote {
    background: transparent url(img/bquote.png) no-repeat scroll 0 0;
    border: none;
    padding: 0 0 0 40px;
}

blockquote p {
    margin-top: 30px;
    overflow: hidden;
    margin-bottom: 8px !important;
}

table,
table thead,
table thead tr,
table thead tr td,
table tbody,
table tbody tr,
table tbody tr td,
table tfoot,
table tfoot tr,
table tfoot tr td {

}


table,
table tr,
table th,
table td {
    border-collapse: collapse;
    border:1px solid #d5d5d5;
}

table {
    border-spacing: 0;
    font-size: 14px;
    line-height: 2;
    margin: 0 0 20px;
    width: 100%;
}


thead > tr,
tfoot > tr {
  background-color: rgb(228 240 245);
}

th {
    padding: 6px 10px 6px 0;
    text-align: center;
  background-color: rgb(227 239 253);
}

td {
    padding: 6px 10px 6px 0;
    text-align: center;
}

caption,
td {
    font-weight: normal;
}

tr {
    font-weight: 700;
}

tr:nth-child(even) {
	background-color: #f3f3f3; /* 偶数行の背景色 */
}

tr:nth-child(odd) {
	background-color: #ffffff; /* 奇数行の背景色 */
}

ul {
    margin-left: 0;
    list-style: none;
}

ol {
    margin-left: 0;
    list-style: none;
}

li>ul,
li>ol {
    margin-left: 0;
    list-style: none;
}

address {
    font-style: none;
}

p {
    margin: 0;
    padding: 0;
    line-height: normal;
    font-family: inherit;
}

dd {
    margin: 0;
    padding: 0;
}

big {
    font-size: 125%;
}

small {
    font-size: 80%;
}

iframe {
    width: 100%;
}

.clearfix {
    clear: both;
}

/*====================================================================*/
/*  checkbox radio共通 ボタン消去・生成、色付け　*/
/*====================================================================*/

input[type=checkbox],input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 18px;
    width: 18px;
    vertical-align: -0.8rem;
    transition:all 0.1s ease-out 0s;
    color: #44dd44;
    cursor: pointer;
    display: inline-block;
    margin: 6px 8px 8px 3px;
    outline: none;
    border-radius: 25%;
    background: #FFFFFF;
}
/* Checkbox */
input[type=checkbox]:before,input[type=checkbox]:after {
    position: absolute;
    content: "";
    background: #ff66bb;
    transition: all 0.1s ease-in-out;
}
input[type=checkbox]:before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
input[type=checkbox]:after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transition-delay: 0.1s;
}
input[type=checkbox]:checked:before {
    left: 1px;
    top: 11px;
    width: 6px;
    height: 2px;
}
input[type=checkbox]:checked:after {
    right: 5px;
    bottom: 1px;
    width: 2px;
    height: 14px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
    width: 7px;
    height: 2px;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
    left: 1px;
    top: 7px;
}
input[type=checkbox]:indeterminate:after {
    right: 1px;
    bottom: 7px;
}
/* Radio */
input[type=radio] {
    border-radius: 50%;
}
input[type=radio]:checked:before {
    transform: scale(1);
}
input[type=radio]:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 3px;
    transform: scale(0);
    transition: all ease-out 250ms;
}
/* Colors */
input[type=checkbox],input[type=checkbox]:indeterminate,input[type=radio] {
    border: 1.5px solid #999999;
}
input[type=checkbox]:checked,input[type=radio]:checked:before {
    background: #ffff99;
}

/* Complement colors */
/* green */
input[type=checkbox].green,input[type=radio].green {
    border: 2px solid #32CD32;
}
input[type=checkbox].green:checked,input[type=checkbox].green:indeterminate,input[type=radio].green:checked:before {
    background: #32CD32;
}
/* blue */
input[type=checkbox].blue,input[type=radio].blue {
    border: 2px solid #1E90FF;
}
input[type=checkbox].blue:checked,input[type=checkbox].blue:indeterminate,input[type=radio].blue:checked:before {
    background: #1E90FF;
}
/* red */
input[type=checkbox].red,input[type=radio].red {
    border: 2px solid #FF3300;
}
input[type=checkbox].red:checked,input[type=checkbox].red:indeterminate,input[type=radio].red:checked:before {
    background: #FF3300;
}
/* orange */
input[type=checkbox].orange,input[type=radio].orange {
    border: 2px solid #FFA500;
}
input[type=checkbox].orange:checked,input[type=checkbox].orange:indeterminate,input[type=radio].orange:checked:before {
    background: #FFA500;
}
/* violet */
input[type=checkbox].violet,input[type=radio].violet {
    border: 2px solid #EE82EE;
}
input[type=checkbox].violet:checked,input[type=checkbox].violet:indeterminate,input[type=radio].violet:checked:before {
    background: #EE82EE;
}
/* チェックボックス - checkbox　ラジオボタン - radio サイズ */
.size1{
 transform:scale(0.75);
 }
.size2{
 transform:scale(1.0);
 }
.size3{
 transform:scale(1.5);
 }