/*
 Theme Name:   Ultimate Child Theme JP
 Theme URI:    http://www.owlsone.co.jp/
 Description:  A Ultimate child theme 
 Author:       Daisuke Fukushima
 Author URI:   http://www.owlsone.co.jp
 Template:     ultimate
 Version:      1.0.0
*/

@import url("../ultimate/style.css");

/* 印刷用　*/
#access {
	background-color: #ff0000;
}

/*　ContactForm7のテーブル化レスポンシブ調整　*/
 
/*テーブルを親要素の幅いっぱいに伸ばす*/
.table-res-form {
	width: 100%
	border-right: 0px;
	border-left: 0px;
	border-bottom: 0px;
}
        

/*一行ごとに上ボーダー*/
.table-res-form tr {
	border-top: 1px #DDD solid;
	border-right: 0px;
	border-left: 0px;
	border-bottom: 0px;
}

/*一番上の行だけボーダーなし*/
.table-res-form tr:first-child {
	border-top: none;
}

/*奇数行だけ背景色つける*/
.table-res-form tr:nth-child(2n+1) {
	background: #eee;
}

/*thとtd内の余白指定*/
.table-res-form th, .table-res-form td {
    padding: 0.5em;
    border-right: 0px;
	border-left: 0px;
	border-bottom: 0px;
	vertical-align: middle;
}

/*th（項目欄）は30%幅、テキストを右寄せ*/
.table-res-form th {
	width: 40%;
	text-align: right;
	text-transform:none;
}

/*「必須」部分のスタイリング*/
.table-res-form .requied {
    font-size: 0.8em;
    color: #FFF;
    display: inline-block;
    padding: 0.3em 0.3em 0.2em;
    background: #ff3333;
    border-radius: 2px;
}
 
/*ここから768px以下の指定*/
 
@media only screen and (max-width: 768px) {
/*thとtdをブロック化して幅100％にして、縦積み*/
.table-res-form th, .table-res-form td {
	width: 95%;
	display: block;
}

/*th（項目名）欄の不要な余白削除・テキスト左寄せ*/
.table-res-form th {
	padding-bottom: 0;
	text-align: left;
}
　　　　　
/*不要な最終行の左のthを非表示にする*/
.table-res-form .empty {
	display: none;
}
}
 
/*ここまで768px以下の指定---終わり*/

.table-res-form input[type="text"],
.table-res-form input[type="email"],
.table-res-form input[type="date"],
.table-res-form input[type="tel"],
.table-res-form input[type="radio"]
{
	margin-bottom: 0px;
	margin: 0 0 0px;
}

.table-res-form select {
	margin-bottom: 0px;
    margin: 0 0 0px;
}


/*各入力フォームスタイリング*/
.table-res-form input[type="text"], input[type="email"],input[type="date"], input[type="tel"],select,textarea {
    border: 1px #89BDDE solid;
    padding: 0.5em;
    border-radius: 5px;
    margin-bottom: 0.5em;
    width: 100%;
}

#site-description {
    font-size: 16px;
    line-height: 12px;
    color: #999;
    padding-left: 48px;
}

