@charset "utf-8";
/********************************/
/*               表             */
/********************************/
@media (min-width:415px) {
.cs_table {
    margin: 20px 0 20px 10px;
}
}
@media (max-width:414px) {
.cs_table {
    margin: 20px 10px;
}
}
.cs_table table {
    border-collapse: collapse;
    width: 100%;
    border-right: solid 1px var(--black);
    border-bottom: solid 1px var(--black);
}
.cs_table table tr th, .cs_table table tr td{
    padding: 10px;
    border-top: solid 1px var(--black);
    border-left: solid 1px var(--black);
}
.cs_table table tr th {
    background-color: var(--green);
}
@media (max-width:414px) {
.cs_table table tr th, .cs_table table tr td{
    display: block;
}
}
.cs_table span{
    color: var(--truered);
}
/********************************/
/*         入力フォーム         */
/********************************/
input,textarea{
    background-color: #FFF;
    width: 95%;
    padding: 5px;
    font-size: 1.2rem;
    border-radius: 10px;
    border: solid 1px var(--black);
}
select{
    background-color: #FFF;
    padding: 5px;
    font-size: 1.2rem;
    border-radius: 10px;
}
input[type="checkbox"]{
    width: 15px;
    margin: 10px 0;
}
input:focus,textarea:focus,select:focus{
    color: var(--black);
    background-color: var(--lightpink2);
    outline: 0;
}
/********************************/
/*            ボタン            */
/********************************/
.cs_to{
    margin: 20px 0;
    text-align: center;
}
button{
    padding: 5px 10px;
    font-size: x-large;
    border-radius: 10px;
    background: #CCC;
    background: -moz-linear-gradient(top, #CCC 0%, #FFF 100%);
    background: -webkit-linear-gradient(top, #CCC 0%,#FFF 100%);
    background: linear-gradient(to bottom, #CCC 0%,#FFF 100%);
    cursor: pointer;
}
