@charset "utf-8";

/*  =============================================================

　　共通モジュール設定

============================================================= */


/*  全体・コンテナー 設定
---------------------------------------------*/


/*  画像　設定
-------------------------- */

/* フレーム付き画像 */
.imgFrame {
  padding: 10px;
  border: 1px solid #fff;
  background: #fff;
}


/*  テキスト 設定
-------------------------- */

/* 赤色 */
.txtRed {
  color: #d90000;
}

/* 灰色 */
.txtGrey {
  color: #666;
}


/*  フォーム 設定
-------------------------- */

/* -- ラジオボタン -- */

.boxInput input[type=radio] {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
}

.boxInput input[type=radio] + label {
  position: relative;
  cursor: pointer;
  margin-right: 20px;
}

@media (min-width: 1px) { /* IE8以下除外 */
  .boxInput input[type=radio] {
    display: none;
    margin: 0;
  }

  .boxInput input[type=radio] + label {
    padding: 0 0 0 20px;
  }

  .boxInput input[type=radio] + label:before {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background: #fff;
    content: "";
  }

  .boxInput input[type=radio] + label:before {
    border: 1px solid #9c9c9b;
    border-radius: 100%;
  }

  .boxInput input[type=radio]:checked + label:before {
    border-color: #0099ff;
    border-width: 5px;
  }
}


/*  アイコン　設定
-------------------------- */
    
/* -- 矢印アイコン -- */

.icnArw a,
.ttlMain.icnArw span,
.icnArw .active > * {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  position: relative;
  padding-left: 12px;
}

/* 矢印 */
.icnArw a: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: 5px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #336600;
  content: "";
}

/* firefox用 */
@-moz-document url-prefix() { 
  .icnArw a:before,
  .ttlMain.icnArw span:before,
  .icnArw .active > *:before {
    top: 6px;
  }
}

.ttlMain.icnArw a:before {
  display: none;
}

/* 白色矢印 */
.icnArw.icnWhite a:before,
.ttlMain.icnArw.icnWhite span:before,
.icnArw.icnWhite .active > *:before {
  border-left-color: #fff;
}

/* タイトル矢印 */
.ttlMain.icnArw span:before {
  top: 50%;
  left: 13px;
  margin-top: -4px;
}



/*  コンテンツ　設定
---------------------------------------------*/


/*  ボタン
-------------------------- */

/* -- 角丸ボタン -- */

.btn > * {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  transition: all .4s ease-in-out;
  padding: 3px 5px;
  border: 1px solid #018640;
  border-radius: 4px;
  background-color: #fff;
  text-align: center;
  text-decoration: none !important;
  letter-spacing: -0.1px;
  line-height: 1.4em;
  cursor: pointer;
}

/* 角丸ボタン・白色 */
.btn.white > * {
  border-color: #ccc;
  background: #fff;
  text-shadow: 1px 1px #fff;
}

/* 角丸ボタン・送信ボタン＆戻るボタン */
.btn.btnSubmit,
.btn.btnBack {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
}

.btn.btnSubmit > *,
.btn.btnBack > * {
  padding: 20px;
  border-radius: 5px !important;
  border: none;
  color: #fff;
  font-size: 1.32em;
  font-weight: bold;
  letter-spacing: .01em;
}

/* 角丸ボタン・送信ボタン */
.btn.btnSubmit > * {
  min-width: 323px;
  background: #660000;
}

.btn.btnSubmit > *:hover,
.btn.btnSubmit > *:focus {
  background-color: #400000;
}

/* 角丸ボタン・戻るボタン */
.btn.btnBack {
  margin: 0 10px;
}

.btn.btnBack > * {
  min-width: 200px;
  background: #444;
}

.btn.btnBack > *:hover,
.btn.btnBack > *:focus {
  background-color: #222;
}

/* 角丸ボタン・戻るボタン */
.btn.btnBack.icnArw > * {
  padding-left: 32px;
}

/* 角丸ボタン矢印設定・戻るボタン＆PREVボタン */
.btn.btnBack.icnArw > *:before,
.btn.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; 
}

/* 角丸ボタン・PREVボタン＆Nextボタン */
.btn.btnPrev {
  float: left;
}

.btn.btnNext {
  float: right;
}

.btn.btnPrev.icnArw > *,
.btn.btnNext.icnArw > * {
  border-radius: 6px;
  box-shadow: 0 3px #2b5493;
  padding: 8px 12px;
  color: #423a38;
}

/* 角丸ボタン・PREVボタン */
.btn.btnPrev.icnArw > * {
  padding-left: 30px;
}

.btn.btnPrev.icnArw > *:before {
  left: 2px;
}

/* 角丸ボタン・Nextボタン */
.btn.btnNext.icnArw > * {
  padding-right: 30px;
}

.btn.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;
}

/* 角丸ボタン・Topボタン */
.btn.btnTop {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
}

/* 角丸ボタン内・span設定 */
.btn > * span {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  vertical-align: middle;
}

/* 角丸ボタン内・画像設定 */
.btn > * .imgLink {
  padding-right: 10px;
  text-align: center;
}

.btn > * .imgLink img {
  border-radius: 6px;
}

.btn > *:hover .imgLink img,
.btn > *:focus .imgLink img {
  opacity: 1 !important;
}

/* 角丸ボタン内・テキスト設定 */
.btn > * .txtLink {
  text-decoration: none;
  text-align: left;
}


/*  バナー
-------------------------- */

.boxBnrArea {
  margin-bottom: 10px;
}


/*  テーブル
-------------------------- */

.boxTable {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: separate;
  border-spacing: 1px;
  background: #ccc;
}

.boxTable tr {
  border-top: 1px solid #ccc;
}

.boxTable th,
.boxTable td {
  padding: 13px;
  background: #fff;
  vertical-align: top;
}

.boxTable th {
  width: 180px;
  background: #f2f2f2;
  font-weight: bold;
}

.boxTable td {
  padding-right: 12px;
  padding-left: 12px;
  line-height: 1.75em;
}


/*  パンくず
-------------------------- */

.boxBreadcrumb {
  margin-bottom: 15px;
  background: #f5f5f5;
  letter-spacing: .08em;
  font-size: .88em;
}

.boxBreadcrumb dl,
#contentMain .boxBreadcrumb dl {
  display: table;
  padding: 12px 0 14px;
}

/* -- タイトル＆内容 -- */

.boxBreadcrumb dt,
.boxBreadcrumb dd {
  display: table-cell;
  vertical-align: top;
}

/* -- タイトル -- */

.boxBreadcrumb dt {
  white-space: nowrap;
  width: 82px;
}

/* -- 内容 -- */

.boxBreadcrumb dd {
}

/* -- リンク -- */

.boxBreadcrumb a {
  text-decoration: underline;
}

/* -- リンク（ホバー・フォーカス時）-- */

.boxBreadcrumb a:hover,
.boxBreadcrumb a:focus {
  text-decoration: none;
}


/*  ページナビ
-------------------------- */

.boxPageNav {
  padding: 35px 0 30px;
  font-size: 1.1em;
}

.boxPageNav.top {
  padding-top: 25px;
}

/* ---- ページ数 ---- */

.boxPageNumber {
  font-size: 1.18em;
}

.boxPageNav.top .boxPageNumber {
  float: left;
}

/* ---- ページャー ---- */

.boxPager {
  color: #21b7b6;
  text-align: center;
}

.boxPageNav.top .boxPager {
  float: right;
  text-align: right;
}

.boxPager p > * {
  padding: 0 5px;
}

.boxPager a {
  text-decoration: underline;
}

.boxPager a:hover,
.boxPager a:focus {
  text-decoration: none;
}

.boxPager .txtCurrent {
  color: #333;
}


/*  タイトル
-------------------------- */

.boxCategoryTitle,
.boxCategoryTitle *,
.ttlSection,
.ttlSection02 {
  font-weight: bold;
}

/* -- カテゴリータイトル -- */

.boxCategoryTitle {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  padding: 22px 15px;
  border-top: 3px solid #555;
  border-bottom: 3px solid #555;
  font-size: 2em;
  line-height: 1.4em;
  letter-spacing: .15em;
  text-align: center;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.boxCategoryTitle:before {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: -1;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  content: "";
}

.boxCategoryTitle h1 {
  display: inline;
  padding: 0 5px 5px;
  background: linear-gradient(transparent 50%, #edf4d6 50%);
}

/* -- セクションタイトル -- */

.ttlSection {
  margin-bottom: 20px;
  border-top: 3px solid #00883a;
  background: #fafaf3;
  font-size: 1.28em;
}

/* リンク */
.ttlSection a {
  color: #000;
  text-decoration: none;
}

/* リンク（ホバー・フォーカス時 */
.ttlSection a:hover,
.ttlSection a:focus {
  text-decoration: underline;
}

/* タイトル内テキスト */
.ttlSection span {
  display: block;
  padding: 8px 15px;
}

/* -- セクションタイトル02 -- */

.ttlSection02 {
  margin-bottom: 23px;
  border-bottom: 3px solid #00883a;
  font-size: 1.13em;
}

/* タイトル内テキスト */
.ttlSection02 span {
  display: block;
  padding: 5px 2px;
}



/*  下線付きリスト
-------------------------- */

.boxLineList {
}

/* -- リスト -- */

.boxLineList > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: 2px dotted #767676;
}

.boxLineList > ul > li:first-child {
}

/* -- リンク -- */

.boxLineList > ul > li > a {
  display: block;
  padding: 12px 0 12px 10px;
}

.boxLineList.icnArw > ul > li > a {
  padding-left: 20px;
}

.boxLineList.icnArw > ul > li > a:before {
  top: 50%;
  left: 8px;
  margin-top: -5px;
}

/* -- リンク（ホバー・フォーカス時）-- */

.boxLineList > ul > li > a:hover,
.boxLineList > ul > li > a:focus {
  text-decoration: none;
}


/*  ページ一覧
-------------------------- */

.boxPageList {
}

.boxPageList > p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.75em;
}

/* -- リスト -- */

.boxPageLink > ul {
  padding-top: 40px;
}

.boxPageLink > ul > li {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #bbb;
}

.boxPageLink > ul > li:first-child {
  border-top: none;
}

.boxPageLink .boxImgArea {
  float: left;
  width: 128px;
}

.boxPageLink .boxImgArea img {
  width: 100%;
  border: 6px solid #ccc;
}

.boxPageLink .boxImgArea a:hover img,
.boxPageLink .boxImgArea a:focus img {
  border-color: #ddd;
}

.boxPageLink .boxTxtArea {
  padding-left: 145px;
}

/* -- ページ一覧タイトル -- */

.boxPageLink .ttlMain {
  display: inline;
  font-size: 1.18em;
  font-weight: bold;
}

.boxPageLink .txtDate {
  display: inline;
}

/* ADD */
.boxPageLink > .boxPageListTitle h2 {
  position: relative;
  clear: both;
  margin: 35px 0 25px;
  padding: 12px 15px;
  border-top: 2px solid #626262;
  background: #edf4d6;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0;
}

.boxPageLink > .boxPageListTitle h2:first-child {
  margin-top: 15px;
  margin-bottom: 10px;
}

.boxPageListTitle + ul {
  padding-top: 0px;
}
/*********/

/* -- ページ内容 -- */

.boxPageLink .txtCont {
}



/*  ページ詳細
-------------------------- */

.boxEntryBody {
  color: #333;
  font-size: 1.02em;
  line-height: 1.8em;
}

.boxEntryBody .boxEntryContent {
  padding-bottom: 30px;
}

/* ---- H1タイトル ---- */

.boxEntryBody .boxEntryHead {
  position: relative;
  z-index: 0;
  margin-bottom: 10px;
  padding: 15px 2px;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  font-size: 1.7em;
  line-height: 1.6em;
  letter-spacing: .05em;
  text-align: left;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.boxEntryBody .boxEntryHead:before {
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: -1;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  content: "";
}

.boxEntryBody .boxEntryHead h1 {
  display: inline;
  padding: 0 5px 5px;
  background: linear-gradient(transparent 50%, #edf4d6 50%);
  font-weight: bold;
}

/* ---- H2タイトル ---- */

.boxEntryBody h2 {
  position: relative;
  clear: both;
  margin: 35px 0 25px;
  padding: 12px 15px;
  border-top: 2px solid #626262;
  background: #edf4d6;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0;
}

.boxEntryBody h2:first-child {
  margin-top: 15px;
}

/* ---- H3タイトル ---- */

.boxEntryBody h3,
.ttlSection03 {
  position: relative;
  z-index: 0;
  clear: both;
  margin: 30px 0;
  padding: 12px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 1.1em;
  font-weight: bold;
}

/* ---- H4タイトル ---- */

.boxEntryBody h4 {
  clear: both;
  margin: 30px 0 15px;
  font-size: 1.14em;
  font-weight: bold;
  line-height: 1.7em;
}

.boxEntryBody h4 .txtMarker {
  display: inline;
  padding: 0 5px 4px;
  background: linear-gradient(transparent 50%, #f1f1f1 50%);
}

/* ---- H5タイトル ---- */

.boxEntryBody h5 {
  clear: both;
  margin: 30px 0 12px;
  font-size: 1.1em;
  font-weight: bold;
}

/* ---- テキスト余白 ---- */

.boxEntryBody .boxEntryContent > p {
  margin-bottom: 20px;
}

.boxEntryBody .boxEntryContent > *:first-child {
  margin-top: 0;
}

/* ---- リンク ---- */

.boxEntryBody a {
  text-decoration: underline;
}

.boxEntryBody a:hover,
.boxEntryBody a:focus {
  text-decoration: none;
}

/* ---- 矢印 ---- */

.boxEntryBody .icnArw a:before,
.boxEntryBody .ttlMain.icnArw span:before,
.boxEntryBody .icnArw .active > *:before {
  top: 8px;
}

/* firefox用 */
@-moz-document url-prefix() { 
  .boxEntryBody .icnArw a:before,
  .boxEntryBody .ttlMain.icnArw span:before,
  .boxEntryBody .icnArw .active > *:before {
    top: 9px;
  }
}

/* ---- Entry Meta ---- */

.boxEntryMeta {
  margin-bottom: 30px;
  padding: 0 8px;
}

.boxEntryBody .boxEntryMeta {
  margin-bottom: 45px;
}

.boxEntryMeta p {
  margin: 0;
}

.boxEntryMeta .boxEntryMetaLeft {
  float: left;
}

.boxEntryMeta .boxEntryMetaRight {
  text-align: right;
}

.boxEntryMeta .boxEntryMetaRight p {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
}

/* -- 日付 -- */

.boxEntryMeta .boxEntryDate {
  font-size: .98em;
}

/* -- 印刷するボタン -- */

.boxEntryMeta .btnPrint {
  margin-left: 10px;
  font-size: .92em;
}

.boxEntryMeta .btnPrint > * {
  padding: 6px 20px 6px 38px;
  border-radius: 4px;
  background: url(/share/imgs/kinen-content-icn-print.png) no-repeat 13px 54%;
  color: #111;
  line-height: 1em;
  letter-spacing: 0;
}

/* ボタン（ホバー・フォーカス時）*/
.boxEntryMeta .btnPrint > *:hover,
.boxEntryMeta .btnPrint > *:focus {
  color: #018640;
}

/* -- SNS -- */

.boxEntryMeta .boxSNS {
  padding-top: 2px;
}

.boxEntryMeta .boxSNS li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  margin-right: 2px;
}
/* ---- リスト ---- */

/* -- 箇条書きリスト -- */

.boxDotList {
  margin: 20px 0;
}

.boxDotList ul {
  padding-left: 1.5em;
}

.boxDotList ul li {
  list-style-type: disc;
}

.boxDotList ul li ul {
  padding-top: 2px;
  padding-left: 2.5em;
}

/* -- 箇条書きリスト（詳細ページ） -- */

.boxEntryFreeform ul {
  clear: both;
  margin: 20px 0;
  padding-left: 1.4em;
}

.boxEntryFreeform ul li {
  list-style-type: disc;
}

.boxEntryFreeform ul li ul {
  margin: 0 0 4px;
  padding-top: 2px;
  padding-left: 2.5em;
}

/* -- 箇条書きリスト（横並び） -- */

.boxEntryBody .boxDotList .floatList,
.boxEntryBody .boxNumList .floatList {
  margin: 0;
}

.boxEntryBody .boxDotList ul.floatList {
  padding-left: 1.5em;
}

.boxEntryBody .boxDotList .floatList li {
  float: left;
  margin-right: 30px;
}

/* -- 順序付きリスト -- */

.boxNumList {
  margin: 20px 0;
}

.boxNumList ol {
  padding-left: 1.5em;
}

.boxNumList ol li {
  list-style-type: decimal;
}

.boxNumList ol li ol {
  padding-top: 2px;
}

/* -- 順序付きリスト（詳細ページ） -- */

.boxEntryFreeform ol {
  clear: both;
  margin: 20px 0;
  padding-left: 1.5em;
}

.boxEntryFreeform  ol li {
  list-style-type: decimal;
}

.boxEntryFreeform  ol li ol {
  padding-top: 2px;
}

/* -- 矢印付きリスト -- */

.boxArwList {
  margin-bottom: 30px;
}

.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;
}

/* firefox用 */
@-moz-document url-prefix() { 
  .boxArwList.icnArw a:before {
    top: 7px;
  }
}

/* -- 詳細ページテキスト -- */

.boxEntryFreeform p {
  margin-bottom: 15px;
}

/* -- 定義リスト -- */

.boxEntryBody dl {
  margin: 20px 0;
}

.boxEntryBody dl dt {
  margin-bottom: 5px;
  font-weight: bold;
}

.boxEntryBody dl .boxDotList,
.boxEntryBody dl .boxNumList {
  margin: 0;
}

/* ---- テーブル ---- */

.boxEntryBody table {
  /*width: 100%;*/
  margin-top: 20px;
  margin-bottom: 20px;
  border-collapse: separate;
  border-spacing: 1px;
  background: #ddd;
}

.boxEntryBody table caption {
  padding: 0 3px 10px;
  font-weight: bold;
  font-size: 1.05em;
}

.boxEntryBody table tr {
  border-top: 1px solid #ddd;
}

.boxEntryBody table th,
.boxEntryBody table td {
  padding: 8px 12px;
  background: #fff;
  vertical-align: top;
}

.boxEntryBody table th {
  /*width: 150px;*/
  background: #f2f2f2;
  font-weight: bold;
}

.boxEntryBody table td {
  padding-right: 10px;
  padding-left: 10px;
}

.boxEntryBody table td p {
  margin: 0;
  padding-top: 20px;
}

.boxEntryBody table td p:first-child {
  padding-top: 0;
}

.boxEntryBody table .boxDotList,
.boxEntryBody table .boxNumList {
  margin: 0;
}

.boxEntryBody table .boxDotList ul {
  padding-left: 1.5em;
}

.boxEntryBody table .boxDotList li {
  float: left;
  margin-right: 30px;
}

/* ---- 画像レイアウト ---- */

.boxEntryBody img {
  border: 8px solid #fff;
}

.boxEntryBody .boxEntryContent img {
  border: none;
}

.boxEntryBody .boxEntryContent img {
  border-right: 8px solid #fff;
}

.boxEntryBody .boxImgLeft .boxImgArea {
  float: left;
  width: 43.5%;
}

.boxEntryBody .boxImgLeft .boxTxtArea {
  float: right;
  width: 52%; 
}

.boxEntryBody .boxImgRight .boxImgArea {
  float: right;
  width: 43.5%;
}

.boxEntryBody .boxImgRight .boxTxtArea {
  float: left;
  width: 52%;
}

.boxEntryBody .boxImgLeft .boxImgArea img,
.boxEntryBody .boxImgRight .boxImgArea img,
.boxEntryBody .boxImgRow img {
  width: 100%;
}

.boxEntryBody .boxImgRow {
  margin-top: 40px;
  margin-bottom: 30px;
}

.boxEntryBody .boxImgRow ul {
  margin-left: -18px;
}

.boxEntryBody .boxImgRow li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  width: 226px;
  margin-left: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  vertical-align: top;
}

.boxEntryBody .boxImgRow li img {
  margin-bottom: 12px;
}

.boxEntryBody .boxImgRow a {
  color: #111;
}

.boxEntryBody .boxImgRow a:hover,
.boxEntryBody .boxImgRow a:focus {
  text-decoration: none;
}

/* 回り込み解除 */
.boxEntryBody .boxEntryContent p.clearfix {
  height: 0;
}

/* ---- ファイルダウンロード ---- */

.boxEntryBody .txtPDF,
.boxEntryBody .txtExcel,
.boxEntryBody .txtWord,
.boxEntryBody .txtPP {
  margin-bottom: 10px;
}

.boxEntryBody .txtPDF a,
.boxEntryBody .txtExcel a,
.boxEntryBody .txtWord a,
.boxEntryBody .txtPP a {
  display: block;
  padding-left: 32px;
  background-repeat: no-repeat;
  background-position: left 2px;
}

/* -- PDFリンク -- */

.boxEntryBody .txtPDF a {
  background-image: url(/share/imgs/kinen-content-icn-file-pdf.png);
  background-image: url(/share/imgs/kinen-content-icn-file-pdf-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/kinen-content-icn-file-pdf-ie.png); /* IE7用 */
  background-size: 20px 20px;
}

/* -- Excelリンク -- */

.boxEntryBody .txtExcel a {
  background-image: url(/share/imgs/kinen-content-icn-file-excel.png);
  background-image: url(/share/imgs/kinen-content-icn-file-excel-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/kinen-content-icn-file-excel-ie.png); /* IE7用 */
  background-size: 20px 20px;
}

/* -- Wordリンク -- */

.boxEntryBody .txtWord a {
  background-image: url(/share/imgs/kinen-content-icn-file-word.png);
  background-image: url(/share/imgs/kinen-content-icn-file-word-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/kinen-content-icn-file-word-ie.png); /* IE7用 */
  background-size: 20px 20px;
}

/* -- PowerPointリンク -- */

.boxEntryBody .txtPP a {
  background-image: url(/share/imgs/kinen-content-icn-file-pp.png);
  background-image: url(/share/imgs/kinen-content-icn-file-pp-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/kinen-content-icn-file-pp-ie.png); /* IE7用 */
  background-size: 20px 20px;
}

/* ---- マップ ---- */

.boxEntryBody .boxMap {
  margin-bottom: 40px;
}

.boxEntryBody .boxMap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* ---- インフォ ---- */

.boxEntryBody .boxInfo {
  padding: 25px 25px 10px;
  border: 2px solid #008835;
}

.boxEntryBody .boxInfo .boxImgArea {
  float: left;
  width: 90px;
  padding-top: 3px;
}

.boxEntryBody .boxInfo .boxTxtArea {
  float: right;
  width: 528px;
}

.boxEntryBody .boxInfo p {
  margin-bottom: 8px;
  line-height: 1.55em;
}

/* -- リンク矢印 -- */

.boxEntryBody .boxInfo .icnArw {
  padding-left: 5px;
}

/* 矢印アイコン */
.boxEntryBody .boxInfo .icnArw a:before {
  top: 7px;
}

/* firefox用 */
@-moz-document url-prefix() { 
  .boxEntryBody .boxInfo .icnArw a:before {
    top: 8px;
  }
}

/*  サイド 設定
-----------------------------------*/

#side {
}

/*  リンクリスト
-------------------------- */

.boxSideLinkList {
  margin-bottom: 20px;
}

/* ---- タイトル ---- */

.boxSideLinkList dt {
  padding: 22px 15px 20px;
  border-top: 3px solid #99cc00;
  background: url(/share/imgs/kinen-content-bg-stripe.png);
  font-size: 1.2em;
  font-weight: bold;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
  line-height: 1.1em;
  letter-spacing: .08em;
}

/* ---- 内容 ---- */

.boxSideLinkList dd {
  padding-top: 5px;
}

/* MTN ADD */
/* 画像枠対応 */
/* 画像枠レイアウト */

/* 右寄せ画像枠 */
.img_right {
  clear: right;
  float: right;
  padding: 3px;
  margin: 0px 8px 0px 8px;
  text-align: center;
}

/* 左寄せ画像枠 */
.img_left {
  clear: left;
  float: left;
  padding: 3px;
  margin: 0px 8px 0px 8px;
  text-align: center;
}

/* 画像固定枠 */
.img_waku {
  float: left;
  width: 100%;
  zoom: 100%;
}
.img_wakuleft {
  float: left;
  margin: 0 2px;
  text-align: center;
  width: auto;
}
/* 画像の回り込み解除 */
.clearall {
  clear: both;
}

/* 画像と文章の高さを合わせる改行 */
.brclear {
  clear: both;
}

/* 動画枠 */
div.youtubearea {
  clear: both;
}