@charset "utf-8";

/*  =============================================================

　　共通モジュール設定

============================================================= */


/*  全体・コンテナー 設定
---------------------------------------------*/

#container {
}


/*  リンク 設定
-------------------------- */

/* -- 動き滑らか -- */
#header a,
#content a img,
#footer a {
  transition: all 0.4s ease-in-out;
}

/* -- 半透明 -- */
#content a:hover img,
#content a:focus img {
  opacity: 0.6;
}


/*  画像　設定
-------------------------- */

/* フレーム付き画像 */
.imgFrame {
  padding: 10px;
  border: 1px solid #fff;
  background: #fff;
}


/*  テキスト 設定
-------------------------- */

/* 赤色 */
.txtRed {
  color: #d90000;
}

/* 灰色 */
.txtGrey {
  color: #666;
}


/*  アイコン　設定
-------------------------- */
    
/* -- 矢印アイコン -- */
.icnArw a,
.btnAcc.icnArw span,
.ttlMain.icnArw span,
.icnArw .active > * {
  display: inline-block;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  position: relative;
  padding-left: 20px;
}

/* 矢印 */
.icnArw a::before,
.btnAcc.icnArw span::before,
.ttlMain.icnArw span::before,
.icnArw .active > *::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 10px solid #fff;
  content: "";
}

.btnAcc.icnArw a::before,
.ttlMain.icnArw a::before {
  display: none;
}

/* 白色矢印 */
.icnArw.icnWhite a::before,
.btnAcc.icnArw.icnWhite span::before,
.ttlMain.icnArw.icnWhite span::before,
.icnArw.icnWhite .active > *::before {
  border-left-color: #fff;
}

/* 青色矢印 */
.icnArw.icnBlue a::before,
.btnAcc.icnArw.icnBlue span::before,
.ttlMain.icnArw.icnBlue span::before,
.icnArw.icnBlue .active > *::before {
  border-left-color: #2b5493;
}

/* 水色矢印 */
.icnArw.icnLightBlue a::before,
.btnAcc.icnArw.icnLightBlue span::before,
.ttlMain.icnArw.icnLightBlue span::before,
.icnArw.icnLightBlue .active > *::before {
  border-left-color: #4ba0c2;
}

/* オレンジ色矢印 */
.icnArw.icnOrange a::before,
.btnAcc.icnArw.icnOrange span::before,
.ttlMain.icnArw.icnOrange span::before,
.icnArw.icnOrange .active > *::before {
  border-left-color: #f0af0a;
}

/* ページリンク */
.btnPageLink a::before {
  top: 3px;
  border-top-width: 6px;
  border-right-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 14px;
}


/*  コンテンツ　設定
---------------------------------------------*/

#content {
}


/*  ボタン
-------------------------- */

/* -- 角丸ボタン -- */

.btnLink > * {
  display: inline-block;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  transition: all 0.4s ease-in-out;
  padding: 3px 5px;
  border: 1px solid #4ba0c2;
  border-radius: 4px;
  box-shadow: 0 2px #2b5493;
  background-color: #fff;
  color: #423a38;
  font-family: "segoe UI", "ヒラギノ丸ゴ Pro W4","Hiragino Maru Gothic Pro" ,"メイリオ", Meiryo, Verdana, sans-serif;
  text-align: center;
  text-decoration: none !important;
  letter-spacing: -0.1px;
  line-height: 1.4em;
  cursor: pointer;
}

/* 角丸ボタン・白色 */
.btnLink.btnWhite > *,
.btnLink.btnFuriOn > *,
.furigana .btnLink.btnFuriOff > * {
  background: #fff;
  text-shadow: 1px 1px #fff;
}

/* 角丸ボタン・黒色 */
.btnLink.btnBlack > * {
  background-color: #000;
  color: #fff;
}

/* 角丸ボタン・青色 */
.btnLink.btnBlue > * {
  background-image: url(/share/imgs/main-content-btn-bg-border-pc.png);
  background-repeat: repeat;
  background-color: #fff;
  color: #423a38 !important;
  text-shadow: 1px 1px #fff;
}

/* 角丸ボタン・水色 */
.btnLink.btnLightBlue > * {
  border: none;
  background-color: #c5e8f0;
  box-shadow: 0 2px #4ba0c2;
  color: #423a38 !important;
}

/* 角丸ボタン・送信ボタン＆戻るボタン */
.btnLink.btnSubmit > *,
.btnLink.btnBack > * {
  margin-bottom: 20px;
  padding: 12px 15px;
  border-radius: 6px !important;
  box-shadow: 0 4px #4ba0c2;
  font-size: 1.15em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btnLink.btnSubmit > * {
  letter-spacing: 1px;
}

/* 角丸ボタン・戻るボタン */
.btnLink.btnBack.icnArw > * {
  padding-left: 32px;
}

/* 角丸ボタン矢印設定・戻るボタン＆PREVボタン */
.btnLink.btnBack.icnArw > *::before,
.btnLink.btnPrev.icnArw > *::before {
  top: 50%;
  left: 5px;
  margin-top: -6px;
  border-top-width: 6px;
  border-right-width: 14px;
  border-bottom-width: 6px;
  border-left-width: 6px;
  border-right-color: #f0af0a;
  border-left-color: transparent; 
}

/*mtn*/
.btnLink.btnBack.icnArw > *::before, 
.btnLink.btnPrev.icnArw .left_arrow > *::before {
  border-left-color:transparent;
  border-right-color:#f0af0a;
  border-width:6px 14px 6px 6px;
  left:-28px;
  margin-top:-5px;
  top: 50%;
}
/*end*/


/* 角丸ボタン・PREVボタン＆Nextボタン */
.btnLink.btnPrev {
  float: left;
}

.btnLink.btnNext {
  float: right;
}

.btnLink.btnPrev.icnArw > *,
.btnLink.btnNext.icnArw > * {
  border-radius: 6px;
  box-shadow: 0 3px #2b5493;
  padding: 8px 12px;
  color: #423a38;
}

/* 角丸ボタン・PREVボタン */
.btnLink.btnPrev.icnArw > * {
  padding-left: 30px;
}

.btnLink.btnPrev.icnArw > *::before {
  left: 2px;
}

/* 角丸ボタン・Nextボタン */
.btnLink.btnNext.icnArw > * {
  padding-right: 30px;
}

.btnLink.btnNext.icnArw > *::before {
  top: 50%;
  left: auto;
  right: 2px;
  margin-top: -6px;
  border-top-width: 6px;
  border-right-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 14px;
}

/*mtn*/
.btnLink.btnNext.icnArw .right_arrow > *::before {
    top: 50%;
  left: auto;
  right: -28px;
  margin-top: -5px;
  border-top-width: 6px;
  border-right-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 14px;
}
/*end*/

/* 角丸ボタン・灰色＆ボタン触れた時 */
.btnLink.btnGrey > *,
.btnLink.btnFuriOff > *,
.furigana .btnLink.btnFuriOn > *,
.btnLink.btnWhite.on > *,
.btnLink.btnWhite .textresizer-active,
.btnLink > *:hover,
.btnLink > *:focus,
.btnLink.btnWhite > *:hover,
.btnLink.btnWhite > *:focus,
.btnLink.btnFuriOn > *:hover,
.btnLink.btnFuriOn > *:focus,
.furigana .btnLink.btnFuriOff > *:hover,
.furigana .btnLink.btnFuriOff > *:focus {
  border-color: #a18f85;
  box-shadow: 0 2px #5e5e5e;
  background-color: #d1d1d1;
}

/* 角丸ボタン・黒色触れた時 */
.btnLink.btnBlack > *:hover,
.btnLink.btnBlack > *:focus {
  color: #333;
}

/* 角丸ボタン・青色触れた時 */
.btnLink.btnBlue > *:hover,
.btnLink.btnBlue > *:focus,
.btnLink.btnLightBlue > *:hover,
.btnLink.btnLightBlue > *:focus {
  box-shadow: 0 2px #5e5e5e;
  background-color: #d1d1d1;
  background-image: none;
}

/* 角丸ボタン・送信ボタン＆戻るボタン */
.btnLink.btnSubmit > *:hover,
.btnLink.btnSubmit > *:focus,
.btnLink.btnBack > *:hover,
.btnLink.btnBack > *:focus {
  box-shadow: 0 4px #4ba0c2;
}

/* 角丸ボタン・ボタン触れた時文字色 */
.btnLink.btnGrey > *:hover,
.btnLink.btnGrey > *:focus,
.btnLink.btnFuriOff > *:hover,
.btnLink.btnFuriOff > *:focus,
.furigana .btnLink.btnFuriOn > *:hover,
.furigana .btnLink.btnFuriOn > *:focus,
.btnLink.btnWhite.on > *:hover,
.btnLink.btnWhite.on > *:focus,
.btnLink.btnWhite .textresizer-active:hover,
.btnLink.btnWhite .textresizer-active:focus {
  color: #423a38;
}

/* 角丸ボタン内・span設定 */
.btnLink > * span {
  display: inline-block;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  vertical-align: middle;
}

/* 角丸ボタン内・画像設定 */
.btnLink > * .imgLink {
  padding-right: 10px;
  text-align: center;
}

.btnLink > * .imgLink img {
  border-radius: 6px;
}

.btnLink > *:hover .imgLink img,
.btnLink > *:focus .imgLink img {
  opacity: 1 !important;
}

/* 角丸ボタン内・テキスト設定 */
.btnLink > * .txtLink {
  text-decoration: none;
  text-align: left;
}

/*  テーブル
-------------------------- */

.boxTable {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #a18f85;
  border-top: none;
  border-left: none;
  font-size: 1.1em;
}

.boxTable tr {
  border-top: 1px solid #a18f85;
}

.boxTable th,
.boxTable td {
  padding: 13px;
  border-left: 1px solid #a18f85;
}

.boxTable th {
  width: 206px;
  background: #f6f6f6;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxTable label {
  margin-right: 30px;
}


/*  アコーディオン・メニュー
-------------------------- */

#container.gt740 .boxAcc .boxAccCont {
  display: block !important;
}


/*  パンくず
-------------------------- */

.boxBreadcrumb {
  padding: 15px 0;
  letter-spacing: 0.5px;  
} 

#contentBtm .boxBreadcrumb {
  border-top: 1px solid #a18f85;
}

.boxBreadcrumb dt {
  float: left;
  width: 88px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}

.boxBreadcrumb dd {
  padding-left: 88px;
}

/* リンク */
.boxBreadcrumb a {
  margin-right: 2px;
  text-decoration: underline;
}

.boxBreadcrumb a:hover {
  text-decoration: none;
}

.boxBreadcrumb span {
  margin-right: 2px;
}


/*  タイトル
-------------------------- */

.boxCategoryTitle,
.boxCategoryTitle *,
.boxSubCategoryTitle,
.boxSubCategoryTitle *,
.ttlSection {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* カテゴリータイトル */

.boxCategoryTitle {
  margin-bottom: 20px;
  padding: 15px 15px 10px;
  border-bottom: 10px solid #91d4e3;
  background: #c5e8f0;
  font-size: 1.8em;
}

#main .boxCategoryTitle {
  min-height: 120px;
  min-height: 0\9;
  padding: 35px 10px;
  border: none;
  background: url(/share/imgs/main-content-bg-category-title.png) no-repeat bottom;
  font-size: 2.2em;
}

/* サブカテゴリータイトル */
.boxSubCategoryTitle {
  min-height: 100px;
  min-height: 0\9;
  margin-bottom: 15px;
  padding: 25px 10px 30px;
  border-top: 10px solid #91d4e3;
  background: #c5e8f0;
  font-size: 1.75em;
}

/* セクションタイトル */
.ttlSection {  
  padding: 2px;
  border: 1px solid #4ba0c2;
  border-left-width: 10px;
  background: #2b5493;
  color: #fff;
  font-size: 1.15em;
}



/*  新着情報
-------------------------- */

.boxInfoSection {
  padding-bottom: 20px;
}

.boxInfoSection .boxSectionHead {
  margin-bottom: 5px;
  padding: 5px 10px;
  border: 1px solid #4ba0c2;
}

.boxInfoSection .boxSectionHead h2 {
  float: left;
  width: 70%;
  font-size: 1.2em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxInfoSection .boxSectionHead p {
  float: right;
  width: 25%;
  font-size: 1.1em;
  text-align: right;
}

.boxInfoSection .boxSectionContent {
  padding: 0 10px;
}

/* ---- インフォ一覧 ---- */

.boxInfoList li {
  overflow: hidden\9;
  *overflow: hidden;
  clear: both;
  padding: 6px 0;
}

.boxInfoList li::after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  font-size: 0;
  content: "";
}

.boxInfoList li a {
  position: relative;
  padding-left: 20px;
}

/* 矢印 */
.boxInfoList li a::before {
  top: 5px;
  border-top-width: 6px;
  border-right-width: 6px;
  border-bottom-width: 6px ;
  border-left-width: 14px;
}

.boxInfoList li .txtCont {
  float: left;
  width: 70%;
}

.boxInfoList li .txtDate {
  float: right;
  width: 30%;
  text-align: right;
  font-size: 0.9em;
}


/*  下線付きリスト
-------------------------- */

.boxLineList {
}

.boxLineList > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted #b9aba4;
}

.boxLineList > ul > li > a,
.boxLineList > ul > li.active > * {
  display: block;
  position: relative;
  transition: all 0.4s ease-in-out;
  padding: 7px 10px 7px 25px;
}

.boxLineList > ul > li > a::before,
.boxLineList > ul > li.active > *::before {
  top: 13px;
  left: 8px;
}

.boxLineList > ul > li > a:hover,
.boxLineList > ul > li > a:focus,
.boxLineList > ul > li.active > * {
  background: #ededed;
  text-decoration: underline;
}

.boxLineList > ul > li.active > span {
  text-decoration: none !important;
}


/*  ページ一覧
-------------------------- */

.boxPageListSection {
}

.boxPageList > ul {
  margin-left: -10px;
}

.boxPageList > ul > li {
  display: inline-block;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  width: 239px;
  margin: 0 0 30px -0.4em;
  padding-left: 16px;
  vertical-align: top;
}

/* -- ページ一覧タイトル -- */

.boxPageList .ttlMain {
  display: block;
  background-color: #c5e8f0;
}

.boxPageList.boxClrOrange .ttlMain {
  display: block;
  background-image: url(/share/imgs/main-content-bg-obi-blue.png);
  background-repeat: no-repeat;
  background-position: bottom;
}

.boxPageList.boxClrBlue .ttlMain {
  border-top: 7px solid #91d4e3;
}

.boxPageList .ttlMain a {
  display: table-cell;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  transition: all 0.4s ease-in-out;
  width: 240px;
  height: 60px;
  padding: 0;
  color: #423a38;
  vertical-align: middle;
  font-size: 1.2em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxPageList .ttlMain a:hover,
.boxPageList .ttlMain a:focus {
  background: #ededed;
  text-decoration: underline;
}

.boxPageList .ttlMain span {
  display: block;
  padding: 5px 10px 5px 28px;
}

.boxPageList .ttlMain span::before {
  top: 50%;
  left: 8px;
  margin-top: -4px;
}

/* -- リストリンク -- */

.boxPageList .boxLineList > ul > li:nth-child(even) {
  background: #f6f6f6;
}

.boxPageList.boxClrOrange .boxLineList > ul > li:nth-child(even) {
  background: #fffae8;
}

.boxPageList .boxLineList > ul > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.boxPageList .boxLineList > ul > li > a::before {
  top: 15px;
}


/*  分類一覧
-------------------------- */

.boxCateListSection {
}

.boxCateList > ul > li > a {
  padding-top: 15px;
  padding-bottom: 15px;
}

.boxCateList > ul > li > a::before {
  top: 20px;
}


/*  記事一覧
-------------------------- */

.boxArticleList > ul > li {
  overflow: hidden;
  padding: 15px 10px; 
}

.boxArticleList .txtTitle {
  float: left;
  width: 68%;
}

.boxArticleList .txtDate {
  float: right;
  width: 30%;
  text-align: right;
  font-size: 0.9em;
}

.boxArticleList .txtCont {
  clear: both;
  padding-left: 20px;
}


/*  キーワード検索
-------------------------- */

.boxSearchSection {
  margin-bottom: 20px;
}

.boxSearchSection > p {
  margin-bottom: 15px;
}

.boxSearchSection .boxSearch {
  border-radius: 10px;
  border: 1px solid #2b5493;
  background: #dbf9ff;
  padding: 15px 15px 10px;  
}

.boxSearchSection .boxSearch .ttlSearch {
  margin-top: -2px;
  padding: 0 0 5px;
  font-size: 1.1em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxSearchSection .boxSearch form {
  padding: 0;
}

/* -- 入力フォーム -- */
.boxSearchSection .boxSearch .txtSearch {
  width: 92%;
  height: 34px;
  border: 1px solid #d1d1d1;
  border-right: none;
}

/* -- 検索ボタン -- */
.boxSearchSection .boxSearch .btnSearch {
  width: 8%;
  height: 36px;
  padding: 4px 0 3px 8px;
  letter-spacing: 0.6em;
  font-size: 1.05em;
  text-align: center;
}

/* ---- 説明 ---- */

.boxDescription {
  padding-top: 10px;
}

.boxDescription dt {
  padding: 2px 0;
}

.boxDescription p {
  padding-bottom: 2px;
}

.boxDescription .bgWhite {
  padding: 2px;
  background: #fff;
}

.boxDescription .txtExample {
  padding-left: 15px;
}


/*  タブ切り替え
-------------------------- */

.boxTabChange {
}

.boxTabChange .boxBtnArea dt {
  margin-left: 3px;
  padding-bottom: 5px;
  font-size: 1.1em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Tabボタン ---- */

.boxTabChange .boxBtnArea {
  margin: 0 -8px 0 -3px; 
}

.boxTabChange .boxBtnArea ul {
  display: table;
  width: 100.6%;
  border-collapse: separate;
  border-spacing: 3px 0;
}

.boxTabChange .boxBtnArea li {
  position: relative;
  transition: all 0.2s ease-in-out;
  display: table-cell;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  vertical-align: middle;
  width: 114px;
  padding: 5px 0;
  border: 1px solid #4ba0c2;
  border-radius: 5px 5px 0 0;
  background: #2b5493;
  color: #fff;
  font-size: 1.02em;
  line-height: 1.3em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  text-shadow: 1px 1px 1px #423a38;
  text-decoration: none;
}

.boxTabChange .boxBtnArea li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.boxTabChange .boxBtnArea li span {
  display: none;
}

.boxTabChange .boxBtnArea li.selected,
.boxTabChange .boxBtnArea li:hover {
  border-bottom: 1px solid #fff;
  background: #fff;
  color: #423a38;
  text-shadow: none;
}

/* ---- Tab Content Wrap ---- */

.boxTabChange .boxTabContentWrap {
  margin-top: -1px;
  padding-top: 20px;
  border-top: 1px solid #4ba0c2;
}


/*  アコーディオンリスト
-------------------------- */

/* ---- リスト ---- */

.boxAccList > ul > li {
  position: relative;
  margin-bottom: 0;
}

/* ---- アコーディオン・ヘッダー ---- */

.boxAccList .a11yAccordionItemHeader {
  position: relative;
  font-size: 1.15em;
}

.boxAccList.boxAccBlue .a11yAccordionItemHeader {
  border-bottom: 1px solid #4ba0c2;
  background: #c5e8f0;
}

.boxAccList.boxAccOrange .a11yAccordionItemHeader {
  border-bottom: 1px solid #a18f85;
  background: #fff0ae;
  padding: 8px 14px;
}

.boxAccList .a11yAccordionItemHeader a {
  padding: 0;
}

.boxAccList .a11yAccordionItemHeader h2 {
  display: block;
  font-weight: bold;
  padding: 10px 50px 8px 12px;
}

/* -- テキスト箇所 -- */
.boxAccList .a11yAccordionItemHeaderText {
  display: block;
}

/* -- 開閉リンク -- */
.boxAccList .a11yAccordionItemHeaderLink {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100% !important;
  height: 100%;
}

.boxAccList .a11yAccordionItemHeaderLinkShowLabel,
.boxAccList .a11yAccordionItemHeaderLinkHideLabel {
  display: block;
  overflow: hidden;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 98% center;
  text-indent: -200px;
}

/* 開くボタン */
.boxAccList .a11yAccordionItemHeaderLinkShowLabel {
  background-image: url(/share/imgs/main-content-bg-acc-black-open.png);
}

/* 閉じるボタン */
.boxAccList .a11yAccordionItemHeaderLinkHideLabel {
  background-image: url(/share/imgs/main-content-bg-acc-black-close.png);
}

/* ---- アコーディオン・内容（非表示箇所） ---- */

.boxAccList .a11yAccordionHideArea {
  border-bottom: 2px solid #a18f85;
  background: #fff;
}

.boxAccList.boxAccBlue .a11yAccordionHideArea {
  border-bottom-color: #4ba0c2;
}

/* -- サブタイトル -- */

.boxAccList .a11yAccordionHideArea .ttlSub {
  padding: 5px 12px;
  background: #dbf9ff;
  font-size: 1em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -- 下線付きリスト -- */

.boxAccList .a11yAccordionHideArea .boxLineList > ul > li {
  border-bottom-style: solid;
}

.boxAccList .a11yAccordionHideArea .boxLineList > ul > li > a {
  padding-left: 50px;
}

.boxAccList .a11yAccordionHideArea .boxLineList > ul > li > a::before {
  top: 12px;
  left: 34px;
  border-top-width: 5px;
  border-right-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 11px;
}


/*  ページ詳細
-------------------------- */

.boxEntryBody {
  font-size: 1.1em;
}

/* ---- H1タイトル ---- */

.boxEntryBody h1 {
  position: relative;
  z-index: 0;
  margin-bottom: 6px;
  padding: 14px 12px;
  border-top: 4px solid #4ba0c2;
  border-bottom: 4px solid #4ba0c2;
  font-size: 1.48em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxEntryBody h1::before,
.boxEntryBody h1::after {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  content: "";
}

.boxEntryBody h1::before {
  top: 0;
  border-top: 8px solid #c5e8f0;
}

.boxEntryBody h1::after {
  bottom: 0;
  border-bottom: 8px solid #c5e8f0;
}

/* ---- H2タイトル ---- */

.boxEntryBody h2 {
  clear: both;
  margin: 30px 0 15px;
  padding: 5px 10px;
  border-bottom: 3px solid #4ba0c2;
  background: #c5e8f0;
  font-size: 1.1em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxEntryBody div.styleH4 h2 { /* H4と同じスタイル適用*/
  clear: both;
  margin: 30px 0 15px;
  padding: 5px 0;
  border-bottom: 3px solid #4ba0c2;
  font-size: 1.05em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: none;
}

/* ---- H3タイトル ---- */

.boxEntryBody h3 {
  clear: both;
  margin: 30px 0 15px;
  padding: 3px 5px;
  border: 1px solid #4ba0c2;
  border-bottom-width: 3px;
  border-left-width: 10px;
  background: #fffae8;
  font-size: 1.1em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- H4タイトル ---- */

.boxEntryBody h4 {
  clear: both;
  margin: 30px 0 15px;
  padding: 5px 0;
  border-bottom: 3px solid #4ba0c2;
  font-size: 1.05em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- H5タイトル MTN ADD---- */
.boxEntryBody h5 {
  border-bottom: 1px solid #4ba0c2;
  clear: both;
  font-size: 1em;
  font-weight: bold;
  margin: 30px 0 15px;
  padding: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- H6タイトル MTD ADD---- */
.boxEntryBody h6 {
  clear: both;
  font-size: 1em;
  font-weight: bold;
  margin: 30px 0 15px;
  padding: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- テキスト余白 ---- */

.boxEntryBody .boxEntryContent > p {
  margin-bottom: 20px;
}

/* ---- MTN-ADD ---- */
.boxEntryBody .boxEntryFreeform > p {
  margin-bottom: 20px;
}

/* -- 20160708 テーブル内のaタグのblockを解除 (解除することでアンカーの不具合が出る可能性がある) UPD-START -- */
/* -- 20160309 ADD アンカー対策(inline-blockのままでは通過してしまう) -- */
/*
.boxEntryBody .boxEntryFreeform table a,
.boxEntryBody .boxEntryFreeform h2 a,
.boxEntryBody .boxEntryFreeform h3 a,
.boxEntryBody .boxEntryFreeform h4 a,
.boxEntryBody .boxEntryFreeform h5 a,
.boxEntryBody .boxEntryFreeform h6 a {
  display: block;
}
*/
/* -- 20160708 テーブル内のaタグのblockを解除 UPD-DEL -- */
/* -- 20160309 ADD アンカー対策(inline-blockのままでは通過してしまう) -- */
.boxEntryBody .boxEntryFreeform h2 a,
.boxEntryBody .boxEntryFreeform h3 a,
.boxEntryBody .boxEntryFreeform h4 a,
.boxEntryBody .boxEntryFreeform h5 a,
.boxEntryBody .boxEntryFreeform h6 a {
  display: block;
}
/* -- 20160708 テーブル内のaタグのblockを解除 (解除することでアンカーの不具合が出る可能性がある) UPD-END -- */

/* ---- Entry Meta ---- */

.boxEntryMeta {
  margin-bottom: 25px;
}

.boxEntryMeta .boxEntryMetaLeft {
  float: left;
  width: 220px;
}

.boxEntryMeta .boxEntryMetaRight {
  float: right;
  width: 470px;
  text-align: right;
}

.boxEntryMeta .boxEntryMetaRight p {
  display: inline-block;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  font-size: 0.85em;
}

/* -- 印刷するボタン -- */

.boxEntryMeta .btnPrint {
  margin-left: 5px;
}

.boxEntryMeta .btnPrint > * {
  padding-left: 30px;
  background-image: url(/share/imgs/main-content-bg-print.png);
  background-repeat: no-repeat;
  background-position: 7px center;
  color: #423a38;
}

/* -- SNS -- */

.boxEntryMeta .boxSNS {
}

.boxEntryMeta .boxSNS li {
  display: inline-block;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  margin-right: 2px;
}

.boxEntryMeta .boxSNS li.btnShareTwitter {}

.boxEntryMeta .boxSNS li.btnShareFacebook {
  overflow: hidden;
}


/* ---- リスト ---- */

/* -- 箇条書きリスト -- */

.boxDotList {
  margin: 30px 0;
}

.boxDotList + .boxNumList {
  margin-top: -25px;
}

.boxDotList ul {
  padding-left: 30px;
}

.boxDotList li {
  list-style-type: disc;
}

.boxDotList li ul {
  padding-top: 2px;
}

/* -- 箇条書きリスト（詳細ページ用） -- */

.boxEntryFreeform > ul + ol {
  margin-top: -25px;
}

.boxEntryFreeform > ul {
  margin: 30px 0;
}

.boxEntryFreeform ul {
  padding-left: 30px;
}

.boxEntryFreeform ul li {
  list-style-type: disc;
}

.boxEntryFreeform li ul {
  padding-top: 2px;
}

/* -- 順序付きリスト -- */

.boxNumList {
  margin: 30px 0;
}

.boxNumList + .boxDotList {
  margin-top: -25px;
}

.boxNumList ol {
  padding-left: 30px;
}

.boxNumList ol li {
  list-style-type: decimal;
}
.boxNumList li ol {
  padding-top: 2px;
}

/* -- 順序付きリスト（詳細ページ用） -- */

.boxEntryFreeform > ol + ul {
  margin-top: -25px;
}

.boxEntryFreeform > ol {
  margin: 30px 0;
}

.boxEntryFreeform ol {
  padding-left: 30px;
}

.boxEntryFreeform ol li {
  list-style-type: decimal;
}

.boxEntryFreeform li ol {
  padding-top: 2px;
}

/* -- 矢印付きリスト -- */

.boxArwList {
  margin-bottom: 15px;
}

.boxArwList ul {
  padding-left: 15px;
}

.boxArwList li {
  margin-bottom: 5px;
}

.boxArwList.icnArw a::before {
  top: 6px;
  border-top-width: 6px;
  border-right-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 14px; 
}

/* ---- テーブル ---- */

.boxEntryBody table {
  width: 700px;
  margin-top: 30px;
  margin-bottom: 50px;
  border-collapse: separate;
  border-spacing: 1px;
  background: #a18f85;
  font-size: 0.95em;
}

.boxEntryBody .boxEntryFreeform table {
  margin-bottom: 50px;
}

.boxEntryBody table caption {
  padding-bottom: 5px;
  font-size: 1.05em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxEntryBody table tr {
  border-top: 1px solid #a18f85;
}

.boxEntryBody table th,
.boxEntryBody table td {
  background: #fff;
}

.boxEntryBody table th {
  /*width: 140px;*/
  padding: 5px 10px;
  border-top: 7px solid #c5e8f0;
  border-bottom: 7px solid #c5e8f0;
  background: #dbf9ff;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
}

.boxEntryBody table td {
  /*width: 140px;*/
  padding: 10px;
  vertical-align: top;
}

/* ---- MTN ADD ---- */
.boxEntryBody .boxEntryFreeform table th,
.boxEntryBody .boxEntryFreeform table td {
  vertical-align: middle;
}

#df-giyomu-table .grpmail {
  width: 17%;
}


/* ---- 画像レイアウト ---- */

.imgLeft {
  float: left;
  width: 48%;
  margin: 0 20px 20px 0;
}

.imgRight {
  float: right;
  width: 48%;
  margin: 0 0 20px 20px;
}

.boxImgRow {
  margin-bottom: 15px;
}

.boxImgRow ul {
  margin-left: -20px;
}

.boxImgRow li {
  float: left;
  width: 220px;
  margin-left: 20px;
}

.imgLeft img,
.imgRight img,
.boxImgRow img {
  width: 100%;
}

/* ---- 画像レイアウト（詳細ページ用） ---- */

ul.boxImgRow {
  margin-bottom: 15px;
  margin-left: -20px;
  padding-left: 0;
}

ul.boxImgRow li {
  float: left;
  width: 220px;
  margin-left: 20px;
  padding-left: 0;
  background: none;
  list-style-type: none;
}

.imgLeft img,
.imgRight img,
.boxImgRow img {
  width: 100%;
}

/* ---- ファイルダウンロード ---- */

.boxFileDowmload {
  margin-bottom: 15px;
}

.boxFileDowmload ul {
  padding-left: 20px;
}

.boxFileDowmload li {
  margin-bottom: 13px;
}

.boxFileDowmload dd {
  padding-top: 5px;
  padding-left: 32px;
}

.txtPDF,
.txtWord,
.txtExcel {
  min-height: 22px;
  padding-left: 32px;
  background-repeat: no-repeat;
}

.txtPDF {
  background-image: url(/share/imgs/main-content-bg-pdf.png);
}

.txtWord {
  background-image: url(/share/imgs/main-content-bg-word.png);
}

.txtExcel {
  background-image: url(/share/imgs/main-content-bg-excel.png);
}

/* ---- マップ ---- */

.boxEntryBody .boxMap {
  margin-bottom: 50px;
}

.boxEntryBody .boxMap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* ---- この記事についてのお問い合わせ ---- */

.boxEntryBody .boxContactArea {
  margin: 0 0 25px;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #a18f85;
  background: #fffae8;
  clear: both;
}

.boxEntryBody .boxContactArea h3 {
  margin: 0;
  padding: 3px 5px;
  border: none;
  border-radius: 4px;
  background: #c5e8f0;
  font-size: 0.9em;
}

.boxEntryBody .boxContactArea .boxCont {
  padding: 10px 10px 6px;
}

.boxEntryBody .boxContactArea dl {
  position: relative;
}

.boxEntryBody .boxContactArea dl dt {
  padding: 1px 0 5px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 1px;
  font-size: 1.05em;
}

/*2020-12-18UPD*/
.boxEntryBody .boxContactArea dt {
  max-width: 480px;
} 
/*2020-12-18UPD-END*/

.boxEntryBody .boxContactArea ul {
  padding-bottom: 8px;
}

.boxEntryBody .boxContactArea li {
  float: left;
  margin-right: 30px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.5px;
}

.boxEntryBody .boxContactArea .btnSubmit {
  position: absolute;
  top: 0;
  right: 10px;
  float: right;
  margin: 0;
  font-size: 0.85em;
}

.boxEntryBody .boxContactArea .boxCont p {
  font-size: 0.9em;
}

/* ---- アンケートにご協力ください ---- */

.boxEntryBody .boxQuestionArea {
  margin: 0 0 25px;
  border-radius: 8px;
  border: 1px solid #91d4e3;
  background: none;
  clear: both;
}

.boxEntryBody .boxQuestionArea h3 {
  margin: 0 0 10px;
  padding-top: 5px;
  padding-left: 10px;
  border-radius: 8px 8px 0 0;
  border: none;
  background: #2b5493;
  font-size: 0.95em;
  color: #fff;
}

.boxEntryBody .boxQuestionArea .boxCont {
  padding: 0 15px 10px;
  font-size: 0.95em;
}

.boxEntryBody .boxQuestionArea .boxQuestionForm {
  position: relative;
  margin-bottom: 10px;
  padding-top: 6px;
}

.boxEntryBody .boxQuestionArea .boxQuestionForm .boxInput {
  float: left;
  width: 480px;
  padding: 10px;
  background: #c5e8f0;
}

.boxEntryBody .boxQuestionArea .boxQuestionForm .boxInput label {
  display: inline-block;
  margin-bottom: 2px;
}

.boxEntryBody .boxQuestionArea .boxQuestionForm .btnSubmit {
  position: absolute;
  right: 0;
  bottom: 0;
  float: right;
  width: 170px;
  font-size: 0.94em !important;
}

.boxEntryBody .boxQuestionArea .boxQuestionForm .btnSubmit a {
  margin-bottom: 5px;
  letter-spacing: 0;
}

/* ---- インフォ詳細 ---- */

.boxInfoDetail dt {
  display: block;
  padding: 0 0 0 5px;
  border-left: 6px solid #4ba0c2;
  border-bottom: 2px solid #4ba0c2;
  font-size: 1.02em;
  line-height: 1.35em;
}

.boxInfoDetail dd {
  padding: 5px 0 15px;
  font-size: 0.95em;
}

.boxInfoDetail .boxInfoLeft {
  float: left;
  width: 47%;
}

.boxInfoDetail .boxInfoFull {
  clear: both;
}


/* ---- バナーリンク ---- */

.boxBannerLink {
}

.boxBannerLink ul {
  text-align: center;
  padding: 0;
}

.boxBannerLink ul li {
  margin: 0;
  padding: 20px 0 0 0;
  background-image: none;
  
}

/*  サイド 設定
-----------------------------------*/

#side {
}

.boxSide {
  margin-bottom: 20px;
}

.boxSide li {
  margin-bottom: 7px;
}

.boxSide a {
  width: 100%;
  padding: 4px;
  text-align: left;
}


/*  メニューパターン01
-------------------------- */

.boxSideMenuPtn01 {
}

.boxSideMenuPtn01 .txtLink {
  width: 125px;
}

.boxSideMenuPtn01 .btnIcnLink a {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 1.1em;
  text-align: center;
  letter-spacing: 1px;
}

.boxSideMenuPtn01 .btnIcnLink .imgLink {
  width: 45px;
  margin-right: 8px;
  padding-right: 0;
  text-align: center;
}

.boxSideMenuPtn01 .btnIcnLink .txtLink {
  width: 165px;
}

/*  メニューパターン02
-------------------------- */

.boxAccList.boxSideMenuPtn02 {
  margin-bottom: 15px;
  font-family: "segoe UI", "ヒラギノ丸ゴ Pro W4","Hiragino Maru Gothic Pro" ,"メイリオ", Meiryo, Verdana, sans-serif;
}

/* ---- アコーディオン・ヘッダー ---- */

.boxAccList.boxSideMenuPtn02 .a11yAccordionItemHeader {
  border: 1px solid #a18f85;
  border-top: none;
  background: url(/share/imgs/main-content-side-bg-ptn02.png) no-repeat bottom #fff0ae;
  font-size: 1.1em;
  text-shadow: 1px 1px #fff;
}

.boxAccList.boxSideMenuPtn02 .a11yAccordionSearchDiv + li .a11yAccordionItemHeader,
.boxAccList.boxSideMenuPtn02 li:first-child .a11yAccordionItemHeader {
  border-top: 1px solid #a18f85;
}

.boxAccList.boxSideMenuPtn02 .a11yAccordionItemHeaderLinkShowLabel,
.boxAccList.boxSideMenuPtn02 .a11yAccordionItemHeaderLinkHideLabel {
  background-position: 96% center;
}

/* ---- アコーディオン・内容（非表示箇所） ---- */

.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea {
  width: 300px;
  border-right: 1px solid #a18f85;
  border-bottom: 1px solid #a18f85;
  border-left: 1px solid #a18f85;
}

.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea ul {
  padding: 10px 0 7px;
}

/* -- サブメニュー -- */

.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea li {
  margin-bottom: 0;
  line-height: 1.4em;
}

.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea a {
  overflow: hidden;
  position: relative;
  padding: 0 25px 0 22px;
  text-decoration: none;
}

/* リスト装飾（点・） */
.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea a::before {
  position: absolute;
  top: 50%;
  left: 12px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #a18f85;
  content: "";
}

/* リスト装飾（右矢印 >） */
.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  color: #4ba0c2;
  content: ">";
}

/* リンク触れた時 */
.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea a:hover,
.boxAccList.boxSideMenuPtn02 .a11yAccordionHideArea a:focus {
  text-decoration: underline;
}


/*  メニューパターン03
-------------------------- */
  
.boxSideMenuPtn03 {
  padding-bottom: 0;
}

.boxSideMenuPtn03 li {
  float: left;
  width: 50%;
}

.boxSideMenuPtn03 .btnLink .imgLink {
  width: 76px;
}

.boxSideMenuPtn03 .btnLink .txtLink {
  width: 60px;
}


/*  広告欄
-------------------------- */

.boxSideBnrArea {
  margin-bottom: 10px;
  border: 1px solid #2b5493;
  background: url(/share/imgs/main-footer-mdl-bg-pc.png);
}

.boxSide.boxSideBnrArea {
  padding: 5px;
}

.boxSideBnrArea a {
  width: auto;
  padding: 0;
}

.boxSideBnrArea img {
  width: 100%;
}

.boxSideBnrArea dt {
  padding-bottom: 8px;
  font-size: 0.85em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 1.5px;
}

.boxSideBnrArea dt a {
  float: right;
  font-size: 0.98em;
  font-weight: normal;
  letter-spacing: 0;
}

.boxSideBnrArea dd {
  padding: 0 3px;
}

.boxSideBnrArea dd a {
  box-shadow: 1px 1px 1px 1px #dcdcdc;
}


/*  ボタンリンク
-------------------------- */

.boxSideBtnLink {
  margin-bottom: 10px;
}

.boxSideBtnLink li {
  margin-bottom: 8px;
}

.boxSideBtnLink .btnLink > * {
  border-radius: 6px;
  padding: 6px 5px;
  font-size: 0.98em;
  text-align: center;
}

/*  リンクリスト
-------------------------- */

.boxSideLinkList {
  overflow: hidden;
  border: 1px solid #4ba0c2;
}

.boxSideLinkList dt {
  padding: 10px;
  border-top: 3px solid #4ba0c2;
  border-bottom: 2px solid #4ba0c2;
  background: #dbf9ff;
  font-size: 1.05em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boxSideLinkList dd {
  margin-bottom: -1px;
}

.boxSideLinkList .boxLineList {
  font-size: 0.98em;
}

.boxSideLinkList .boxLineList > ul > li > a,
.boxSideLinkList .boxLineList > ul > li.active > * {
  padding-left: 30px;
}

.boxSideLinkList .boxLineList > ul > li > a::before,
.boxSideLinkList .boxLineList > ul > li.active > *::before {
  top: 50%;
  left: 13px;
  margin-top: -4px;
}

.boxSideLinkList .boxLineList .txtNum {
  position: absolute;
  top: 7px;
  left: 3px;
  width: 28px;
  text-align: center;
  color: #423a38;
}


/*  バナーリスト
-------------------------- */

.boxSideBnrList {
  padding-top: 10px;
}

.boxSideBnrList li {
  margin-bottom: 20px;
}

.boxSideBnrList a {
  padding: 0;
}

.boxSideBnrList img {
  width: 100%;
}

/* MTN ADD-START */
/*.img_right{ clear:right; float:right; padding: 5px; margin: 0px 0px 10px 8px; text-align: center; font-size: 90%; background-color: #F0F0F0; }
.img_left{ clear:left; float:left; padding: 5px; margin: 0px 8px 10px 0px; text-align: center; font-size: 90%; background-color: #F0F0F0; }*/

.img_waku{ /*float:left;*/ width:100%; zoom:100%; clear:both; overflow: hidden;}
.img_wakuleft{ float:left; margin: 0px 8px 10px 0px; text-align: center; font-size: 90%; width:auto; padding: 5px; }

.img_left{
clear:left;
float:left;
padding: 1px;
margin: 0px 8px 0px 0px;
text-align: center;
font-size: 90%;
}

.img_left2{
float:left;
padding: 1px;
margin: 0px 8px 0px 0px;
text-align: center;
font-size: 90%;
}

.img_right{
clear:right;
float:right;
padding: 1px;
margin: 0px 0px 0px 8px;
text-align: center;
font-size: 90%;
}

.clearall {
  clear:both;
}

/* kouji ADD-START */

#kouji-search {
	border: 3px solid #68C6F2;
	background-color: #F3F3F3;
	width:50%;
	margin-top: 35px;
	margin-bottom:10px;
}

#kouji-search h2 {
	margin: 0;
	background: none;
	border: none;
}
#kouji-search h3 {
	margin: 0;
	background: none;
	border: none;
}
#kouji-search .title{
    background-color: #68C6F2;
    border: 1px solid #68C6F2;
    color: #FFFFFF;
}
#kouji-search .kouji{
    padding: 5px;
}

#side #kouji-search {
	border-top:none;
	width: auto;
	margin-top: 0;
	margin-bottom: 0;
}

#side #kouji-search .title{
	padding-top:3px;
}

/* kouji ADD-END */

/* MTN ADD-END */

/* 20160516 採用ページメニュー追加 ADD-START */
/* ---- 職員採用 ---- */
.boxRecruitTitle h1 { display: none; }
.boxRecruitTitle div {
	position: relative;
	top: -35px;
}
.boxRecruitTitle ul { padding-left: 8px; }
.boxRecruitTitle ul li {
	float: left;
	margin: 0 2px;
	padding: 0;
}
.boxRecruitTitle ul li span { display: none; }
.boxRecruitNews .boxSectionHead img { margin-left: 10px; }
.PamphletInfo { padding: 15px; }
.InQuiryInfo { padding: 15px; }

/* 20160516 採用ページメニュー追加 ADD-END */

/* enquete */
div.boxEnqueteForm {
  margin-bottom: 10px;
}

div.boxEnqueteForm div.EnqueteInputList {
  margin-bottom: 20px;
}
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput {
  margin-bottom: 20px;
  margin-left: 10px;
}
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput input[type="text"],
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput textarea {
  display: block;
  margin-bottom: 10px;
}
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput input[type="radio"],
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput input[type="checkbox"] {
  margin-bottom: 10px;
}
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput input[type="radio"] + label,
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput input[type="checkbox"] + label {
  vertical-align: top;
}
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput input[type="radio"] + label:after,
div.boxEnqueteForm div.EnqueteInputList div.EnqueteInput input[type="checkbox"] + label:after {
  content: "\000A";
  white-space: pre;
  margin-bottom: 10px;
  clear: both;
}

div.boxEnqueteForm div.EnqueteInputList p {
  margin-bottom: 10px;
}
div.EnqueteError {
  margin-bottom: 10px;
}
/* enquete */

#dmimg {
  width: 1px !important;
}