/* style.css - 全体スタイル */

@charset "utf-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
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,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

strong {
    font-weight: 700;
}

:focus {
    outline: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: """";
}

a img {
    border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, sans-serif;
    font-size: 90%;
    font-weight: 500;
    color: #252525;
    -webkit-text-size-adjust: none;
    background: #f2f2f2;
    min-width: 1024px;
    line-height: 1.6;
}


/* リンク設定
------------------------------------------------------------*/
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;
    color: #777;
}

a:hover,
a:active {
    opacity: .6;
    outline: none;
    color: #999;
}


/**** Clearfix ****/
nav .panel:after,
nav#mainNav:after,
.newsTitle:after,
.bg:after,
.post:after {
    content: "";
    display: table;
    clear: both;
}

nav .panel,
nav#mainNav,
.newsTitle,
.bg,
.post {
    zoom: 1;
}


/* フォーム
------------------------------------------------------------*/
input[type="text"],
textarea {
    vertical-align: middle;
    max-width: 90%;
    line-height: 30px;
    height: 30px;
    padding: 1px 5px;
    border: 1px solid #d4d4d7;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-size: 100%;
    color: #555;
    background: #fcfcfc;
}

textarea {
    height: auto;
    line-height: 1.5;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
    padding: 3px 10px;
    background: #2a588b;
    background: -moz-linear-gradient(top, #2a588b 0%, #214a78 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2a588b), color-stop(100%, #214a78));
    background: -webkit-linear-gradient(top, #2a588b 0%, #214a78 100%);
    background: -o-linear-gradient(top, #2a588b 0%, #214a78 100%);
    background: -ms-linear-gradient(top, #2a588b 0%, #214a78 100%);
    background: linear-gradient(to bottom, #2a588b 0%, #214a78 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a588b', endColorstr='#214a78', GradientType=0);
    border: 0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    line-height: 1.5;
    font-size: 100%;
    color: #fff;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background: #2a588b;
    background: -moz-linear-gradient(top, #214a78 0%, #2a588b 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #214a78), color-stop(100%, #2a588b));
    background: -webkit-linear-gradient(top, #214a78 0%, #2a588b 100%);
    background: -o-linear-gradient(top, #214a78 0%, #2a588b 100%);
    background: -ms-linear-gradient(top, #214a78 0%, #2a588b 100%);
    background: linear-gradient(to bottom, #214a78 0%, #2a588b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#214a78', endColorstr='#2a588b', GradientType=0);
}

*:first-child + html input[type="submit"] {
    padding: 3px;
}


/* レイアウト
------------------------------------------------------------*/
#wrapper,
.inner {
    margin: 0 auto;
    width: 960px;
}

#header {
    overflow: hidden;
    background: #fff;
}

#content {
    float: left;
    width: 710px;
    padding: 30px 0;
}

#sidebar {
    float: right;
    width: 225px;
    padding: 30px 0;
}

#sidebar h2 {
    margin-top: 0;
}

#sidebar .nav-content-list {
    padding: 0;
    margin: 0 0 -5px;
}

#sidebar .nav-content-list li {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
    border-bottom: 1px dashed #dcdcdc;
}

#sidebar .nav-content-list li:last-child {
    margin-bottom: 0;
    border: 0;
}

#sidebar .nav-content-list a {
    display: block;
    color: #333;
    text-decoration: none;
    background: url(usr_img/bullet.png) 0 center no-repeat;
    padding: 10px 0 10px 15px;
}

#footer {
    clear: both;
    padding-top: 20px;
    border-bottom: 1px solid #5d5d5d;
    background: #f6f6f6;
}


/* ヘッダー
*****************************************************/
#header .bg {
    background: #2a588b;
}

#header .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


/* サイト説明文 + 住所
----------------------------------*/
#header h1,
#header p {
    float: left;
    padding: 3px 0;
    color: #fff;
    /*font-size: 80%;*/
    font-size: 70%;
    font-weight: normal;
    background: #2a588b;
}

#header p {
    float: right;
}


/* ロゴ (サイトタイトル)
----------------------------------*/
#header h2 {
    clear: both;
    width: 170px;
    padding: 30px 0;
    color: #515151;
    font-size: 160%;
    font-weight: bold;
    line-height: 1;
}


/* ヘッダー お問い合わせ
----------------------------------*/
#header .header-contact {
    text-align: right;
}

#header .header-contact p {
    color: #333;
    float: none;
    font-size: 90%;
    background: none;
    line-height: 1;
}

#header .header-contact p.hc-tel {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: .1em;
}


/* サブナビゲーション
----------------------------------*/
#header ul {
    padding-top: 40px;
    float: right;
}

#header ul li {
    display: inline;
    margin-left: 10px;
    font-size: 90%;
}

#header ul li a {
    padding-left: 10px;
    color: #000;
    background: url(usr_img/arrowSub.png) no-repeat 0 50%;
}

#header ul li a:hover {
    background-position: 3px 50%;
}


/* トップページ　メイン画像
----------------------------------*/
#mainImg {
    clear: both;
    width: 960px;
    height: 350px;
    margin: 20px auto 0;
    line-height: 0;
    text-align: center;
    z-index: 0;
    overflow: hidden;
}

.post {
    margin: 0 0 20px 0;
    padding: 15px;
    border: 1px solid #dadada;
    background: #fff;
}


/* トップページ　お知らせ
----------------------------------*/
.post .news-list {
    padding: 0;
    margin: 0;
}

.post .news-list li {
    padding: 0;
    margin: 0;
    background: none;
    border-bottom: 1px dashed #ccc;
}

.post .news-list li a {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: #333;
    padding: .5em;
}

.post .news-list li a .nl-date {
    width: 100px;
}

.post .news-list li a .nl-txt {
    width: calc(100% - 100px);
}


/* タイポグラフィ
*****************************************************/
h2.title {
    clear: both;
    margin: 30px 0 0;
    padding: 10px 15px;
    color: #2a588b;
    font-size: 130%;
    font-weight: 700;
    border: 1px solid #dadada;
    border-bottom: 0;
    background: #fff url(usr_img/border.png) repeat-x 0 100%;
}

h2.first {
    margin-top: 0;
}

.dateLabel {
    margin: 0 0 10px;
    text-align: right;
    font: italic 1em "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.post p {
    margin-bottom: 1em;
}

.post ul {
    margin: 0 0 10px 10px;
}

.post ul li {
    margin-bottom: 5px;
    padding-left: 15px;
    background: url(usr_img/bullet.png) no-repeat 0 8px;
}

.post ol li:not(:last-child) {
    margin-bottom: 1em;
}

.post ol {
    margin: 0 0 10px 30px;
}

.post ol li {
    list-style: decimal;
}

.post h1 {
    margin: 20px 0;
    padding: 5px 0;
    font-size: 150%;
    color: #000;
    border-bottom: 3px solid #000;
}

.post h2 {
    margin: 10px 0;
    padding-bottom: 2px;
    font-size: 130%;
    font-weight: normal;
    color: #333;
    border-bottom: 2px solid #515151;
}

.post h3 {
    margin: 2em 0 1em;
    font-size: 120%;
    font-weight: 700;
    color: #214a78;
    border-bottom: 1px solid #515151;
}

.post h3:first-child {
    margin-top: 0;
}

.post h4 {
    font-weight: 700;
    font-size: 1.1em;
    margin: 1em 0 .5em;
}

.post h5 {
    font-weight: 700;
}

.post blockquote {
    clear: both;
    padding: 10px 0 10px 15px;
    margin: 10px 0 25px 30px;
    border-left: 5px solid #ccc;
}

.post blockquote p {
    padding: 5px 0;
}

.post table {
    box-sizing: border-box;
    width: 100%;
    border: 1px #214a78 solid;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 10px 0 20px;
    font-size: .9em;
}

.post table th {
    padding: 10px 15px;
    border: #214a78 solid;
    border-width: 0 0 1px 1px;
    font-weight: bold;
    color: #fff;
    background: #214a78;
    text-align: center;
    vertical-align: middle;
    border-color: #6586ab;
}

.post table td {
    padding: 10px 15px;
    border: 1px #214a78 solid;
    border-width: 0 0 1px 1px;
    background: #fff;
}

.post dt {
    font-weight: bold;
}

.post dd {
    padding-bottom: 10px;
}

.post img {
    max-width: 100%;
    height: auto;
}

img.aligncenter {
    display: block;
    margin: 5px auto;
}

img.alignright,
img.alignleft {
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
}

img.alignleft {
    margin: 0 7px 2px 0;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.post a {
    color: dodgerblue;
    text-decoration: underline;
}



/* サイドバー　ウィジェット
*****************************************************/
section.widget,
.widgetInfo {
    margin: 0 0 20px;
    padding: 10px 7px;
    border: 1px solid #dadada;
    background: #fff;
}

#banners img {
    max-width: 225px;
    height: auto;
    padding-bottom: 10px;
}

section.widget h3 {
    clear: both;
    margin: 0 0 10px;
    padding: 5px 0;
    font-size: 100%;
    font-weight: normal;
    color: #333;
    border-bottom: 1px solid #ccc;
}

section.widget a {
    display: block;
    padding: 3px 0 3px 13px;
    text-decoration: underline;
    background: url(usr_img/arrow.png) no-repeat 0 50%;
}

section.widget a:hover {
    text-decoration: none;
    background-position: 3px 50%;
}

#searchform input[type="text"] {
    line-height: 1.7;
    height: 24px;
    width: 100px;
    vertical-align: bottom;
}


/* お知らせ　
-------------*/
.newsTitle {
    clear: both;
    margin: 0 0 20px;
    padding: 5px 0;
    font-size: 100%;
    color: #333;
    border-bottom: 1px solid #ccc;
}

.newsTitle h3 {
    float: left;
    font-weight: normal;
}

.newsTitle p {
    float: right;
    padding: 0 0 0 10px;
    font-size: .8em;
    background: url(usr_img/arrow.png) no-repeat 0 50%;
}

.news p {
    clear: both;
    padding-bottom: 2px;
    border-bottom: 1px solid #ccc;
    margin: 0;
}

/*
.news p:last-child {
    border: 0;
}
*/

.news p a {
    display: block;
    padding: 5px 0;
    color: #333;
}

.news a span {
    color: #515151;
}

.news span {
    padding-left: 10px;
}

.news a:hover span {
    color: #777;
}

.post .news-more {
    text-align: right;
    padding: 0;
    margin: 1em 0 0;
    line-height: 1;
}

.post .news-more a {
    display: inline-block;
    padding-left: 10px;
    background: url(usr_img/arrowSub.png) left center no-repeat;
}


/* フッター
*****************************************************/
#footer ul {
    padding-bottom: 10px;
}

#footer ul li {
    display: inline-block;
    vertical-align: text-top;
    text-align: left;
    padding: 5px 0;
    margin-right: 60px;
    background: url(usr_img/arrow.png) no-repeat 0 12px;
}

#footer ul li a {
    display: block;
    padding: 0 0 0 12px;
    overflow: hidden;
}

#footer ul li a:hover {
    text-decoration: underline;
}

#footer ul li li {
    display: block;
    padding: 0;
    margin: 0 0 0 10px;
    background-position: 0 5px;
}


*:first-child + html #footer ul li {
    display: inline;
}

*:first-child + html #footer ul ul,
*:first-child + html #footer ul li li a,
*:first-child + html #footer ul li li {
    display: none;
}

#copyright {
    clear: both;
    padding: 10px;
    text-align: center;
    font-size: 75%;
    zoom: 1;
    color: #fff;
    background: #2a588b;
}


/* page navigation
------------------------------------------------------------*/
.pagenav {
    clear: both;
    width: 100%;
    height: 30px;
    margin: 5px 0 20px;
}

.prev {
    float: left
}

.next {
    float: right;
}

#pageLinks {
    clear: both;
    color: #2a588b;
    text-align: center;
}


/* トップページ 最新記事3件
------------------------------------------------------------*/
.thumbWrap {
    width: 735px;
    margin: 20px -25px 20px 0;
}

.thumbWrap li {
    float: left;
    width: 220px;
    margin: 0 25px 0 0;
    padding: 2px 0 40px;
    background: none;
}

/* 最新記事リンク */
ul.thumb h3 {
    margin-top: 10px;
    padding: 1px;
    font-weight: normal;
    font-size: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid #777;
}

ul.thumb h3 span {
    display: block;
    padding: 2px 3px;
    background: #2a588b;
}

ul.thumb h3 a {
    color: #fff;
}

ul.thumb h3:hover span {
    background: #214a78;
}


/* メインメニュー　PC用
------------------------------------------------------------*/

nav#mainNav {
    clear: both;
    position: relative;
    z-index: 200;
    background: #2a588b;
}

nav#mainNav ul li {
    box-sizing: border-box;
    width: 16.66%;
    float: left;
    position: relative;
    border-right: 1px solid #6586ab;
}

nav#mainNav ul li:first-child {
    border-left: 1px solid #6586ab;
}

nav#mainNav ul li a {
    box-sizing: border-box;
    display: block;
    text-align: center;
    color: #fff;
    height: 60px;
    line-height: 60px;
    padding: 15px 5px 5px;
}

nav#mainNav ul li a span,
nav#mainNav ul li a strong {
    display: block;
    font-size: 90%;
    line-height: 1.4;
}

nav#mainNav ul li a span {
    font-size: 70%;
    color: #9CBDE2;
}

nav div.panel {
    display: block !important;
    float: left;
}

nav div.panel > ul {
    width: 960px;
}

a#menu {
    display: none;
}

/*
nav#mainNav ul li.current-menu-item a,
nav#mainNav ul li a:hover,
nav#mainNav ul li a:active,
nav#mainNav ul li.current-menu-parent a {
    background-color: #214a78;
}*/

.main-menu > li > a:hover {
    background-color: #214a78;
}

nav#mainNav ul ul {
    width: 160px;
}

nav#mainNav ul li ul {
    display: none;
}

nav#mainNav ul li:hover ul {
    display: block;
    position: absolute;
    top: 60px;
    left: -2px;
    z-index: 500;
}

nav#mainNav ul li li {
    padding: 0 0 0 10px;
    margin: 0;
    float: none;
    height: 40px;
    line-height: 40px;
    width: 160px;
    background: #214a78;
    border: 0;
    border-bottom: 1px solid #6586ab;
}

nav#mainNav ul li li:first-child {
    border-left: 0;
}

nav#mainNav ul li li a {
    width: 100%;
    height: 40px;
    padding: 0;
    line-height: 40px;
    font-size: 95%;
    text-align: left;
}

nav#mainNav ul li li a span {
    padding: 0 10px;
}

nav#mainNav ul li li a:hover,
nav#mainNav ul li li.current-menu-item a {
    color: #327cab;
}

nav#mainNav ul li:hover ul li:last-child {
    border: 0;
}


/* 下層 - 共通コンテンツブロック
------------------------------------------------------------*/

.set-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.set-block .cs-txt {
    width: 60%;
}

.set-block .cs-img {
    width: calc(40% - 20px);
}

.set-block-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.set-block-2 figure {
    width: calc(50% - 15px);
}

.figure-1 {
    text-align: center;
    margin: 1em 0 0;
}

figcaption {
    text-align: center;
    font-size: .9em;
}

.gmap iframe {
    width: 100%;
    height: 450px;
}

.post ol.is-list-mb0 li {
    margin-bottom: 0;
}


/* 下層 - 反転の仕組み
------------------------------------------------------------*/

.txt-em {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.txt-em strong {
    color: #B20000;
    font-size: 1.4em;
    margin: 0 5px 0 0;
}


/* 下層 - 技術審査証明
------------------------------------------------------------*/

.review-result-block {
    position: relative;
    background: url(usr_img/review_img3.jpg) right 0 top 20px no-repeat;
}


/* 下層 - 施工実績
------------------------------------------------------------*/

.post table.is-works-list td {
    padding: 5px;
    vertical-align: middle;
}

.post table.is-works-list.is-all-center td {
    text-align: center;
}

.post table.is-works-list tr td:first-child {
    text-align: center;
}

.post table.is-works-count td {
    padding: 5px;
    text-align: center;
    vertical-align: middle;
}

.cmn-table-scroll {
    width: 100%;
    overflow: auto;
}

/* -- 全体幅 */
.cmn-scrollbar::-webkit-scrollbar {
    /*width: 10px;*/
    height: 13px;
}

/* -- 背景部分 */
.cmn-scrollbar::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 110px;
}

/* -- つまみ */
.cmn-scrollbar::-webkit-scrollbar-thumb {
    background: #214a78;
    border-radius: 10px;
}

.cmn-table-scroll table {
    width: 1600px;
    font-size: .8em;
}

.cmn-table-scroll .is-fix {
    position: sticky;
    left: 0;
    border: 0;
}

.cmn-table-scroll .is-fix:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    display: block;
    width: 1px;
    height: 100%;
    background: #214a78;
    margin: auto;
}

.cmn-table-scroll .is-fix:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #6586ab;
    margin: auto;
}

.cmn-table-scroll .is-fix.is-end:after {
    content: normal;
}


/* 下層 - お問い合わせ
------------------------------------------------------------*/

.formArea {
    padding: 10px 10px 0;
    margin: 0 auto;
}

.formArea input,
.formArea select,
.formArea textarea {
    font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, sans-serif;
    font-size: 16px;
    border-radius: 0;
    padding: .2em .5em;
}

.form_requir {
    background-color: #ff3333;
    color: #ffffff;
    font-size: 9px;
    line-height: 100%;
    text-align: center;
    padding: 0 4px;
    margin-left: 10px;
}

.form_fld {
    font-weight: bold;
}

.form-errors {
    color: #ff0000;
    padding-top: 8px;
}

.form-paarea {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.form-pa1 {
    position: relative;
    width: 130px;
    line-height: 1;
}

.form-pa1 .updatable-img[src="usr_img/reload.png"] {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #fff;
}

.form-pa2 {
    width: calc(100% - 130px - 20px);
    line-height: 1;
}

.form-pa2 input {
    margin-top: 4px;
}

.formItemD {
    margin-bottom: 1.5em;
}

.form-food {
    text-align: center;
}

.form-food input {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2em;
    font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, sans-serif;
    min-width: 160px;
    padding: .5em 1em;
    margin: .5em;
}

.form-return input[type="submit"] {
    background: #333;
}

.formItemH {
    font-weight: 700;
}

.form-fdl {
    width: 100%;
    margin: 1em 0;
}


/* 会員専用
------------------------------------------------------------*/

.member-hedaer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.member-tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    border-radius: 15px;
    color: #fff;
    background: #2a588b;
    margin-left: 1em;
}

.member-wrapper {
    padding: 0 0 50px;
}

.member-block {
    box-sizing: border-box;
    width: 900px;
    margin: 0 auto;
    background: #fff;
}

.member-block .cs-ttl {
    color: #2a588b;
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
    border-bottom: 2px solid #2a588b;
    line-height: 1;
}

.member-block .cs-subttl {
    margin: 0 0 1em;
    font-size: 20px;
    font-weight: 700;
    color: #214a78;
    border-bottom: 1px solid #515151;
}

.member-block .cs-inr {
    font-size: 18px;
    padding: 30px;
}

.member-block .cs-back {
    text-align: center;
    font-size: 16px;
    margin-top: 3em;
}

.member-block .cs-back a {
    color: dodgerblue;
    text-decoration: underline;
}

.member-block ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
    border-bottom: 1px dashed #ccc;
}

.member-block ul li a {
    display: block;
    color: dodgerblue;
    text-decoration: none;
    background: url(usr_img/bullet.png) 0 center no-repeat;
    padding: 10px 0 10px 15px;
}


/* 各種パーツ
------------------------------------------------------------*/

.post .table-1,
.post .table-1 th,
.post .table-1 td {
    padding: 0;
    border: 0;
}

.post .table-1 tr {
    border-bottom: 1px dotted #999;
}

.post .table-1 th,
.post .table-1 td {
    padding: 1em;
}

.post .table-1 td.is-date {
    width: 100px;
}

.mtop2 {
    margin-top: 2em !important;
}


/* メインメニュー iPadサイズ以下から
------------------------------------------------------------*/
/*
@media only screen and (max-width:1024px){
  nav#mainNav{
  clear:both;
  width:100%;
  margin:0 auto;
  padding:10px 0;
  }
  
  nav#mainNav .inner{width:98%;}
  
  nav#mainNav a.menu{
  width:100%;
  display:block;
  height:40px;
  line-height:40px;
  font-weight: bold;
  text-align:left;
  color:#fff;
  border:1px solid #2a588b;
  background: #2a588b url(usr_img/menuOpen.png) no-repeat 5px 10px;
  }
  
  nav#mainNav a#menu span{padding-left:35px;}
  
  nav#mainNav a.menuOpen{
  border-bottom:0;
  color:#2a588b;
  background: #fff url(usr_img/menuOpen.png) no-repeat 5px -32px;
  }
  
  nav#mainNav a#menu:hover{cursor:pointer;}
  
  nav .panel{
  display: none;
  width:100%;
  position: relative;
  right: 0;
  top:0;
  z-index: 1;
  border:1px solid #515151;
  }

  nav#mainNav ul{margin:0;padding:0;}

  nav#mainNav ul li{
  float: none;
  clear:both;
  width:100%;
  height:auto;
  line-height:1.2;
  }

  nav#mainNav ul li a,nav#mainNav ul li.current-menu-item li a{
  display: block;
  padding:15px 10px;
  text-align:left;
  color:#fff;
  border-bottom:1px solid #6586ab;
  background:#2a588b;
  }

 nav#mainNav ul li a span{display:none;}
 
  nav#mainNav ul li.current-menu-item a,nav#mainNav ul li a:hover,nav#mainNav ul li.current-menu-item a,nav#mainNav ul li a:active, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-item li a:active{
  color:#327cab;
  background:#214a78;
  }

  nav#mainNav ul li li{
  float:left;
  border:0;
  }

  nav#mainNav ul li li a, nav#mainNav ul li.current-menu-item li a, nav#mainNav ul li li.current-menu-item a{
    padding-left:40px;
    background:#2a588b url(usr_img/sub1.png) no-repeat 30px 50%;
  }

  nav#mainNav ul li li.current-menu-item a,nav#mainNav ul li li a:hover, nav#mainNav ul li.current-menu-item li a:hover{
    background:#214a78 url(usr_img/sub1.png) no-repeat 30px 50%;}
  
  nav#mainNav ul li li:last-child a{background:#2a588b url(usr_img/subLast.png) no-repeat 30px 50%;}
  nav#mainNav ul li li:last-child.current-menu-item a,nav#mainNav ul li li:last-child a:hover,nav#mainNav ul li.current-menu-item li:last-child a:hover{background:#214a78 url(usr_img/subLast.png) no-repeat 30px 50%;}
  
  nav div.panel{float:none;}
  
  #mainImg{margin-bottom:20px;}
}
*/

/* 959px以下から 1カラム表示
------------------------------------------------------------*/
/*
@media only screen and (max-width: 959px){
  #wrapper, #header, .inner{width:100%;}

  #header h1, #header p{padding:5px 10px;}
  #header h2{padding:20px 10px 0;}
  #header ul{padding:20px 10px 10px;}


  nav#mainNav ul, .thumbWrap{margin:0 auto;}
  nav#mainNav ul ul{padding:0;}

  nav div.panel{float:none;}
  
  #mainImg img{width:98%;height:auto;}

  #content, #sidebar{
  clear:both;
  width:95%;
  float:none;
  margin:0 auto;
  padding:10px 0;
  }
  
  #banners{width:100%;margin:0 auto;text-align:center;}
  #banners p{display:inline;margin:0 10px;}
  #banners p img{width:100%;height:auto;}
  
  section.widget_search{text-align:center;}

  #footer{margin:0;border:0;text-align:center;}
  
  #footer ul{  text-align:center;  }
  #footer ul li{margin-right:20px;}
}
*/

/* 幅648px以下から  トップページの３画像調節
------------------------------------------------------------*/
/*
@media only screen and (max-width: 648px){
  .thumbWrap{width:100%;margin:0 auto;text-align:center;}
  .thumbWrap ul.thumb li{width:30%; float:left;margin:0 1% 0 2%;}
  .thumbWrap img{width:100%;height:auto;}
}
*/


/* 幅644px以下から ヘッダー等微調節
------------------------------------------------------------*/
/*
@media only screen and (max-width: 644px){
  #header{text-align:center;}
  #header h2,#header ul{float:none;}
  #headerInfo{width:250px;margin:0 auto;}
  img.alignright, img.alignleft{display: block;  margin:5px auto;}
  .alignright,.alignleft{float:none;}
  #footer ul{text-align:left;padding:15px;}
  #footer ul ul{padding:0;}
}
*/

/* 231214 追加
------------------------------------------------------------*/

.order-sheet-block {
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    background-color: #F4F6F9;
    border: 1px dashed #ccc;
}

.order-sheet-block a {
    color: dodgerblue;
    text-decoration: underline;
}

/* エラー */

.error {
  margin: 100px 0 0 0;
  padding: 0;
  width: 500px;
  text-align: right;
}

.error-box {
  margin: 0;
  padding: 15px;
  font-size: 14px;
  text-align: left;
  border: solid 1px #888888;
  background-color: #ffffff;
}

/* slider - スライダーリセット */

/* スライダー スタイル初期化
--------------------------------------------------------------- */
.bx-wrapper .bx-viewport{/* スタイル初期化 */
  background:none;
  border:none;
  box-shadow:none;
  margin:0;
  padding:0;
  left:0;
}

.bx-wrapper .bx-pager{/* ページャー位置初期化 */
  padding:0;
  line-height:1;
}

.bx-wrapper{
  margin: 0px;
  border:0;
  background:none;
}

