@charset "utf-8";

/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/


/*全体の設定
---------------------------------------------------------------------------*/

body {
    margin: 0px;
    padding: 0px;
    font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
    /*文字サイズ、行間、フォントファミリー*/
    color: #333;
    /*全体の文字色*/
    background: #fff8f2;
    /*背景色*/
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure {
    margin: 0px;
    padding: 0px;
}

ul {
    list-style-type: none;
}

img {
    border: none;
    vertical-align: bottom;
}

input,
textarea,
select {
    font-size: 1em;
}

form {
    margin: 0px;
}

table {
    border-collapse: collapse;
    font-size: 100%;
    border-spacing: 0;
}


/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/


/*ヘッダーブロック*/

header {
    width: 100%;
    height: 20px;
    /*高さ*/
    background: #653200;
    /*背景色（古いブラウザ用）*/
    background: radial-gradient(circle 250px at 20% -50px, #7f5425, #64421d);
    /*ロゴ背後の光を含めた背景色*/
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    /*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    /*同上*/
    margin-bottom: 30px;
    /*ヘッダーの下に空けるスペース*/
}

header #inner {
    width: 980px;
    /*幅。下の「#contents」の幅に合わせる。*/
    height: 20px;
    /*高さ*/
    margin: 0 auto;
    position: relative;
}


/*ロゴ画像*/

header #logo {
    line-height: 1;
    position: absolute;
    top: 25px;
    /*ヘッダーブロックに対して上から5pxの場所に配置*/
}


/*電話番号ボックスの設定*/

header address {
    position: absolute;
    top: 25px;
    /*ヘッダーブロックに対して上から10pxの場所に配置*/
    font-size: 11px;
    /*文字サイズ*/
    letter-spacing: 0.2em;
    /*文字間隔を少し広めにとる設定*/
    color: #fff;
    /*文字色*/
    font-style: normal;
}


/*電話番号の文字設定*/

header address .tel {
    font-size: 18px;
    /*文字サイズ*/
    font-weight: bold;
    /*太字に*/
    display: block;
}


/*フッター設定
---------------------------------------------------------------------------*/

footer {
    clear: both;
    text-align: center;
    padding: 10px 0px;
    background: #653200;
    /*背景色*/
    color: #fff;
    /*文字色*/
}

footer .pr {
    display: block;
    font-size: 80%;
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    color: #fff;
}


/*テーブル１
---------------------------------------------------------------------------*/

.ta1 {
    width: 980px;
    margin-bottom: 15px;
    background: #fffcf9;
    /*背景色*/
}

.ta1{
    border: 1px solid #ccc;
    /*テーブルの枠線の幅、線種、色*/
    line-height: 2;
}
.ta1 td
.ta1 th{
    border: 1px solid #ccc;
    /*テーブルの枠線の幅、線種、色*/
    line-height: 2;
}

/*テーブル内の右側*/

.ta1 td {
    padding: 10px;
}


/*テーブル内の左側*/

.ta1 th {
    width: 140px;
    padding: 10px;
    text-align: center;
    background: #ffbb00/*背景色*/
}


/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/


/*表示を切り替えるウィンドウサイズの指定*/

@media (min-width:481px) and (max-width:800px) {
    /*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
    /*ヘッダーブロック*/
    header #inner {
        width: 100%;
    }
    /*ロゴ画像*/
    header #logo {
        max-width: 50%;
    }
    header #logo img {
        width: 100%;
    }
    /*電話番号ボックスの設定*/
    header address {
        letter-spacing: normal;
    }
    /*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
    #contents {
        width: auto;
        margin: 2%;
        margin-top: 280px;
    }
    /*main,subコンテンツ
---------------------------------------------------------------------------*/
    #main,
    #sub {
        float: none;
        width: auto;
    }
    section {
        width: 95%;
        margin: auto;
    }
    .ta1,
    .ta1 tbody,
    .ta1 tr,
    .ta1 th,
    .ta1 td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    /*フッター設定
---------------------------------------------------------------------------*/
    footer {
        width: auto;
    }
}


/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/


/*表示を切り替えるウィンドウサイズの指定*/

@media (max-width: 480px) {
    /*ヘッダー（サイト名ロゴが入ったブロック）
    ---------------------------------------------------------------------------*/
    /*ヘッダーブロック*/
    header #inner {
        width: 100%;
    }
    /*ロゴ画像*/
    header #logo {
        max-width: 40%;
        top: 5px;
    }
    header #logo img {
        width: 100%;
    }
    /*電話番号ボックスの設定*/
    header address {
        font-size: 10px;
        letter-spacing: normal;
        top: 10px;
        width: 35%;
    }
    header address .tel {
        font-size: 14px;
    }
    /*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
    #contents {
        width: auto;
        margin: 2%;
    }
    #top #contents {
        margin-top: 400px;
    }
    section {
        width: 95%;
        margin: auto;
    }
    .ta1,
    .ta1 tbody,
    .ta1 tr{
        box-sizing: border-box;
        display: block;
        width: 100%;
        }
    .ta1 th{
        box-sizing: border-box;
        display: block;
        width: 100%;
        }
    .ta1 td 
    
    /*フッター設定
---------------------------------------------------------------------------*/
    footer {
        width: auto;
    }
    /*その他
---------------------------------------------------------------------------*/
    .ws {
        width: 96%;
    }
    /*メニュー折りたたみ設定*/
    #menubar_hdr {
        display: inline;
        position: absolute;
        top: 0px;
        right: 10px;
        background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
        background: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
        background: linear-gradient(#fbfbfb, #e5e5e5);
        padding: 10px;
        border: 1px solid #cfcfcf;
    }
}