<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #000000; /*全体の文字色*/
  font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, Arial, Tahoma,
    sans-serif; /*フォント種類*/
  font-size: 12px; /*文字サイズ*/
  line-height: 20px; /*行間*/
  -webkit-text-size-adjust: none;
  background: #f0f0f0; /*背景色（古いブラウザ用）*/
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}

ul {
  list-style-type: none;
}

ol {
  padding-left: 40px;
  padding-bottom: 15px;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}

iframe {
  width: 100%;
}

* {
  font-size: 100%;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #666; /*リンクテキストの色*/
  -webkit-transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
  transition: 0.5s; /*同上*/
}

a:hover {
  color: #28a8b8; /*マウスオン時の文字色*/
  text-decoration: none; /*マウスオン時にリンクの下線を消す設定*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
  background: #ffffff; /*背景色*/
}

header .inner {
  height: 60px; /*ヘッダーの高さ*/
  position: relative;
}

/*ロゴ画像*/
#logo {
  position: relative;
  height: 100%;
  width: 100%;
}

#logo a {
  width: 100%;
  position: absolute;
  left: 1.5%; /*左から3%の場所に配置*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#logo img {
  width: 418px; /*画像幅*/
  max-width: 78%;
}

/* Search Form(Header) Styles */
#logo #searchform {
  position: absolute;
  right: 1.5%; /*左から3%の場所に配置*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 900px) {
  header .inner {
    height: 100px;
  }

  #logo a {
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
    -ms-transform: translateY(-90%);
  }

  #logo #searchform {
    -webkit-transform: translateY(-6%);
    transform: translateY(-6%);
    -ms-transform: translateY(-6%);
  }
}

/*ヘッダー右側のアイコン類*/
#h-nav {
  position: absolute;
  right: 3%; /*右から3%の場所に配置*/
  top: 34px; /*上から34pxの場所に配置*/
}

/*ヘッダー右側のアイコン類（１個あたり）*/
#h-nav li {
  float: left;
  margin-left: 20px; /*アイコン間の余白*/
}

/*ヘッダー右側のアイコン類（画像）*/
#h-nav li img {
  display: block;
  width: 30px; /*幅*/
  height: 30px; /*高さ*/
  background: #fff; /*背景色*/
  border-radius: 4px; /*角丸のサイズ。50%にすると正円になる。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#005eae),
    color-stop(#005eae),
    color-stop(#036ab5),
    color-stop(#0269b3),
    color-stop(#035b9b),
    to(#0065ad)
  );
  background-image: linear-gradient(
    #005eae,
    #005eae,
    #036ab5,
    #0269b3,
    #035b9b,
    #0065ad
  );
  overflow: hidden;
  max-width: 100%;
  height: 49px;
}

/*メニュー１個あたりの設定*/
#menubar li {
  float: left;
  overflow: hidden;
  letter-spacing: 0.2em;
  font-size: 11px;
  width: auto;
  min-width: 160px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  margin: 0px 0.5px 0px 0.5px;
  text-align: center;
}

#menubar .menu &gt; li {
  width: 13.7%;
  /*width: 12.2%;*/
  min-width: auto;
}

/*LOGGED IN*/
.logged-in #menubar .menu &gt; li {
  width: 11.2%;
}

#menubar li:hover {
  background: #0098dd;
}

#menubar li a {
  text-decoration: none;
  display: block;
  color: #ffffff; /*文字色*/
  line-height: 39px; /*高さ。ここを変える場合、fixmenu.cssの「body.is-fixed header」のサイズも変える。*/
  padding-top: 4px; /*上にあける余白。下の「border-bottom」のサイズと合わせる。*/
}

#menubar li a:hover {
  color: #ffffff;
}

/*下線のアニメーション設定*/
#menubar li::after {
  -webkit-transition: 0.5s;
  transition: 0.5s; /*0.5秒かけてアニメーションを実行する。*/
  content: "";
  display: block;
  border-bottom: 4px solid #ffffff; /*下線の幅、線種、色*/
  position: relative;
  left: 0px;
  bottom: -4px; /*bottomのサイズは上のborder-bottomの数字と合わせる。マイナス記号は残したまま。*/
}

#menubar li:hover::after,
#menubar li.current-menu-item::after {
  bottom: 0px;
}

/*別テーマから乗り換えの際、spanタグを非表示にする設定*/
#menubar li a span {
  display: none;
}

/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
  display: none;
}

/*３本バーアイコンを表示させない*/
#menubar_hdr {
  display: none;
}

#menubar .menu {
  margin: 0 auto;
  display: table;
  width: 100%;
  height: 49px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
  clear: both;
  /*margin: 3%;*/ /*ボックスの外側にとる余白*/
  margin: 3% 0% 3% 0%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
  float: right; /*右に回り込み*/
  width: 72%; /*ボックス幅*/
}

/*メインコンテンツブロック（１カラム時）*/
.c1 #main {
  float: none;
  width: 100%;
}

/*メインコンテンツのh2タグ*/
#main h2 {
  clear: both;
  margin-bottom: 20px;
  padding: 8px 20px; /*上下、左右への余白*/
  background: #ffffff; /*背景色*/
  color: #000000; /*文字色*/
}

#main h2::first-letter {
  border-left: 3px solid #0058a9; /*左側のアクセントラインの幅、線種、色*/
  padding-left: 10px;
}

.mb30 &gt; h2 &gt; a {
  float: right;
}

/*メインコンテンツのh3タグ*/
#main h3 {
  clear: both;
  margin-bottom: 20px;
  padding: 6px 20px; /*上下、左右への余白*/
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  background: #fff; /*背景色*/
}

#main h3::first-letter {
  border-left: 3px solid #28a8b8; /*左側のアクセントラインの幅、線種、色*/
  padding-left: 10px;
}

#main .override h3::first-letter {
  border: 0;
  padding: 0;
}

/*メインコンテンツの段落タグ*/
#main p {
  padding: 0px 20px 20px; /*上、左右、下への余白*/
}

#main h2 + p,
#main h3 + p {
  margin-top: -10px;
}

/*SERVICEページ
---------------------------------------------------------------------------*/
/*各ボックスの設定（共通）*/
#main .list {
  background: #fff; /*背景色*/
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /*影の設定。右へ、下へ、広げる幅、0,0,0は黒で0.2は透明度20%の事。*/
  margin-bottom: 20px;
}

#main .list a {
  text-decoration: none;
  display: block;
  overflow: hidden;
}

/*画像の設定*/
#main .list img.img {
  float: left;
  width: 25%; /*画像の幅。ここを変更する場合は、下の.list .textのmargin-leftの数字も調整する。*/
}

/*右側のテキスト欄*/
#main .list .text {
  padding: 2% 60px 2% 2%; /*上、右、下、左への余白*/
  margin-left: 27%; /*左の画像とのバランスをとって設定*/
}

/*h4見出しタグの設定*/
#main .list h4 {
  color: #28a8b8; /*文字色*/
}

/*pタグの設定*/
#main .list p {
  padding: 0 !important;
}

/*３カラムタイプのボックス設定*/
#main .list.c3 {
  width: 31%; /*ボックスの幅*/
  margin: 0 1% 20px; /*上、左右、下へのボックスの外側にとる余白*/
  float: left;
  height: 300px; /*高さ。下の「.list.c3 a」のheightと合わせる。*/
  text-align: center; /*文字をセンタリング*/
}

#main .list.c3 a {
  height: 300px;
}

/*３カラムタイプの画像設定*/
#main .list.c3 img.img {
  float: none;
  width: 100%;
}

#main .list.c3 .text {
  padding: 5px;
  margin-left: 0;
  line-height: 1.5;
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
  content: "→"; /*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
  position: absolute;
  right: 20px; /*ボックスの右から20pxの場所に配置*/
  top: 20px; /*ボックスの上から20pxの場所に配置*/
  background: #000; /*背景色（古いブラウザ用）*/
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
  color: #fff; /*文字色*/
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  border-radius: 4px; /*角丸のサイズ*/
  width: 30px; /*幅*/
  line-height: 30px; /*高さ*/
  text-align: center;
  -webkit-transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
  transition: 0.5s; /*同上*/
}

/*マウスオン時の「→」マーク*/
#main .list a:hover::before {
  background: #000; /*背景色*/
  width: 40px; /*幅*/
  line-height: 40px; /*高さ*/
}

/*１カラムでページを表示時の３カラムボックスの高さ*/
.c1 #main .list.c3,
.c1 #main .list.c3 a {
  height: 400px;
}

/*ターム*/
#main .list .terms {
  color: #999; /*文字色*/
  font-size: 12px; /*文字サイズ*/
}

/*ブログページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .blog {
  overflow: hidden;
  margin-bottom: 20px; /*ボックス同士の上下に空けるスペース*/
}

#main .blog a {
  text-decoration: none;
  display: block;
  overflow: hidden;
  border: 5px solid #eee; /*枠線の幅、線種、色*/
  padding: 20px; /*ボックス内の余白*/
  background: #fff;
}

/*マウスオン時*/
#main .blog a:hover {
  border: 5px solid #28a8b8; /*マウスオン時の枠線の設定*/
  color: #000; /*文字色*/
}

/*h3タグの設定*/
#main .blog h3 {
  border: none;
  background: transparent;
  padding: 0;
  color: #28a8b8; /*文字色*/
  font-size: 24px; /*文字サイズ*/
}

/*段落タグ*/
#main .blog p {
  padding: 0;
}

/*figure画像の設定*/
#main .blog figure {
  float: left; /*左に回り込み*/
  margin-right: 20px;
}

/*コメント数、日付の行*/
#main .blog .date {
  color: #999; /*文字色*/
  font-size: 12px; /*文字サイズ*/
  margin-top: 10px; /*上に空けるスペース*/
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*コメントのリストタグ*/
ol.commentlist {
  color: #999; /*文字色*/
}

ol.commentlist p {
  padding: 0 !important;
}

/*コメント表示欄の名前と日付*/
.comment-meta,
.comment-author {
  display: inline;
  font-weight: bold; /*太字にする設定*/
}

/*「返信」ボタン*/
.reply a {
  display: block;
  text-decoration: none;
  text-align: center;
  margin-left: auto;
  width: 80px; /*ボタンの幅*/
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  border-radius: 4px; /*角丸のサイズ*/
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(#eee)
  );
  background: linear-gradient(#fff, #eee); /*グラデーション*/
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15); /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
  margin-bottom: 20px;
}

/*「返信」した記事*/
ol.commentlist ul.children {
  margin-left: 40px; /*返信元の記事とずらす距離*/
}

ol.commentlist &gt; li {
  border-bottom: 1px solid #eee; /*記事間の境界線*/
  padding: 20px 0;
}

/*コメント入力用フォームボックス（「コメントを残す」のボックス）*/
#respond {
  overflow: hidden;
  border: 5px solid #eee; /*枠線の幅、線種、色*/
  padding: 20px; /*ボックス内の余白*/
  color: #999; /*文字色*/
  margin-bottom: 20px;
}

/*フォームの左側の見出し*/
#respond label {
  display: inline-block;
  width: 20%;
  text-align: right;
  vertical-align: top;
}

/*inputタグ、textareaタグ*/
#respond input,
#respond textarea {
  width: 75%;
  border: 1px solid #999;
}

/*「メールアドレスが公開されることはありません・・・」の文章*/
#respond p.comment-notes {
  margin-bottom: 20px;
}

/*「*」マーク*/
.required {
  color: #ff0000 !important;
}

/*「コメントを送信」ボタン*/
#respond input.submit {
  width: auto;
  display: block;
  background: #fff;
  margin: 20px auto 0;
  border-radius: 4px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(#eee)
  );
  background: linear-gradient(#fff, #eee); /*グラデーション*/
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15); /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#sub {
  float: left; /*左に回り込み*/
  width: 24%; /*幅*/
}

/*メインコンテンツブロック（１カラム時）*/
.c1 #sub {
  display: none; /*非表示にする設定*/
}

/*subコンテンツ内のh2タグ設定*/
#sub h2 {
  padding: 10px 15px; /*上下、左右へのボックス内の余白*/
  background: #fff; /*背景色（サンプルテンプレートでは以下のキーボードやグリーンの背景画像とともに設定しているので注意）*/
  border-top: 1px solid #ccc; /*上の線の幅、線種、色*/
  border-bottom: 1px solid #ccc; /*下の線の幅、線種、色*/
}

/*navの直後にnavとh2が続いた場合と、navタグの直後にh2が続いた場合に、h2の上のラインを消す設定*/
#sub nav + nav h2,
#sub nav + h2 {
  border-top: none;
}

/*subコンテンツ内のh2タグ内のspanタグ設定*/
#sub h2 span {
  display: block;
  font-size: 13px; /*文字サイズ*/
  letter-spacing: normal; /*文字間隔を標準に戻す設定*/
}

/*bg1背景（キーボード）、bg2背景（グリーン）共通設定*/
#sub h2.bg1,
#sub h2.bg2 {
  padding: 40px 15px; /*上下、左右へのボックス内の余白*/
  font-weight: normal; /*hタグのデフォルトの太字を標準にする設定*/
  letter-spacing: 0.2em; /*文字間隔を少し広くとる設定*/
  font-size: 28px; /*文字サイズ*/
  line-height: 1.5; /*行間*/
}

/*bg1背景（キーボード）*/
#sub h2.bg1 {
  background: #fff url(../images/bg1.png) no-repeat right center; /*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}

/*bg2背景（グリーン）*/
#sub h2.bg2 {
  background: #fff url(../images/bg2.png) no-repeat right center; /*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}

/*subコンテンツ内のpタグ設定*/
#sub p {
  padding: 15px;
}

#sub p.login-submit {
  padding: 15px 0;
  margin: 0;
  max-width: 100%;
}

#sub .box1 #loginform .login-username #user_login,
#sub .box1 #loginform .login-password #user_pass {
  max-width: 100% !important;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
  border-top: 1px solid #ccc; /*上の線の幅、線種、色*/
}

/*h2タグの直後にsubmenuが入った場合にsubmenuの上のラインを消す設定*/
#sub h2 + .submenu {
  border-top: none;
}

/*メニュー１個ごとの設定*/
#sub .submenu a {
  display: block;
  text-decoration: none;
}

#sub .submenu li {
  padding: 10px 15px; /*上下、左右へのメニュー内の余白*/
  border-bottom: 1px solid #ccc; /*下の線の幅、線種、色*/
}

/*「&gt;」マーク*/
#sub .submenu li::before {
  display: block;
  float: right; /*右側に配置*/
  content: "&gt;"; /*このテキストを表示させる。変更してもOKですが機種依存文字は使わないように。*/
  color: #ccc; /*文字色*/
}

/*マウスオン時の「&gt;」マーク*/
#sub .submenu li:hover::before {
  color: #28a8b8; /*文字色*/
}

/*liタグが入れ子になった場合*/
#sub .submenu li li {
  padding: 0px 0px 0px 10px;
  border: none;
}

/*subコンテンツ内のbox1と、ウィジェットの各メニュー用追加
---------------------------------------------------------------------------*/
#sub .box1,
#main .box1,
#sub .widget_archive,
#sub .widget_categories,
#sub .widget_pages {
  overflow: hidden;
  padding: 10px; /*ボックス内の余白*/
  margin-bottom: 20px; /*ボックスの下に空けるスペース*/
  border: solid 1px #dcdcdc; /*線の線種、幅、色*/
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) inset; /*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}

/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
#sub h2 + .box1 {
  border-top: none;
}

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .list {
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
  font-size: 12px; /*文字サイズ*/
  line-height: 1.2; /*行間*/
  overflow: hidden;
  padding: 10px 0;
}

#sub .list a {
  overflow: hidden;
}

/*subコンテンツ内のbox内のlist内のh2タグ設定*/
#sub .box1 .list h2 {
  background: transparent;
  padding: 0;
  margin-bottom: 5px;
  border: none;
  font-size: 14px; /*文字サイズ*/
  text-align: left; /*文字を左側に*/
  font-weight: bold;
}

/*ボックス内の画像の設定*/
#sub .list figure img {
  float: left; /*左に回り込み*/
  margin-right: 10px;
  width: 25%; /*画像幅*/
}

/*最後のボックスの下線を消す設定*/
#sub .list:last-child {
  border-bottom: none;
}

/*段落タグ*/
#sub .list p {
  padding: 0;
}

/*subブロック内の検索ブロック
---------------------------------------------------------------------------*/
#searchform {
  text-align: center; /*文字をセンタリング*/
  padding: 20px 0; /*上下、左右へのボックス内の余白*/
}

/*デフォルトで出る「検索：」の文字を消す設定*/
#searchform .screen-reader-text {
  display: none;
}

/*ウィジェットカレンダー用
---------------------------------------------------------------------------*/
#wp-calendar {
  background: #fff; /*背景色*/
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 12px;
}

#wp-calendar,
#wp-calendar th,
#wp-calendar td {
  border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
}

#wp-calendar a {
  color: #28a8b8; /*リンクテキストの色*/
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*ブロック全体*/
ul.post-meta {
  border-top: 1px solid #ccc; /*ブロックの一番上の線の幅、線種、色*/
  margin-bottom: 20px;
}

/*各行*/
ul.post-meta li {
  border-bottom: 1px solid #ccc; /*各行ごとの下線の幅、線種、色*/
}

/*各行（左側ブロック）*/
ul.post-meta li .post-meta-key {
  display: inline-block;
  width: 150px; /*幅*/
  background: #eee; /*背景色*/
  padding: 10px; /*ボックス内の余白*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
  clear: both;
}

#pagetop a {
  text-decoration: none;
  text-align: center;
  display: block;
  float: right;
  margin-right: 3%;
  color: #fff; /*文字色*/
  font-size: 20px; /*文字サイズ*/
  padding: 0px 30px; /*上下、左右へのボックス内余白*/
  background: #035b9b; /*背景色*/
  border-radius: 4px 4px 0px 0px; /*角丸のサイズ。左上、右上、右下、左下。*/
}

/*マウスオン時*/
#pagetop a:hover {
  background: #0098dd; /*背景色*/
  color: #fff; /*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  clear: both;
  background: #ffffff; /*背景色*/
  color: #fff; /*文字色*/
}

footer a {
  color: #000000;
}

footer a:hover {
  color: #555;
}

footer .pr {
  display: block;
  font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/

#footermenu {
  overflow: hidden;
  padding: 20px 0;
}

#footermenu li {
  display: block;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  clear: both;
  /*text-align: center;*/
  background: #333; /*背景色*/
  padding: 30px 0;
  position: relative;
  width: 100%;
}

#copyright a {
  text-decoration: none;
  color: #2ab7e3;
}

#copyright small {
  position: absolute;
  top: 20px;
  left: 1.5%;
}

#copyright .white-link {
  position: absolute;
  top: 20px;
  right: 1.5%;
}

@media screen and (max-width: 530px) {
  #copyright {
    text-align: center;
    padding: 10px 0;
    font-size: 100%;
  }

  #copyright small,
  #copyright .white-link {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}

/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.news {
  padding: 5px 20px; /*上下、左右へのボックス内の余白*/
}

/*日付ブロック*/
.news dt {
  float: left; /*左に回り込み*/
  width: 7em; /*幅。日付の出力を変更した際はここも調整して下さい。*/
  color: #000000; /*文字色*/
}

/*アイコンとテキストブロック（日付以外の部分）*/
.news dd {
  padding-left: 7em; /*左に空ける余白。上の日付のwidthと合わせる。*/
  position: relative;
  border-bottom: 1px solid #eee; /*下線の幅、線種、色*/
}

/*h4見出し*/
.news h4 {
  font-weight: bold; /*太字にする設定*/
}

/*段落タグ*/
.news p {
  padding: 0 !important;
}

/*コメント*/
.news .comment {
  padding-left: 12em; /*左に空ける余白。上の「.news dt」や「.news dd」のwidthの値に「1」追加したぐらいでOK。*/
}

/*アイコン（共通）*/
.news .category a {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 10em; /*幅。ここを変更した場合は上の「.news .comment」の数字も合わせて変更する。*/
  position: absolute;
  top: 5px;
  background: #999; /*背景色*/
  color: #fff; /*文字色*/
  border-radius: 2px; /*角丸のサイズ*/
  font-size: 12px; /*文字サイズ*/
  line-height: 1.8; /*行間*/
  padding: 0 5px; /*上下、左右へのアイコン内の余白*/
}

/*アイコン「news」*/
.news .category-news .category a {
  background: #0058a8; /*背景色*/
  color: #fff;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
  padding: 0px 15px; /*上下、左右への余白*/
}

/*質問の設定*/
.faq dt {
  color: #28a8b8; /*文字色*/
  font-weight: bold; /*太字*/
  padding-top: 15px;
}

.faq dt a {
  color: #1a4ef7;
}

/*回答の設定*/
.faq dd {
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
  overflow: hidden;
  padding-bottom: 15px;
}

/*段落タグ*/
.faq p {
  padding: 0 !important;
}

/*テーブル ta1
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
  width: 96%;
  margin: 0 2% 20px;
  background: #fff; /*背景色*/
}

.ta1,
.ta1 td,
.ta1 th {
  border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
  padding: 10px; /*ボックス内の余白*/
  word-break: break-all;
}

/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
  width: auto;
  text-align: left; /*左よせ*/
  background: #eee; /*背景色*/
}

/*ta1の左側ボックス*/
.ta1 th {
  width: 140px; /*幅*/
  text-align: center; /*センタリング*/
}

/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
  width: 100%;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
  background: #f00;
  color: #fff;
  font-size: 70%;
  line-height: 1.5;
  padding: 0 5px;
  border-radius: 2px;
  margin: 0px 5px;
  display: inline-block;
  vertical-align: text-top;
}

/*ページ内メニュー（サービスページ内でジャンルを指定した場合に出る見出し下のメニュー）
---------------------------------------------------------------------------*/
ul.nav {
  text-align: center;
  padding-bottom: 10px;
}

ul.nav li {
  display: inline;
  padding: 10px;
}

ul.nav li.current-cat a {
  text-decoration: none;
  color: #28a8b8;
}

/*ページナビ
---------------------------------------------------------------------------*/
/*ボックス全体*/
.page-numbers {
  clear: both;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 20px;
  margin-bottom: 20px;
}

/*ナビ１個あたりの設定*/
.page-numbers li {
  display: inline;
}

.page-numbers a {
  text-decoration: none;
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  background: #fff; /*背景色*/
  padding: 10px; /*ボックス内の余白*/
}

/*現在表示中の設定*/
.page-numbers li .current,
.page-numbers span {
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  padding: 10px; /*ボックス内の余白*/
  font-weight: bold; /*文字を太字に*/
  background: #eee; /*背景色*/
  color: #ababab; /*文字色*/
}

.page-numbers a span {
  background: #fff; /*背景色*/
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  padding: 10px; /*ボックス内の余白*/
  margin: -11px; /*調整。paddingとborderの数字を合わせてマイナスをつける*/
  color: #666; /*文字色*/
}

/*マウスオン時の設定*/
.page-numbers a:hover,
.page-numbers a:hover span {
  background: #eee; /*背景色*/
}

/*下の「.next」の設定の影響をリセット*/
.page-numbers .next {
  float: none;
}

/*前の投稿、次の投稿
---------------------------------------------------------------------------*/
.back {
  float: left;
}

.next {
  float: right;
}

/*固定ページに子ページがある場合のナビメニュー
---------------------------------------------------------------------------*/
div.nav {
  text-align: center;
}

div.nav a {
  display: inline-block;
  margin: 0 5px 20px;
}

div.nav a::before {
  content: "»";
}

/*その他
---------------------------------------------------------------------------*/
.look {
  color: #fff;
  background: #666;
  padding: 5px;
  border-radius: 4px;
}

.mb15,
.mb1em {
  margin-bottom: 15px;
}

.clear {
  clear: both;
}

ul.disc {
  padding: 0em 25px 1em;
  list-style: disc;
}

.color1 {
  color: #28a8b8;
}

.pr {
  font-size: 10px;
}

.wl {
  width: 96%;
}

.ws {
  width: 50%;
}

.c {
  text-align: center;
}

.r {
  text-align: right;
}

.l {
  text-align: left;
}

.fr {
  float: right;
  margin-left: 1%;
  margin-bottom: 15px;
  width: 45%;
}

.fl {
  float: left;
  margin-right: 1%;
  margin-bottom: 15px;
  width: 45%;
}

.big1 {
  font-size: 30px;
  letter-spacing: 0.2em;
}

.mini1 {
  font-size: 11px;
}

.sh {
  display: none;
}

.dn {
  display: none;
}

/*画面幅1200px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  /*SERVICEページ
    ---------------------------------------------------------------------------*/
  /*３カラムタイプのボックスの高さ*/
  #main .list.c3,
  #main .list.c3 a {
    height: 380px;
  }

  /*１カラムでページを表示時の３カラムボックスの幅*/
  .c1 #main .list.c3 {
    width: 23%;
  }
}

/*画面幅1600px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 1600px) {
  /*SERVICEページ
    ---------------------------------------------------------------------------*/
  /*３カラムタイプのボックスの高さ*/
  #main .list.c3,
  #main .list.c3 a {
    height: 450px;
  }

  /*１カラムでページを表示時の３カラムボックスの幅*/
  .c1 #main .list.c3 {
    width: 18%;
  }

  /*共通*/
  #main .list.c3,
  .c1 #main .list.c3 {
    max-width: 400px; /*この幅以上には広がらないようにする*/
  }
}

/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 900px) {
  /*ヘッダー（ロゴが入った最上段のブロック）
    ---------------------------------------------------------------------------*/
  /*ヘッダー右側のアイコン類*/
  #h-nav {
    right: 20%; /*右から20%の場所に配置*/
  }

  /*メインメニュー
    ---------------------------------------------------------------------------*/
  /*メニューブロックの設定*/
  #menubar-s {
    display: block; /*小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える*/
    background: #035b9b;
    overflow: hidden;
  }

  /*メニュー１個あたりの設定*/
  #menubar-s li {
    float: left;
    width: 50%; /*幅*/
  }

  #menubar-s li a:hover {
    background: #0098dd;
  }

  #menubar-s li a {
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 50px; /*行間（高さ）*/
    color: #ffffff;
    border: 1px solid #fff;
  }

  /*#menubar-s li:nth-child(even) a {
        border-right: none;
    }*/
  /*大きな端末用(画面幅801px以上)メニューを非表示にする*/
  #menubar {
    display: none;
  }

  /*３本バーアイコン設定
    ---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
    display: block;
    z-index: 4;
    position: absolute;
    top: 6px; /*上から25pxの場所に配置*/
    right: 6px; /*右から3%の場所に配置*/
    width: 30px; /*幅*/
    border: 1px solid #035b9b; /*枠線の幅、線種、色*/
    padding: 12px 10px 5px; /*上、左右、下へのボックス内余白*/
  }

  body.home #menubar_hdr {
    border: 1px solid #035b9b; /*トップページでの枠線の幅、線種、色*/
  }

  /*３本のバー（1本あたり）*/
  #menubar_hdr span {
    display: block;
    border-top: 3px solid #035b9b; /*枠線の幅、線種、色*/
    margin-bottom: 7px; /*バー同士の余白*/
  }

  body.home #menubar_hdr span {
    border-top: 3px solid #035b9b; /*トップページでの枠線の幅、線種、色*/
  }

  body.home #menubar_hdr:hover {
    border: 1px solid #0098dd; /*トップページでの枠線の幅、線種、色*/
  }

  body.home #menubar_hdr:hover span {
    display: block;
    border-top: 3px solid #0098dd; /*枠線の幅、線種、色*/
    margin-bottom: 7px; /*バー同士の余白*/
  }

  /*main,subコンテンツ
    ---------------------------------------------------------------------------*/
  #main,
  #sub {
    float: none;
    width: auto;
  }

  /*subコンテンツ内のlistボックス
    ---------------------------------------------------------------------------*/
  /*ボックス１個あたりの設定*/
  #sub .list {
    font-size: 100%;
    line-height: normal; /*行間*/
  }

  /*ボックス内の画像の設定*/
  #sub .list figure img {
    width: 15%; /*画像幅*/
  }

  /*その他
    ---------------------------------------------------------------------------*/
  body.s-n #sub {
    display: none;
  }
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /*ヘッダー（ロゴが入った最上段のブロック）
    ---------------------------------------------------------------------------*/
  /*ヘッダー右側のアイコン類*/
  #h-nav {
    left: 0px; /*左から0pxの場所に配置*/
    top: 55px; /*上から55pxの場所に配置*/
  }

  /*メインメニュー
    ---------------------------------------------------------------------------*/
  /*メニュー１個あたりの設定*/
  #menubar-s li {
    float: none;
    width: 100%;
  }

  #menubar-s li a {
    border-right: none;
  }

  /*SERVICEページ
    ---------------------------------------------------------------------------*/
  /*画像の設定*/
  #main .list img.img {
    float: none;
    width: 100%;
  }

  /*右側のテキスト欄*/
  #main .list .text {
    padding: 2%;
    margin-left: 0;
  }

  /*３カラムタイプのボックス設定*/
  #main .list.c3 {
    width: auto;
    margin: 0 0 20px;
    float: none;
    height: auto;
  }

  #main .list.c3 a {
    height: auto;
  }

  /*ブログページのフィードバック以降のブロック
    ---------------------------------------------------------------------------*/
  /*「返信」した記事*/
  ol.commentlist ul.children {
    margin-left: 0px;
  }

  /*お知らせ用の設定
    ---------------------------------------------------------------------------*/
  /*コメント*/
  .news .comment {
    padding-left: 0;
  }

  /*コメント内の段落タグ*/
  .news .comment p {
    padding: 0 !important;
  }

  /*アイコン（共通）*/
  .news .category a {
    display: none;
  }

  /*カスタムフィールド出力用（擬似テーブル）
    ---------------------------------------------------------------------------*/
  /*各行（左側ブロック）*/
  ul.post-meta li .post-meta-key {
    width: 100px; /*幅*/
  }

  /*フッターメニュー
    ---------------------------------------------------------------------------*/
  /*ボックス全体*/
  #footermenu {
    display: none;
  }

  /*テーブル
    ---------------------------------------------------------------------------*/
  /*テーブル内の左側*/
  .ta1 th {
    width: 90px;
    padding: 5px;
  }

  /*テーブル内の右側*/
  .ta1 td {
    width: auto;
    padding: 5px;
  }

  /*その他
    ---------------------------------------------------------------------------*/
  .ws,
  .wl {
    width: 95%;
  }

  .fr,
  .fl {
    float: none;
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .sh {
    display: block;
  }

  .pc {
    display: none;
  }
}

/**----------------------------------------------------------
 * Re usable components
------------------------------------------------------------*/
.div-pad-spacer {
  padding-bottom: 10px;
}

/*Main menu and its submenu
---------------------------------------------------------------------------*/
#menu-top-menu .menu-item-has-children &gt; a::before {
  color: #0025dd;
  font-size: 0.7em;
  content: "▼ ";
}

#menu-top-menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 8.5%;
}

#menu-top-menu .menu-item-has-children .sub-menu a {
  text-decoration: none;
  display: block;
}

#menubar .menu-item-has-children .sub-menu li {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#005eae),
    color-stop(#005eae),
    color-stop(#036ab5),
    color-stop(#0269b3),
    color-stop(#035b9b),
    to(#0065ad)
  );
  background: linear-gradient(
    #005eae,
    #005eae,
    #036ab5,
    #0269b3,
    #035b9b,
    #0065ad
  );
  float: none !important;
  overflow: hidden;
  letter-spacing: 0.2em;
  min-width: unset;
  width: 100%;
}

#menu-top-menu .menu-item-has-children:hover &gt; .sub-menu {
  display: block;
}

#menu-top-menu .menu-item-has-children:hover {
  background-color: #0098dd;
  color: #ffffff;
}

@media screen and (min-width: 1020px) {
  #container {
    max-width: 80%;
    margin: 0px auto;
  }

  body.is-fixed #menu-top-menu .menu-item-has-children .sub-menu {
    width: 14.5%;
  }
}

@media screen and (max-width: 1020px) {
  #container {
    max-width: 100%;
  }

  #menu-top-menu .menu-item-has-children .sub-menu {
    width: 16.05%;
  }

  body.is-fixed #menu-top-menu .menu-item-has-children .sub-menu {
    width: 16%;
  }
}

/*Log~in box
---------------------------------------------------------------------------*/
.widgettitle {
  margin: 0px auto;
  max-width: 100%;
  height: 40px;
  color: #ffffff;
  font-size: 14px;
  line-height: 40px;
  background-color: #0058a8 !important;
  text-align: center;
  padding: 0 !important;
}

#sub .box1 #loginform {
  margin: 10px auto 0px auto;
  padding: 0px;
  max-width: 218px;
  text-align: center;
}

#sub .box1 #loginform .login-username,
#sub .box1 #loginform .login-password {
  margin: 0px auto;
  padding: 3px 0px;
  max-width: 230px;
}

#sub .box1 #loginform .login-username label,
#sub .box1 #loginform .login-password label {
  float: left;
  margin: 0px;
  padding: 0px;
  color: #0058a9;
  font-size: 11px;
}

#sub .box1 #loginform .login-username #user_login,
#sub .box1 #loginform .login-password #user_pass {
  margin: 0px;
  padding: 0px;
  max-width: 150px;
  font-size: 13px;
}

#sub .box1 #loginform .login-username input,
#sub .box1 #loginform .login-password input {
  width: 100%;
  border: 1px solid #e4e4e4;
}

.login-submit {
  margin: 0px auto 5px auto;
  padding: 0px;
  max-width: 150px;
  height: 29px;
  text-align: center;
}

#wppb-submit {
  width: 100%;
  height: 27px;
  margin-top: 5px;
  cursor: pointer;
  color: #ffffff;
  font-size: 13px;
  font-weight: bolder;
  line-height: 25px;
  text-decoration: none;
  text-align: center;
  background: #b7deed;
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, #b7deed),
    color-stop(65%, #21b4e2),
    color-stop(100%, #21b4e2)
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#b7deed),
    color-stop(65%, #21b4e2),
    to(#21b4e2)
  );
  background: linear-gradient(to bottom, #b7deed 0%, #21b4e2 65%, #21b4e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b7deed', endColorstr='#21b4e2', GradientType=0);
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border: 0px solid #000000;
}

#sub div.box1 div.login p.wppb-alert {
  display: grid !important;
}

.forget_login2 {
  margin: 0px auto 0px auto;
  padding: 0px;
  max-width: 180px;
  color: #0058a9;
  font-size: 11px;
  text-align: center;
  text-decoration: underline;
}

.arrow_login {
  float: left;
  margin: 4px 0px 0px 0px;
  border: 0px;
  line-height: 50px;
  position: relative;
  left: 2px;
}

.forget_login2 &gt; a:link {
  color: #0058a9;
  text-decoration: underline;
}

.about_member2 {
  margin: 0px auto 0px auto;
  padding: 0px;
  max-width: 180px;
  color: #0058a9;
  font-size: 11px;
  text-align: center;
  text-decoration: underline;
}

.about_member2 &gt; a:link {
  color: #0058a9;
  text-decoration: underline;
}

/*Footer menu and its submenu
---------------------------------------------------------------------------*/
#footermenu {
  display: table;
  margin: 0 auto;
}

.footermenu_container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footermenu_container &gt; li {
  margin-right: 30px;
}

.footermenu_container .menu &gt; li {
  margin-bottom: 10px;
}

.footermenu_container .menu &gt; li &gt; a {
  font-weight: bold;
}

.footermenu_container ul.sub-menu {
  list-style-type: circle !important;
  display: block;
}

.footermenu_container ul.sub-menu &gt; li {
  padding-top: 3px;
  list-style-type: circle !important;
  display: block;
}

.footermenu_container ul.sub-menu li:before,
#footermenu ul.sub-menu li a {
  color: #0058a9;
  content: "⯈  ";
}

.footermenu_container .menu &gt; li:last-child {
  margin-bottom: 0;
}

.footermenu_container &gt; li:last-child {
  margin-right: 0;
}

.footermenu_container .menu &gt; li {
  font-size: 14px;
}

.footermenu_container .menu a {
  text-decoration: none;
}

#pagetop {
  line-height: 2;
}

/*Sidebar banner
---------------------------------------------------------------------------*/
.side-banner {
  margin-bottom: 10px;
  max-width: 100%;
  text-align: center;
}

.map {
  width: 100%;
  height: 300px;
  text-align: right;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 300px;
  width: 100%;
}

/**----------------------------------------------------------
 * Mofa AD
------------------------------------------------------------*/
#mofa-ad-one {
  padding-bottom: 5px;
}

#mofa-ad-two {
  border: 1px solid #a4a4a4;
}

#mofa-ad-two img {
  width: 100%;
  height: 65px;
}

/*Footer banner
---------------------------------------------------------------------------*/
#foot-banner {
  clear: both;
  margin: 0 auto 20px auto;
  display: table;
  text-align: center;
}

#foot-banner ul li {
  display: inline-block;
  max-width: 32%;
  margin: 5px 3px;
  border: 1px solid #727171;
}

@media screen and (max-width: 500px) {
  #foot-banner ul li {
    display: block;
    max-width: 100%;
    max-height: auto;
  }
}

.top-h2::first-letter {
  border-left: none !important;
  padding-left: 0px !important;
}

.top-h2 {
  padding-left: 10px;
}

/** For Contact Form 7 custom styles **/
.contact-div {
  max-width: 580px;
  width: 90%;
  height: auto;
  min-height: 30px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
  -webkit-box-shadow: 3px 5px #888888;
  box-shadow: 3px 5px #888888;
}

.contact-area {
  max-width: 580px;
  width: 90%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
  -webkit-box-shadow: 3px 5px #888888;
  box-shadow: 3px 5px #888888;
}

input#submitBtn {
  max-width: 600px;
  width: 100%;
  height: auto;
  min-height: 50px;
  margin: 0 auto;
  overflow: hidden;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1a84c5),
    color-stop(46%, #1a84c5),
    color-stop(48%, #0076be),
    color-stop(92%, #0076be),
    color-stop(94%, #04598c),
    to(#04598c)
  );
  background: linear-gradient(
    to bottom,
    #1a84c5 0%,
    #1a84c5 46%,
    #0076be 48%,
    #0076be 92%,
    #04598c 94%,
    #04598c 100%
  );
  font-size: 20px;
  color: white;
  font-weight: bold;
}

div.wpcf7 form.wpcf7-form div.wpcf7-form-control-wrap {
  padding: 0px 20px 15px 20px !important;
}

/** /about/directors/ custom table style **/
@media screen and (min-width: 576px) {
  .directorsDiv,
  .greetingsDiv {
    padding: 1.5rem;
    margin-right: 0;
    margin-left: 0;
    border-width: 0.2rem;
  }
}

@media screen and (min-width: 1334px) {
  div.directorsDiv .table td {
    padding: 0.45em !important;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: small;
  }
}

.directorsDiv,
.greetingsDiv,
.orgDiv {
  position: relative;
  padding: 1rem;
  margin: 1rem -15px 0;
  border-width: 0.2rem 0 0;
}

div.directorsDiv .table,
div.greetingsDiv .table,
div.orgDiv .table,
div.repDiv .table,
div.memberListDiv .table,
div.polDiv .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: #ffffff;
}

div.directorsDiv .table thead th,
div.greetingsDiv .table thead th,
div.orgDiv .table thead th,
div.repDiv .table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
}

div.directorsDiv .table td,
.table th,
div.greetingsDiv .table td,
.table th,
div.orgDiv .table td,
.table th,
div.repDiv .table td,
.table th,
div.memberListDiv .table td,
div.polDiv .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

div.directorsDiv p {
  padding: 0px 0px 0px 0px !important;
}

/** /about/greeting/ page custom styles **/
.ceoTitle {
  text-align: right;
  padding-bottom: 6px !important;
}

.ceoName {
  text-align: right;
  font-size: medium;
}

.table-bordered &gt; tbody &gt; tr &gt; td,
.table-bordered &gt; tbody &gt; tr &gt; th,
.table-bordered &gt; tfoot &gt; tr &gt; td,
.table-bordered &gt; tfoot &gt; tr &gt; th,
.table-bordered &gt; thead &gt; tr &gt; td,
.table-bordered &gt; thead &gt; tr &gt; th {
  border: 1px solid #ddd;
}

/** New Members page custom styles **/
.new-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin: 0 5% 2% 5%;
  background: white;
}

.new-member .new-member-img {
  height: 80%;
  width: 10%;
  min-width: 70px;
  min-height: 70px;
}

.new-member-img img {
  height: 100%;
  width: 100%;
  margin: auto;
  border: 1px solid gray;
}

.new-member span {
  margin: 10px;
}

.new-member &gt; p {
  margin-top: 10px;
}

.new-member-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 150px;
  width: 90%;
}

.new-member-desc p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 40px;
  padding: 0px !important;
  margin: 0px 20px 10px;
}

.no-decor {
  text-decoration: none;
}

.mini-logo img {
  height: 100px;
  width: 100px;
}

.top-member-desc p {
  margin-bottom: 3px;
}

.top-member-greet {
  margin-top: 25px;
}

.top-member-greet p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 40px;
}

.n-img {
  max-width: 75px;
  max-height: 75px;
}

/** Pbusiness List Custom Styles **/
/* If the screen size is 414px for mobile styles */
@media screen and (max-width: 414px) {
  div#pbusiness,
  div#policyproposal {
    display: block !important;
  }

  div#pbusiness div,
  div#policyproposal div {
    margin: 5px 0px 5px 0px !important;
  }

  div#pbusiness div a div.magYearHeader,
  div#policyproposal div a div.polYearHeader {
    clear: both;
    min-width: 375px;
    padding: 8px 0px 8px 0px !important;
    font-size: 16px !important;
    width: 100%;
    vertical-align: middle;
    line-height: unset;
  }

  div#pBusinessBody {
    display: block;
    width: 95% !important;
    padding-left: 10px !important;
  }

  div#pBusinessBody div.magzHeaderBody {
    padding: 5px 5px;
    font-size: 16px;
    border-bottom: 2px solid #036ab5 !important;
  }

  div#pBusinessBody div a:hover {
    text-decoration: underline;
    padding-bottom: 4px;
    color: #0058a8 !important;
    font-weight: bold;
  }

  .listpb .text {
    padding: 0% 60px 2% 4% !important;
  }
}

div#pbusiness,
div#policyproposal {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

div#pbusiness div,
div#policyproposal div {
  margin: 5px 10px;
}

div#pbusiness div a,
div#policyproposal div a {
  text-decoration: none;
}

div#pbusiness div a:hover,
div#policyproposal div a:hover {
  text-decoration: underline;
  padding-bottom: 4px;
  color: #fff;
}

div#pbusiness div a div.magYearHeader,
div#policyproposal div a div.polYearHeader {
  text-align: center;
  background: #21b4e2;
  color: #fff;
  font-weight: bold;
  max-width: 90px;
  padding: 6px 14px;
  font-size: 15px;
}

div#pBusinessBody {
  display: block;
  width: 100%;
}

div#pBusinessBody div.magzHeaderBody {
  color: black;
  margin-bottom: 35px;
  padding: 5px 5px;
  font-size: 16px;
  border-bottom: 2px solid #036ab5 !important;
}

div#pBusinessBody div a:hover {
  text-decoration: underline;
  padding-bottom: 4px;
  color: #0058a8 !important;
  font-weight: bold;
}

div#pTitle {
  font-size: 16px;
}

div#pbDetailContent {
  background: #fff;
  padding: 10px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.pbLastSpacer {
  margin-bottom: 30px !important;
}

.pbSpacer {
  margin-bottom: 15px !important;
}

.pbLSpacer {
  margin-left: 10px !important;
}

.pblistItem {
  margin-top: 12px !important;
  margin-left: 10px !important;
}

.listpb {
  background: #fff;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.listpb a {
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.listpb img.img {
  float: left;
  width: 15%;
}

.listpb .text {
  padding: 0% 60px 2% 2%;
  margin-left: 15%;
}

.listpb h4 {
  color: #28a8b8;
}

.listpb p {
  padding: 0 !important;
}

.listpb.c3 {
  width: 31%;
  margin: 0 1% 20px;
  float: left;
  height: 300px;
  text-align: center;
}

.listpb.c3 a {
  height: 300px;
}

.listpb.c3 img.img {
  float: none;
  width: 100%;
}

.listpb.c3 .text {
  padding: 5px;
  margin-left: 0;
  line-height: 1.5;
}

.listpb a::before {
  content: "→";
  position: absolute;
  right: 20px;
  top: 20px;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.listpb a:hover::before {
  background: #000;
  width: 40px;
  line-height: 40px;
}

.c1 .listpb.c3,
.c1 .listpb.c3 a {
  height: 400px;
}

.listpb .terms {
  color: #999;
  font-size: 12px;
}

/** About Custom Styles **/
@media screen and (max-width: 450px) {
  #aboutDiv {
    display: block !important;
  }

  #aboutDiv div.aboutTbl table {
    width: 100% !important;
    min-width: 400px;
    height: auto;
    padding: 0px;
    margin: 0px 0px 0px 0px;
  }

  .mainLine {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    border-bottom: 2px solid #036ab5;
    padding-bottom: 5px !important;
    margin-right: 10px;
  }

  #aboutDiv div.aboutTbl {
    margin: 15px 0px 15px 0px;
  }

  .indenter {
    margin-left: 40px;
    margin-right: 10px;
  }

  .indenter2 {
    margin-left: 80px;
    margin-right: 10px;
  }

  .indenter3 {
    margin-left: 120px;
    margin-right: 10px;
  }
}

div#aboutDiv {
  line-height: normal;
}

div#aboutDiv p {
  padding: 0px 0px;
}

.about-content {
  margin-left: 20px;
  margin-bottom: 10px;
}

.about-content p {
  padding: 0px 0px 5px 30px !important;
}

.about-content p:first-child {
  padding: 0px !important;
}

.about-button {
  font: bold;
  text-decoration: none;
  background-color: #0058a8;
  color: #ffffff;
  padding: 6px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #cccccc;
  margin-left: 30px;
}

div.aboutTbl {
  margin: 15px 0px 15px 80px;
}

div.aboutTbl .table {
  width: 90%;
  height: 350px;
  max-width: 100%;
  background-color: #ffffff;
  border-collapse: unset;
  text-align: center;
}

div.aboutTbl .table td {
  padding: 0px 3px 0px 3px;
}

.indenterMain {
  margin-left: 20px;
}

.indenter {
  margin-left: 40px;
}

.indenter2 {
  margin-left: 80px;
}

.indenter3 {
  margin-left: 120px;
}

.tdAlign {
  text-align: right;
  padding-right: 30px !important;
}

.mainLine {
  margin-top: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5;
  padding-bottom: 5px !important;
}

.mainLineDecor {
  color: #0d0d0d;
  font-size: 14px;
}

/** Organization Custom Styles **/
@media screen and (max-width: 500px) {
  #organizationContent {
    display: block !important;
  }

  #organizationContent div.orgDiv {
    width: 100% !important;
    height: auto;
    padding: 0px;
    margin: 0px 0px 0px 0px;
  }
}

#organizationContent {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#organizationContent div.orgDiv {
  width: 50%;
  height: auto;
}

#organizationContent div.orgDiv:first-child {
  margin-right: 10px;
}

div.orgDiv .orgTable thead,
div.repDiv .repTable thead {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#005eae),
    color-stop(#005eae),
    color-stop(#036ab5),
    color-stop(#0269b3),
    color-stop(#035b9b),
    to(#0065ad)
  );
  background-image: linear-gradient(
    #005eae,
    #005eae,
    #036ab5,
    #0269b3,
    #035b9b,
    #0065ad
  );
  color: white;
}

div.orgDiv .orgTable,
div.repDiv .repTable {
  border: solid 5px #dcdcdc;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) inset;
}

.margin-less {
  margin: 0px !important;
}

.margin-top-less {
  margin-top: 0px !important;
}

/** /economy/ page custom styles **/
@media screen and (max-width: 450px) {
  #ecoDiv {
    display: block !important;
  }

  #ecoDiv p {
    padding: 0px 0px;
  }

  #ecoDiv div.ecoDivTbl {
    margin: 15px 0px 15px 0px;
  }

  #ecoDiv div.ecoDivTbl table {
    width: 100% !important;
    min-width: 400px;
    height: auto;
    padding: 0px;
    margin: 0px 0px 0px 0px;
  }

  #ecoDiv div.ecoDivTbl table thead.headStyle {
    font-weight: bold;
    background: #21b4e2;
  }

  #ecoDiv p.ecoMainLine {
    margin-top: 20px;
    font-weight: bold;
    border-bottom: 2px solid #036ab5 !important;
    padding-bottom: 5px !important;
    margin-right: 10px;
  }

  #ecoDiv p.ecoMain2 {
    font-weight: bold;
    padding-bottom: 5px !important;
  }

  #ecoDiv p.ecoIndenter {
    margin-left: 40px;
    margin-right: 10px;
  }

  #ecoDiv p.ecoIndenter2 {
    margin-left: 80px;
    margin-right: 10px;
  }

  #ecoDiv p.ecoIndenter3 {
    margin-left: 120px;
    margin-right: 10px;
  }

  div.ecoDivTbl .table-bordered &gt; tbody &gt; tr &gt; td,
  div.ecoDivTbl .table-bordered &gt; thead &gt; tr &gt; th {
    min-width: 8px;
    padding: 0px !important;
  }
}

#ecoDiv p {
  padding: 0px 0px;
}

#ecoDiv p.ecoIndenterMain {
  margin-left: 20px;
  border: none !important;
}

#ecoDiv p.ecoMainLine {
  margin-top: 22px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5 !important;
  padding-bottom: 5px !important;
}

#ecoDiv p.ecoMain2 {
  font-weight: bold;
  padding-bottom: 5px !important;
}

#ecoDiv p.ecoMainLineDecor {
  color: #0d0d0d;
  font-size: 14px;
}

#ecoDiv p.ecoIndenter {
  margin-left: 40px;
  margin-right: 10px;
}

#ecoDiv p.ecoIndenter2 {
  margin-left: 80px;
  margin-right: 10px;
}

#ecoDiv p.ecoIndenter3 {
  margin-left: 120px;
  margin-right: 10px;
}

#ecoDiv p.ecoNote {
  color: red;
}

div.ecoDivTbl {
  margin: 15px 0px 15px 80px;
}

div.ecoDivTbl .table {
  width: 90%;
  height: auto;
  max-width: 100%;
  background-color: #ffffff;
  border-collapse: unset;
  text-align: center;
}

div.ecoDivTbl table thead.headStyle {
  font-weight: bold;
  background: #21b4e2;
}

.ecoSpacer {
  margin-bottom: 15px;
}

.ecoLastSpacer {
  margin-bottom: 30px;
}

.pSpacer {
  margin-bottom: 10px;
}

.ecoLink {
  color: #036ab5;
  font-weight: bold;
  font-size: 16px;
}

div.ecoDivTbl .table-bordered &gt; tbody &gt; tr &gt; td,
div.ecoDivTbl .table-bordered &gt; thead &gt; tr &gt; th {
  min-width: 15px;
  padding: 0px 0px;
}

/** Welcome Page Custom Styles **/
div#welcomeDiv {
  line-height: normal;
}

div#welcomeDiv p {
  padding-left: 0px !important;
}

.welcomeLine {
  margin-top: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5;
  padding-bottom: 5px !important;
}

.welcomeLineText {
  color: #0d0d0d;
  font-size: 14px;
}

.welcomeIndent {
  margin-left: 20px;
}

.welcomeIndent2 {
  margin-left: 40px;
}

.welcomeIndent3 {
  margin-left: 80px;
}

.welcomeIndent4 {
  margin-left: 120px;
}

div#welcomeDiv div .table {
  width: 90%;
  height: 350px;
  max-width: 80%;
  background-color: #ffffff;
  border-collapse: unset;
  text-align: center;
}

div#welcomeDiv div .table td {
  padding: 0px 3px 0px 3px;
}

div#welcomeDiv div .table .tdAlign {
  text-align: right;
  margin-right: 30px !important;
}

.welcome-dl-button {
  margin-left: 40px;
}

/** Member Guide Page Custom Styles **/
div#mgDiv {
  line-height: normal;
}

div#mgDiv p {
  padding-left: 0px !important;
}

.mgLine {
  margin-top: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5;
  padding-bottom: 5px !important;
}

.mgIndent {
  margin-left: 20px;
}

.mgIndent2 {
  margin-left: 40px;
}

/** /taxinfo/ page custom styles **/
/* If the screen size is 450px for mobile styles */
@media screen and (max-width: 450px) {
  div#taxLinks div {
    margin: 5px 5px;
  }

  div#taxLinks div.pdfHeader {
    text-align: center;
    background: #21b4e2;
    color: #fff;
    font-weight: bold;
    padding: 3.5px 3.5px !important;
  }

  div#taxLinksBody {
    display: block;
    width: 95% !important;
    padding-left: 10px !important;
  }

  div#taxLinksBody div.pdfHeaderBody {
    padding: 5px 5px;
    font-size: 16px;
    border-bottom: 2px solid #036ab5 !important;
  }

  div#taxLinksBody div a:hover {
    text-decoration: underline;
    padding-bottom: 4px;
    color: #0058a8 !important;
    font-weight: bold;
  }

  div#taxLinksBody div a:first-child {
    font-size: 15px;
  }

  div#taxLinksBody div div.taxSumLink a {
    font-size: 13px;
  }
}

div#taxDiv p {
  padding: 0px 0px;
}

.taxSpacer {
  margin-bottom: 15px;
}

.taxLastSpacer {
  margin-bottom: 30px;
}

.taxIndent {
  margin-left: 20px;
}

.taxIndent2 {
  margin-left: 40px;
}

div#taxLinks {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

div#taxLinks div {
  margin: 5px 10px;
}

div#taxLinks div a {
  text-decoration: none;
}

div#taxLinks div a:hover {
  text-decoration: underline;
  padding-bottom: 4px;
  color: #0058a8;
}

div#taxLinks div.pdfHeader {
  text-align: center;
  background: #21b4e2;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  max-width: 90px;
  padding: 5px 5px;
}

div#taxLinksBody {
  display: block;
  width: 100%;
}

div#taxLinksBody div.pdfHeaderBody {
  color: black;
  margin-bottom: 15px;
  padding: 5px 5px;
  font-size: 16px;
  border-bottom: 2px solid #036ab5 !important;
}

div#taxLinksBody div a:hover {
  text-decoration: underline;
  padding-bottom: 4px;
  color: #0058a8 !important;
  font-weight: bold;
}

div#taxLinksBody div a:first-child {
  font-size: 15px;
}

div#taxLinksBody div div.taxSumLink a {
  font-size: 13px;
}

.taxSumLink {
  color: black;
}

.taxSumText {
  color: black;
}

/* custom newmember detail page styles */
div.nm-detail div label {
  color: black;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 0px 15px 0px;
}

div.nm-detail div.spacer {
  margin-bottom: 15px;
}

div figure img.imgDetStyle {
  border: 1px solid;
  margin: 5px 0px 0px 5px;
}

.new-member-div {
  padding: 0 20px;
}

.new-member-div {
  padding: 0 20px;
}

.new-member-div img {
  max-width: 70%;
  max-height: 400px;
}

.new-member-div h5 {
  position: relative;
  padding: 5px;
  background: #77c3df;
  color: white;
  line-height: 1.3;
  z-index: -1;
  display: inline-block;
  width: 12%;
  min-width: 100px;
  text-align: center;
}

/* custom report page styles */
.repLinksDiv {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.repLink {
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
  background: #187fc4;
  color: #fff;
  font-weight: bold;
  width: 150px;
  height: 40px;
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
  text-decoration: none;
}

.repDiv {
  position: relative;
  padding: 1rem;
  margin: -15px 5px;
  border-width: 0.2rem 0 0;
  width: 50%;
  height: auto;
}

.reportLine {
  padding-left: 0px !important;
  margin-left: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5;
  padding-bottom: 5px !important;
  font-size: 14px;
}

.repTable2,
.repDiv2 {
  margin-left: 40px;
}

.repDiv2 p {
  padding-left: 0 !important;
}

.repTable2 td {
  vertical-align: top !important;
  padding-right: 15px;
  padding-bottom: 8px;
}

.repTitle2 {
  border: none !important;
  background: none !important;
}

div.reportDiv .table {
  width: auto;
  margin-bottom: 1rem;
}

div.reportDiv .table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
}

div.reportDiv .table td,
.table th {
  padding: 0px 4px 0px 3px;
  vertical-align: top;
}

div.reportDiv .table td:nth-child(1),
div.reportDiv .table td:nth-child(2) {
  text-align: right;
  min-width: 70px;
}

div.sub-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

div.repDiv2 h3.repTitle2 {
  padding: 0px 0px !important;
}

.reportSpacer {
  margin-bottom: 15px;
}

.reportLastSpacer {
  margin-bottom: 30px;
}

div.reportDiv2 .table {
  width: auto;
  margin-bottom: 1rem;
}

div.reportDiv2 .table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
}

div.reportDiv2 .table td,
.table th {
  padding: 0px 4px 0px 3px;
  vertical-align: top;
}

div#rpDiv .table td:nth-child(2) {
  text-align: right;
  min-width: 45px !important;
}

/** access page custom **/
div#accessDiv .map {
  width: 100%;
  height: 450px;
  text-align: right;
}

div#accessDiv .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 450px;
  width: 100%;
}

/* Text Styles */
.red-text {
  color: red;
}

.blue-text {
  color: #0058a8;
}

.dblUnderline {
  border-bottom: double 3px;
}

.right-text {
  text-align: right;
}

.indent-text {
  padding-left: 10% !important;
}

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

.width70 {
  width: 70%;
}

.width60 {
  width: 60%;
}

.width40 {
  width: 40%;
}

.width20 {
  width: 20%;
}

.white-link {
  text-decoration: underline !important;
  color: #ffffff !important;
}

.bold-text {
  font-weight: bold;
  font-size: 120%;
}

/* Search Styles */
.search-item {
  font-weight: bold;
  font-size: 110%;
}

/* Box Styles */
.red-box {
  border: 2px solid red;
  padding: 2px 20px 2px 0px !important;
  display: inline-block;
}

/* Member List Styles */
.membListLine {
  padding-left: 0px !important;
  margin-left: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5;
  padding-bottom: 5px !important;
  font-size: 14px;
}

div.memberListDiv table {
  width: 90% !important;
  margin: auto;
}

/* Policy Proposal Styles */
.polPrsLine {
  padding-left: 0px !important;
  margin-left: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5;
  padding-bottom: 5px !important;
  font-size: 14px;
}

.polDiv {
  margin-left: 40px;
}

.polDiv table {
  width: 100%;
}

/* FAQ Styles */
.faqDiv h4,
.faqDiv ul {
  margin-left: 20px;
}

.faqDiv ul {
  list-style-type: circle;
  padding-left: 20px;
  margin-bottom: 15px;
}

.faqDiv &gt; h4:before {
  content: "▶";
  margin-right: 10px;
}

.faqDiv .txt-question,
.faqDiv .txt-answer {
  margin-left: 20px;
}

.faqDiv .txt-question {
  padding-bottom: 0 !important;
  font-weight: bold;
}

.faqLine {
  padding-left: 0px !important;
  margin: 20px 0 20px 20px;
  font-weight: bold;
  border-bottom: 2px solid #036ab5;
  padding-bottom: 5px !important;
  font-size: 14px;
}

/* Top New Members Styles */
.top-nm-div {
  margin-left: 40px;
}

.top-nm-top {
  height: 120px;
  display: flex;
  margin: 10px 0;
}

.top-nm-lft {
  width: 25%;
  float: left;
  margin: auto;
  display: flex;
}

.top-nm-lft img {
  max-height: 120px;
  margin: auto;
}

.top-nm-rgt {
  float: left;
  margin: auto 0;
  width: 75%;
}

.top-nm-rgt p:last-child {
  padding-bottom: 0 !important;
}

.blue-line {
  border-bottom: 2px solid #036ab5;
  padding: 0 !important;
}

@media screen and (max-width: 1450px) {
  .top-nm-top {
    height: 150px;
  }

  .top-nm-lft {
    width: 35%;
  }

  .top-nm-rgt {
    width: 60%;
  }

  .top-nm-lft img {
    max-height: 150px;
    margin: auto;
  }
}

/*BOOTSTRAP*/

.bootstrap h6,
.bootstrap .h6,
.bootstrap h5,
.bootstrap .h5,
.bootstrap h4,
.bootstrap .h4,
.bootstrap h3,
.bootstrap .h3,
.bootstrap h2,
.bootstrap .h2,
.bootstrap h1,
.bootstrap .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

#content &gt; div {
  display: flex;
}

.dtsp-paneInputButton.form-control.search {
  height: 34px !important;
}

/*
.card thead {
    display: none;
}

.card tbody tr {
    width: 100%;
    margin: 0.5em;
    border: 1px solid #bfbfbf;
    border-radius: 0.5em;

    background-color: transparent !important;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.card tbody tr td {
    display: block;
    border: 0;
}
*/

/*OVERRIDE CSS */

.login-register-lost-password {
  text-align: center;
}

.forgot-password-submit,
.profile-submit,
#searchsubmit,
.member-back {
  width: 100%;
  height: 27px;
  margin-top: 5px;
  cursor: pointer;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: bolder;
  line-height: 25px;
  text-decoration: none;
  text-align: center;
  background: #b7deed;
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, #b7deed),
    color-stop(65%, #21b4e2),
    color-stop(100%, #21b4e2)
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#b7deed),
    color-stop(65%, #21b4e2),
    to(#21b4e2)
  );
  background: linear-gradient(to bottom, #b7deed 0%, #21b4e2 65%, #21b4e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b7deed', endColorstr='#21b4e2', GradientType=0);
  border-radius: 3px 3px 3px 3px !important;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border: 0px solid #000000;
  text-decoration: none !important;
}
.profile-submit,
#searchsubmit,
.member-back {
  width: max-content;
  padding-left: 15px;
  padding-right: 15px;
}
.member-back {
  padding-top: 3.5px;
  padding-bottom: 3.5px;
}
a.profile-submit {
  line-height: 2;
}

#memberTable_wrapper button[aria-controls="memberTable"],
#memberTable_wrapper button.dropdown-toggle-split,
#pills-edit-profile-tab,
#pills-edit-profile-history-tab {
  height: 27px;
  margin-top: 5px;
  cursor: pointer;
  color: #ffffff;
  font-size: 12px !important;
  font-weight: bolder;
  line-height: 25px;
  text-decoration: none;
  text-align: center;
  background: #b7deed;
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, #b7deed),
    color-stop(65%, #21b4e2),
    color-stop(100%, #21b4e2)
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#b7deed),
    color-stop(65%, #21b4e2),
    to(#21b4e2)
  );
  background: linear-gradient(to bottom, #b7deed 0%, #21b4e2 65%, #21b4e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b7deed', endColorstr='#21b4e2', GradientType=0);
  border: 0px solid #000000;
  padding-top: 0;
  padding-bottom: 0;
}
#searchsubmit {
  margin-top: 0 !important;
}
#memberTable_wrapper .dropdown-menu {
  font-size: 12px;
}

.forgot-password-inputs,
.profile-inputs,
.member-inputs {
  border: 1px solid #e4e4e4;
  width: 100%;
  height: 27px !important;
  padding-left: 7px;
  padding-top: 2px;
}
.bootstrap .was-validated .profile-inputs:invalid,
.bootstrap .profile-inputs.is-invalid,
.forgot-password-inputs.error {
  border-color: #dc3545;
}

#user_login,
#user_pass {
  border: 1px solid #e4e4e4;
  width: 100%;
  height: 25px !important;
  padding-left: 7px;
  padding-top: 2px;
  margin-left: auto;
}
#s {
  border: 1px solid #e4e4e4;
  height: 22px !important;
  padding-left: 7px;
  padding-top: 2px;
  margin-left: auto;
}
.input-group-text {
  height: 27px;
  border-radius: 0 !important;
  position: absolute;
  right: 0;
}
#department.profile-inputs,
#subClassification.profile-inputs,
#address.profile-inputs,
#plantSiteAddress.profile-inputs,
[name="parentCompanyLocation[]"].profile-inputs,
#natureOfBusiness.profile-inputs {
  height: 99px !important;
}
.add-parent-company,
.remove-parent-company {
  bottom: 10px;
}

#memberTable_wrapper [type="search"],
#memberTable_wrapper [name="memberTable_length"],
#editorLogsTable_wrapper [type="search"],
#editorLogsTable_wrapper [name="editorLogsTable_length"] {
  border: 1px solid #e4e4e4;
  width: auto;
  height: 27px !important;
  font-size: 12px;
  border-radius: 0;
}
#memberTable_wrapper [name="memberTable_length"] {
  margin-left: 5px;
  margin-right: 5px;
}

#memberTable_wrapper .sorting {
  vertical-align: middle;
}

#memberTable_wrapper .paginate_button &gt; a {
  height: 27px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 2;
}

#pass-strength-result {
  display: none !important;
}

[name="filter"] {
  border-radius: 0 !important;
}

[name="filter"] &gt; option {
  font-size: 12px;
}

button.add-classification,
button.remove-classification {
  bottom: 10px;
  margin-left: 7px !important;
}
button.add-member-details,
button.remove-member-details {
  margin-left: 7px !important;
}

.profile-options:not(.active) {
  filter: grayscale(1);
}

.import-table-container {
  max-height: 500px;
  overflow-y: scroll;
}

#memberTable th:first-child {
  width: 400px !important;
}

.forgot-password-submit-container {
  max-width: fit-content;
  margin-left: auto;
}
.forgot-password-submit {
  padding: 0 15px;
}

.bootstrap .close {
  font-size: 1rem !important;
  margin-top: 3px;
}

#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 0.25rem;
  opacity: 0.7;
}
.spinner-overlay-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
}
.spinner-overlay {
  z-index: 9999;
}

#basic-addon3 {
  font-size: 11px;
}

/* Additional common classes */
.w-0 {
  width: 0 !important;
}

@media (min-width: 1200px) {
  .w-lg-50 {
    width: 50% !important;
  }
}

@media (max-width: 900px) {
  #main {
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .row &gt; div {
    padding: 0 5px !important;
  }
  .rows {
    margin: 0 !important;
  }
  #department.profile-inputs {
    height: 170px !important;
  }
  #importContainer.card &gt; p,
  #member-register .card &gt; p {
    margin-left: -10px !important;
  }
}

@media (max-width: 463px) {
  [for="accountingStaffEmailAddress"] {
    margin-bottom: 28px !important;
  }
}
</pre></body></html>