@charset 'utf-8'; /*文字コード指定*/
/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */
@font-face {
    font-family: 'aoyagireisyosimo';
    src: url('../fonts/aoyagireisyosimo_ttf_2_01.ttf') format('truetype'),
    url('../fonts/aoyagireisyosimo_ttf_2_01.eot') format('embedded-opentype'),
    url('../fonts/aoyagireisyosimo_ttf_2_01.woff') format('woff'),
    url('../fonts/aoyagireisyosimo_ttf_2_01.woff2') format('woff2');
}

body, a, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, select, p, th, td, img {
    font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro'; /*フォントの種類指定(左から優先順位)*/
    margin: 0;   /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
    padding: 0;  /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
    border: 0;   /*境界線指定*/
}
html, body {
    height: 100%; /*領域の高さ指定*/
    background-image: url("../images/background.png")
}
body {
    font-size: 75%;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    line-height: 2;     /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
    /*   background: #fff;   /*背景指定*/
    color: #333;        /*文字色指定*/
}
ol, ul {
    list-style: none;   /*リストマーカーの種類指定(noneはなし)*/
}
a {
    color: #333; /*文字色指定*/
}
a:hover {
    text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
.color1 {
    color: #990000; /*文字色指定*/
}
/*header　ページ上の内容*/

header {
    position: fixed;    /*ボックスの配置方法(fixedは固定)*/
    top: 0;             /*上からの距離(positionで指定している場合に適用)*/
    left: 0;            /*左からの距離(positionで指定している場合に適用)*/
    width: 100%;        /*幅指定(100%は画面横幅いっぱいに表示)*/
    height: 95px;       /*領域の高さ指定*/
    
    /*背景グラデーション指定*/
    background: #627d4d; /* Old browsers */
    background: -moz-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #627d4d), color-stop(100%, #1f3b08)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* IE10+ */
    background: linear-gradient(to bottom, #627d4d 0%, #1f3b08 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08', GradientType=0 ); /* IE6-9 *//*ここまで背景グラデーション指定*/

    z-index: 1000; /*ボックス重なり順序指定*/
}
/*左上のロゴ*/

h1 {
    font-family: 'Berkshire Swash', cursive; /*フォントの種類指定(googleのwebフォント)*/
    font-size: 1em;      /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    color: #fff;
}
h1 a {
    color: #fff;            /*文字色指定*/
    text-decoration: none;  /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
h1 a:hover {
    /*時間的変化指定*/
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;       /*ここまで時間的変化指定*/
    /*透明度設定*/
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;     /*ここまで透明度設定*/
}
/*右上の内容*/

.contact-block {
    width: 100%;
}

.contact-number {
    position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
    top: 35px;             /*上からの距離(positionで指定している場合に適用)*/
    right: 75px;         /*右からの距離(positionで指定している場合に適用)*/
    font-size: 1em;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    width: 300px;        /*幅指定(100%は画面横幅いっぱいに表示)*/ 
    height: 70px;       /*領域の高さ指定*/
    background: url(../images/contact.png) no-repeat center;
    /*    text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

.contact-number img {
    display: none; 
}

.contact {
    position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
    top: 25px;             /*上からの距離(positionで指定している場合に適用)*/
    right: 0px;         /*右からの距離(positionで指定している場合に適用)*/
}
.info {
    font-size: 1em;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    width: 80px;        /*幅指定(100%は画面横幅いっぱいに表示)*/
    height: 70px;       /*領域の高さ指定*/
    text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}
.info ul {
    padding: 12px 0;   /*ボックス内側の余白*/
}
.info li {
    padding: 0 0 7px 0; /*ボックス内側の余白*/
    line-height: 1;     /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
}
.info a {
    color: #fff;            /*文字色指定*/
    text-decoration: none;  /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
.info a:hover {
    /*時間的変化指定*/
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;     /*ここまで時間的変化指定*/
    /*透明度設定*/
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;    /*ここまで透明度設定*/
}
.copyright {
    /*    color: #fff;        /*文字色指定*/
    font-size: 0.9em;   /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    line-height: 15px;  /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
    /*    position: fixed;    /*ボックスの配置方法(fixedは固定)*/ 
    bottom: 20px;      /*下からの距離(positionで指定している場合に適用)*/
    left: 0px;            /*左からの距離(positionで指定している場合に適用)*/
    margin-left: 200px;  /*ボックス外側左の余白*/
}
/*レイアウト設定*/

.wrapper {
    float: right;        /*要素を左か右に寄せて配置(rightは右に寄せる)*/
    width: 100%;         /*幅指定(100%は画面横幅いっぱいに表示)*/
    margin-top: 70px;    /*ボックス外側上の余白*/
    margin-left: -200px; /*ボックス外側左の余白*/
}
.content {
    margin-left: 200px;  /*ボックス外側左の余白*/
}
/*メインの内容*/

article {
    width: 100%;            /*幅指定(100%は画面横幅いっぱいに表示)*/
    margin: 20px 0 50px 0;  /*ボックス外側の余白*/
}
section {
    width: 80%;         /*幅指定(100%は画面横幅いっぱいに表示)*/
    margin: 0 auto;     /*ボックス外側の余白*/
    padding: 20px;      /*ボックス内側の余白*/
    /*    background: #fff;   /*背景指定*/
}
article h2 {
    font-size: 4em;           /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;      /*フォントの太さ指定(normalは標準)*/
    font-family: 'Lobster', cursive; /*フォントの種類指定(左から優先順位)*/
    text-align: center;      /*行の水平方向の揃え方(centerは中央揃え)*/
    line-height: 1.5;          /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
}
article h3 {
    font-size: 2.5em;           /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;      /*フォントの太さ指定(normalは標準)*/
    font-family: 'Lobster', cursive; /*フォントの種類指定(左から優先順位)*/
    text-align: center;      /*行の水平方向の揃え方(centerは中央揃え)*/
}
article h4 {
    font-size: 1.5em;       /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;    /*フォントの太さ指定(normalは標準)*/
    margin-bottom: 8px;    /*ボックス外側下の余白*/
}
article li, p {
    font-size: 1.3em;    /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    margin-left: 20px;   /*ボックス外側左の余白*/
}
.terms_content li li {
    font-size: 100%;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
/* ----- テーブル設定 ----- */

.ta {
    width: 100%;       /*幅指定(100%は画面横幅いっぱいに表示)*/
    border-collapse: collapse; /*境界線の表示指定(collapseは重ねて表示)*/
    margin: 0 auto;    /*ボックス外側の余白(値2つは左から上下,左右の値(左右autoで中央配置))*/
}
.ta th, td {
    border: none;            /*境界線の一括指定(noneはなし)*/
    padding: 0 0 10px 10px;  /*ボックス内側の余白*/
    color: #333;             /*文字色指定*/
    font-size: 1.3em;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;     /*フォントの太さ指定(normalは標準)*/
    text-align: left;        /*行の水平方向の揃え方(leftは左寄せ)*/
}
.ta a {
    color: #333;             /*文字色指定*/
    text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

.ta a:hover {
    color: #ff8c00;             /*文字色指定*/
    /*text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

.radius-table1 {
    width: 100%;       /*幅指定(100%は画面横幅いっぱいに表示)*/
    /*    border-collapse: collapse; /*境界線の表示指定(collapseは重ねて表示)*/
    margin: 0 auto;    /*ボックス外側の余白(値2つは左から上下,左右の値(左右autoで中央配置))*/
    border-radius: 5px;
    border-collapse: separate;
    border: 1px #627d4d solid;
    border-spacing: 0;
}
.radius-table1 th{
    border-bottom: 1px #627d4d solid;
    padding: 2px 0 2px 0;  /*ボックス内側の余白*/
    color: #333;             /*文字色指定*/
    font-size: 1.2em;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;     /*フォントの太さ指定(normalは標準)*/
    text-align: center;        /*行の水平方向の揃え方(leftは左寄せ)*/
}
.radius-table1 td {
    border-bottom: 1px #627d4d solid;
    padding: 2px 2px 2px 5px;  /*ボックス内側の余白*/
    color: #333;             /*文字色指定*/
    font-size: 1em;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;     /*フォントの太さ指定(normalは標準)*/
    text-align: left;        /*行の水平方向の揃え方(leftは左寄せ)*/
}

.radius-table1 tr:first-child th {
    border-radius: 5px 0 0 0;
}

.radius-table1 tr:first-child td {
    border-radius: 0 5px 0 0;
}

.radius-table1 tr:last-child th {
    border-bottom: none;
    border-radius: 0 0 0 5px;
}

.radius-table1 tr:last-child td {
    border-bottom: none;
    border-radius: 0 0 5px 0;
}
.radius-table2 {
    width: 100%;       /*幅指定(100%は画面横幅いっぱいに表示)*/
    /*    border-collapse: collapse; /*境界線の表示指定(collapseは重ねて表示)*/
    margin: 0 auto;    /*ボックス外側の余白(値2つは左から上下,左右の値(左右autoで中央配置))*/
    border-radius: 5px;
    border-collapse: separate;
    border: 1px #c0c0c0 solid;
    border-spacing: 0;
    background-color: #fffaf0;
}
.radius-table2 th{
    border-bottom: 1px #c0c0c0 solid;
    padding: 2px 0 2px 0;  /*ボックス内側の余白*/
    /*color: #333;             /*文字色指定*/
    font-size: 1.2em;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;     /*フォントの太さ指定(normalは標準)*/
    text-align: center;        /*行の水平方向の揃え方(leftは左寄せ)*/
}
.radius-table2 td {
    border-bottom: 1px #c0c0c0 solid;
    padding: 2px 2px 2px 5px;  /*ボックス内側の余白*/
    /*color: #333;             /*文字色指定*/
    font-size: 1.2em;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    font-weight: normal;     /*フォントの太さ指定(normalは標準)*/
    text-align: left;        /*行の水平方向の揃え方(leftは左寄せ)*/
}

.radius-table2 tr:first-child th {
    border-radius: 5px 0 0 0;
}

.radius-table2 tr:first-child td {
    border-radius: 0 5px 0 0;
}

.radius-table2 tr:last-child th {
    border-bottom: none;
    border-radius: 0 0 0 5px;
}

.radius-table2 tr:last-child td {
    border-bottom: none;
    border-radius: 0 0 5px 0;
}

/* ----- フォーム設定 ----- */

.clearfix:after {
    clear: both;         /*floatの回り込み解除*/
    content: ".";        /*要素の直後に文字列や画像などのコンテンツを挿入*/
    display: block;      /*要素の表示指定（blockはブロックボックス生成）*/
    height: 0;           /*領域の高さ指定*/
    visibility: hidden;  /*ボックスの表示（visible）、非表示（hidden）指定*/
}
.form dl {
    width: 100%;         /*幅指定(100%は画面横幅いっぱいに表示)*/
    padding: 15px 0;     /*ボックス内側の余白*/
    border-bottom: 1px solid #dcdcdc; /*境界下線指定*/
    font-size: 1.3em;    /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.form dl dt {
    width: 32%;       /*幅指定(100%は画面横幅いっぱいに表示)*/
    float: left;      /*要素を左か右に寄せて配置(leftは左に寄せる)*/
    padding: 10px 10px 2px 10px; /*ボックス内側の余白*/
}
.form dl dd {
    width: 65%;      /*幅指定(100%は画面横幅いっぱいに表示)*/
    float: right;    /*要素を左か右に寄せて配置(rightは右に寄せる)*/
}

.contact-label {
    font-size: 1.3em !important;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}

.contact-input1 {
    /*    background: #fff;     /*背景指定*/
    padding: 0 10px;      /*ボックス内側の余白*/
    border: 1px solid #dcdcdc; /*境界線指定*/
    font-size: 1.3em !important;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    /*角丸指定*/
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;   /*ここまで角丸指定*/
    width: 70%;                /*幅指定(100%は画面横幅いっぱいに表示)*/
    height: 40px;              /*領域の高さ指定*/
    line-height: 40px;         /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
    text-align: left !important;
}

.contact-input2 {
    /*    background: #fff;     /*背景指定*/
    padding: 0 10px;      /*ボックス内側の余白*/
    border: 1px solid #dcdcdc; /*境界線指定*/
    font-size: 1.3em !important;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    /*角丸指定*/
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;   /*ここまで角丸指定*/
    width: 95%;                /*幅指定(100%は画面横幅いっぱいに表示)*/
    height: 40px;              /*領域の高さ指定*/
    line-height: 40px;         /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
    text-align: left !important;
}

.contact-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/arrow.png) right center no-repeat; /*背景指定*/
    background-color: #fff;      /*背景指定*/
    padding: 0 10px;             /*ボックス内側の余白*/
    border: 1px solid #dcdcdc;   /*境界線指定*/
    font-size: 1.3em !important;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    /*角丸指定*/
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;     /*ここまで角丸指定*/
    width: 60%;                  /*幅指定(100%は画面横幅いっぱいに表示)*/
    height: 40px;                /*領域の高さ指定*/
    line-height: 40px;           /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
}

.contact-textarea {
    margin-top: 5px;
    padding: 0px 10px;      /*ボックス内側の余白*/
    width: 100% !important;    /*幅指定(100%は画面横幅いっぱいに表示)*/
    /*    height: 100%;             /*領域の高さ指定*/ 
    resize: none;
    border-radius: 5px;
    font-size: 1.3em !important;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;   /*ここまで角丸指定*/
}

.page-anchor {
    color: #ff8c00;
    font-weight: bold;
}

.form dd .ina {
    ime-mode: disabled;      /*テキスト入力時のIMEの状態指定(disabledは英数字入力モード)*/
}
.chra li {
    position: relative;      /*ボックスの配置方法(relativeは相対位置配置)*/
    padding-left: 30px;      /*ボックス内側左の余白*/
    line-height: 30px;       /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
    font-size: 100%;         /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
}
.chra li div {
    position: absolute;     /*ボックスの配置方法(absoluteは絶対位置配置)*/
    top: 5px;               /*上からの距離(positionで指定している場合に適用)*/
    left: 0;                /*左からの距離(positionで指定している場合に適用)*/
}
.ctSelect {
    background: url(../images/arrow.png) right center no-repeat; /*背景指定*/
    background-color: #fff;      /*背景指定*/
    padding: 0 10px;             /*ボックス内側の余白*/
    border: 1px solid #dcdcdc;   /*境界線指定*/
    /*角丸指定*/
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;     /*ここまで角丸指定*/
    width: 50%;                  /*幅指定(100%は画面横幅いっぱいに表示)*/
    height: 40px;                /*領域の高さ指定*/
    line-height: 40px;           /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
}
.kakunin {
    width: 150px;             /*幅指定(100%は画面横幅いっぱいに表示)*/
    margin: 20px auto;        /*ボックス外側の余白*/
}
.btn_submit {
    width: 200px;               /*幅指定(100%は画面横幅いっぱいに表示)*/
    padding: 15px 0 13px 0;     /*ボックス内側の余白*/
    border: solid 1px #001a9b;  /*境界線指定*/
    /*角丸指定*/
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;    /*ここまで角丸指定*/
    /*背景グラデーション指定*/
    background: #627d4d; /* Old browsers */
    background: -moz-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #627d4d), color-stop(100%, #1f3b08)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* IE10+ */
    background: linear-gradient(to bottom, #627d4d 0%, #1f3b08 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08', GradientType=0 ); /* IE6-9 *//*ここまで背景グラデーション指定*/
    color: #fff;          /*文字色指定*/
    text-align: center;   /*行の水平方向の揃え方(centerは中央揃え)*/
    font-size: 100%;      /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
    font-weight: bold;    /*フォントの太さ指定(normalは標準)*/
}
.btn_submit:hover {
    /*透明度設定*/
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;      /*ここまで透明度設定*/
    /*時間的変化指定*/
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.s;
    transition: 0.5s;       /*ここまで時間的変化指定*/
    cursor: pointer;        /*マウスカーソルの形状指定(pointerはリンクカーソル)*/
}
.required {
    color: #fff; /*文字色指定*/
    background: #ff0000;
}
/*map設定*/

.gmap {
    position: relative;      /*ボックスの配置方法(relativeは相対位置配置)*/
    padding-bottom: 56.25%;  /*ボックス内側下の余白*/
    padding-top: 30px;       /*ボックス内側上の余白*/
    height: 0;               /*領域の高さ指定*/
    overflow: hidden;        /*ボックスのはみ出た部分の表示指定(hiddenは非表示)*/
}
.gmap iframe {
    position: absolute;     /*ボックスの配置方法(absoluteは絶対位置配置)*/
    top: 0;                 /*上からの距離(positionで指定している場合に適用)*/
    left: 0;                /*左からの距離(positionで指定している場合に適用)*/
    width: 100%;            /*幅指定(100%は画面横幅いっぱいに表示)*/
    height: 100%;           /*領域の高さ指定*/
}
/*無限スクロール設定*/

.scroll_area {
    margin: 0 auto;  /*ボックス外側の余白*/
    width: 100%;     /*幅指定(100%は画面横幅いっぱいに表示)*/
}
#infscr-loading {
    z-index: 100;       /*ボックス重なり順序指定*/
    position: fixed;    /*ボックスの配置方法(fixedは固定)*/
    left: 50%;          /*左からの距離(positionで指定している場合に適用)*/
    bottom: 20px;       /*下からの距離(positionで指定している場合に適用)*/
}
/*ページトップに戻るアイコン*/

.pagetop:hover {
    /*時間的変化指定*/
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; /*ここまで時間的変化指定*/
    color: #000;      /*文字色指定*/
    /*透明度設定*/
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;  /*ここまで透明度設定*/
}

/** ノート風背景 */
.lined-paper {
    /*  height: 200px; */
    position: relative;
    background-color: #ffffe7; 
    background-image: 
        linear-gradient(rgba(153,204,255,.3) .1em, transparent .1em);
    background-size: 100% 1.5em;
    font-size: 0.8em;
}

.lined-paper:before {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 3em;
    background-color: #ffffe7; 
    background-image: 
        linear-gradient(90deg, transparent 29px, #fcc 29px, #fcc 31px, transparent 31px),
        linear-gradient(90deg, transparent 49px, #fcc 49px, #fcc 51px, transparent 51px);
}

/* 挨拶 */
.greet {
    font-size: 1.2em;
}

/* 署名 */
.signature-small {
    font-family: 'aoyagireisyosimo';
    font-size: 1.7em;
}

.signature {
    font-family: 'aoyagireisyosimo';
    font-size: 2.0em;
}

.radius-label {
    padding: .5em .75em;
    background-color: #fffafa;
    border-left: 15px solid #006400;
    border-radius: 6px;
}

.poricy-title {
    font-size: 1.2em;
    /*    padding: 15px;      /*ボックス内側の余白*/ 
}

.poricy {
    font-size: 1.1em;
    padding-left: 22px;      /*ボックス内側の余白*/
    padding-bottom: 10px;      /*ボックス内側の余白*/
}

.poricy-label {
    padding: .3em .75em;
    background-color: #fffafa;
    border-left: 15px solid #1e90ff;
    border-radius: 6px;
    margin-left: 15px;
    margin-bottom: 5px;
    text-decoration: underline;
}

.poricy-sublabel {
    background:   #d3d3d3;
    padding-left: 10px;      /*ボックス内側の余白*/
}

table td.new-line {
    color: #ff8c00;
}

table td.info-line {
    color: #4169e1;
}

.flow {
    margin-left: 20px;
}

.flow .down-arrow {
    content: '';
    height: 50px;
    margin-top: 5px;
    margin-bottom: 10px;
    background: url(../images/down-arrow.png) no-repeat 50% 50%; /*矢印画像*/
}

.inline-image-block-right {
    float: right;
}

.member-image-block {
    float: left;
    margin-left: 2px;
    margin-right: 5px;
}

.member-image {
    width: 180px;
    height: 180px;
}

.flow-image {
    margin-top: 5px;
    width: 180px;
    height: 120px;
}

.about-image {
    margin-top: 5px;
    width: 350px;
}

.member-name {
    background: #627d4d; /* Old browsers */
    background: -moz-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #627d4d), color-stop(100%, #1f3b08)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* IE10+ */
    background: linear-gradient(to bottom, #627d4d 0%, #1f3b08 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08', GradientType=0 ); /* IE6-9 *//*ここまで背景グラデーション指定*/
}

.member-name-color {
    color: #ffffff;
}

.qa-table td {
    width: 50%;
}

.footer {
    display: none;
}

.logo {
    position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
    top: 33px;
    left: 35px;
}

/*レスポンシブ設定*/
@media screen and (max-width: 768px) {
    p, ol, li, th, td, dl {
        font-size: 1em !important; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    }
    input, textarea, select {
        font-size: 0.8em;
    }
    header {
        height: 95px; /*領域の高さ指定*/
    }
    h1 {
        font-size: 1em;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    }
    article h2 {
        font-size: 2em;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    }
    article h3 {
        font-size: 1.7em;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    }
    article h4 {
        font-size: 1.1em;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    }
    .info {
        font-size: 0.9em;   /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
        width: 80px;        /*幅指定(100%は画面横幅いっぱいに表示)*/
        height: 70px;       /*領域の高さ指定*/
    }
    .info ul {
        padding: 5px 0;     /*ボックス内側の余白*/
    }
    .wrapper {
        margin: 85px 0 0 0; /*ボックス外側の余白*/
        padding-bottom: 45px;
    }
    .contact {
        position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
        top: 35px;             /*上からの距離(positionで指定している場合に適用)*/
        right: 0px;         /*右からの距離(positionで指定している場合に適用)*/
    }
    .contact-number {
        position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
        top: 40px;             /*上からの距離(positionで指定している場合に適用)*/
        right: 0px;         /*右からの距離(positionで指定している場合に適用)*/
        font-size: 1em;     /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
        width: 55px;        /*幅指定(100%は画面横幅いっぱいに表示)*/ 
        height: 70px;       /*領域の高さ指定*/
        /*    text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
        background: none;
    }
    .contact-number img {
        width: 40px;
        height: 40px;
        display: block;
    }
    
    .content {
        margin: 0;       /*ボックス外側の余白*/
        width: 100%;     /*幅指定(100%は画面横幅いっぱいに表示)*/
    }
    section {
        width: 90%;      /*幅指定(100%は画面横幅いっぱいに表示)*/
    }
    .form dl {
        width: 100%;     /*幅指定(100%は画面横幅いっぱいに表示)*/
        padding: 0;      /*ボックス内側の余白*/
        border: none;    /*境界線の一括指定(noneはなし)*/
    }
    .form dl dt {
        float: none;      /*要素を左か右に寄せて配置(noneはなし)*/
        position: static; /*ボックスの配置方法(staticは指定なし)*/
        width: 100%;      /*幅指定(100%は画面横幅いっぱいに表示)*/
    }
    .form dl dd {
        float: none;        /*要素を左か右に寄せて配置(noneはなし)*/
        width: 100%;        /*幅指定(100%は画面横幅いっぱいに表示)*/
        margin-left: 10px;  /*ボックス外側左の余白*/
    }
    .form dl dd .txt, .ctSelect {
        width: 90%;           /*幅指定(100%は画面横幅いっぱいに表示)*/
        height: 30px;         /*領域の高さ指定*/
        line-height: 30px;    /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
    }
    .copyright {
        /*透明度設定*/
        opacity: 0.5;
        filter: alpha(opacity=50);
        -moz-opacity: 0.5; /*ここまで透明度設定*/
        margin-left: 0px;  /*ボックス外側左の余白*/
    }

    .flow-image {
        margin-top: 5px;
        width: 100px;
        height: 80px;
    }
    
    .member-image {
        width: 95px;
        height: 95px;
    }
    
    .about-image {
        margin-top: 5px;
        width: 100%;
    }

    .greet-image {
        width: 100px;
        height: 125px;
    }

    /* 挨拶 */
    .greet {
        font-size: 1em;
    }
    
    .contact-label {
        font-size: 1em !important;        /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
    }

    .contact-table tr, .contact-table th, .contact-table td{
        display: block;
    }

    .contact-table col:nth-of-type(1) {
        width: 100% !important;
    }
    
    .contact-block tr, .contact-block th, .contact-block td {
        display: block;
    }

    .contact-box tr, .contact-box th, .contact-box td {
        display: block;
    }

    .contact-box td{
        align: center;
    }

    .contact-box img{
        width: 100%;
    }
    
    .contact-input1, .contact-input2, .contact-select, .contact-textarea {
        width: 100%;
    }
    
    .qa-table tr, .qa-table th, .qa-table td {
        display: block;
    }
    
    .qa-table td {
        width: 100%;
    }
    
    .contact-label {
        background-color: #006400;
        color: #ffffff !important;
    }
    
    .footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 45px;
        display: block;
        background-color: #ff8c00;
        color: #fff;
        text-align: center;
    }

    .logo {
        position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
        top: 33px;
        left: 60px;
    }

    .logo img {
        width: 180px;
        height: 60px;
    }

    #topcontrol {
        right: 10px !important;
        bottom: 45px !important;
    }

    .contact {
        display: none;
    }

    /* 署名 */
    .signature-small {
        font-family: 'aoyagireisyosimo';
        font-size: 1.3em;
    }

    .signature {
        font-family: 'aoyagireisyosimo';
        font-size: 1.7em;
    }
}

@media screen and (max-width: 320px) {
    .contact-number img {
        width: 40px;
        height: 40px;
        display: block;
    }
    .logo {
        position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
        top: 33px;
        left: 50px;
    }
    .footer img {
        width: 100%;
    }
}

