@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,
  .boxInput input[type=radio] + label:after {
    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,
  .boxInput input[type=radio] + label:after {
    border: 1px solid #9c9c9b;
    border-radius: 100%;
  }

  .boxInput input[type=radio]:checked + label:before,
  .boxInput input[type=radio]:checked + label:after {
    border-color: #0099ff;
    border-width: 5px;
  }

  .boxInput input[type=radio] + label:after {
    display: none;
  }
}


/*  アイコン　設定
-------------------------- */
    
/* -- 矢印アイコン -- */

.icnArw a,
.boxAccHead.icnArw span,
.ttlMain.icnArw span,
.icnArw .active > * {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  position: relative;
  padding-left: 12px;
}

/* 矢印 */
.icnArw a:before,
.boxAccHead.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: 5px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #018640;
  content: "";
}

/* firefox用 */
@-moz-document url-prefix() { 
  .icnArw a:before,
  .boxAccHead.icnArw span:before,
  .ttlMain.icnArw span:before,
  .icnArw .active > *:before {
    top: 6px;
  }
}

.boxAccHead.icnArw a:before,
.ttlMain.icnArw a:before {
  display: none;
}

/* 白色矢印 */
.icnArw.icnWhite a:before,
.boxAccHead.icnArw.icnWhite span: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;
  letter-spacing: -0.02em;
  font-size: .88em;
}

#contentTop .boxBreadcrumb {
  padding-left: 4px;
}

.boxBreadcrumb dl {
  display: table;
  width: 100%;
}

/* -- タイトル＆内容 -- */

.boxBreadcrumb dt,
.boxBreadcrumb dd {
  display: table-cell;
  vertical-align: top;
}

/* -- タイトル -- */

.boxBreadcrumb dt {
  white-space: nowrap;
  width: 73px;
}

/* -- 内容 -- */

.boxBreadcrumb dd {
}

/* -- リンク -- */

.boxBreadcrumb a {
  text-decoration: underline;
}

/* -- リンク（ホバー・フォーカス時）-- */

.boxBreadcrumb a:hover,
.boxBreadcrumb a:focus {
  text-decoration: none;
}


/*  ページナビ
-------------------------- */

.boxPageNav {
  padding: 35px 0 30px;
  font-size: 1.05em;
}

.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;
  text-shadow: none !important;
  vertical-align: top;
}

.boxPager a {
  text-decoration: underline;
}

.boxPager a:hover,
.boxPager a:focus {
  text-decoration: none;
}

.boxPager .btn > * {
  transition: border .4s ease-in-out,background .4s ease-in-out,color .4s ease-in-out;
  min-width: 35px;
  margin: 0 1px 5px;
  padding: 5px 8px;
  border-color: #ff8533;
  border-width: 2px;
  border-radius: 10px;
  color: #ff8533;
  font-weight: bold;
}

.boxPager .txtCurrent,
.boxPager a:hover,
.boxPager a:focus {
  background-color: #ff8533;
  color: #fff;
}

/* -- 戻るボタン・進むボタン・一覧へボタン -- */

.boxPager .btnPrev,
.boxPager .btnNext,
.boxPager .btnTop {
  text-decoration: underline !important;
}

.boxPager .btnPrev:hover,
.boxPager .btnPrev:focus,
.boxPager .btnNext:hover,
.boxPager .btnNext:focus,
.boxPager .btnTop:hover,
.boxPager .btnTop:focus {
  text-decoration: none !important;
}

/* -- 戻るボタン・進むボタン -- */

.boxPager .btnPrev,
.boxPager .btnNext {
  position: relative;
  width: auto;
  text-decoration: underline !important;
}

/* -- 戻るボタン -- */

.boxPager .btnPrev {
  margin-right: 4px;
  padding-left: 28px;
  padding-right: 16px;
}

/* -- 進むボタン -- */

.boxPager .btnNext {
  margin-left: 4px;
  padding-right: 28px;
  padding-left: 16px;
}

/* -- 戻る進むボタン装飾（矢印） -- */

.boxPager .btnPrev:before,
.boxPager .btnPrev:after,
.boxPager .btnNext:before,
.boxPager .btnNext:after {
  transition: border .4s ease-in-out;
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -10px;
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-radius: 10px;
  content: "";
}

/* -- 戻るボタン装飾 -- */

.boxPager .btnPrev:before {
  left: 0;
  border-right-color: #ff8533;
}

.boxPager .btnPrev:after {
  left: 3px;
  border-right-color: #fff;
}

/* -- 進むボタン装飾 -- */

.boxPager .btnNext:before {
  right: 0;
  border-left-color: #ff8533;
}

.boxPager .btnNext:after {
  right: 3px;
  border-left-color: #fff;
}

/* -- 戻る進むボタン・ホバー時 -- */

.boxPager .btnPrev:hover:before,
.boxPager .btnPrev:focus:before {
  border-right-color: #fff;
}

.boxPager .btnPrev:hover:after,
.boxPager .btnPrev:focus:after {
  border-right-color: #ff8533;
}

.boxPager .btnNext:hover:before,
.boxPager .btnNext:focus:before {
  border-left-color: #fff;
}

.boxPager .btnNext:hover:after,
.boxPager .btnNext:focus:after {
  border-left-color: #ff8533;
}

/* -- 戻る進むボタン内SPAN -- */

.boxPager .btnPrev span,
.boxPager .btnNext span {
  display: none;
}

/* -- 一覧へボタン -- */

.boxPager .btnTop {
  padding-right: 40px;
  padding-left: 40px;
}


/*  タイトル
-------------------------- */

.boxCategoryTitle,
.boxCategoryTitle *,
.boxSubCategoryTitle,
.boxSubCategoryTitle *,
.ttlSection,
.ttlSection02 {
  font-weight: bold;
}

/* -- カテゴリータイトル -- */

.boxCategoryTitle {
  position: relative;
  margin-top: 30px;  
  margin-bottom: 30px;
  padding: 12px 145px 14px 120px;
  background: #288f00;
  border-radius: 14px;
  font-size: 2.2em;
  color: #fff;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}

.boxCategoryTitle:before,
.boxCategoryTitle:after {
  position: absolute;
  content: "";
}

.boxCategoryTitle:before {
  top: -25px;
  left: 26px;
  width: 85px;
  height: 90px;
  background: url(/share/imgs/kids-content-category-bg-bird-pc.png) no-repeat;
}

.boxCategoryTitle:after {
  top: -23px;
  right: 17px;
  width: 116px;
  height: 90px;
  background: url(/share/imgs/kids-content-category-bg-leave.png) no-repeat;
}

.boxCategoryTitle rt {
  font-size: .38em;
}

.boxCategoryTitle rb {
  padding-top: 7px;
  padding-top: 0\9; /* IE8用 */
}

 /* ルビなしテキスト */
.boxCategoryTitle .txtCate {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  padding: 10px 0 6px;  
}

/* -- サブカテゴリータイトル -- */

.boxSubCategoryTitle {
  position: relative;
  margin-bottom: 15px;
  padding: 18px;
  border-left: 7px solid #00883a;
  background: #fafaf2;
  font-size: 1.7em;
}

.boxSubCategoryTitle:before {
  position: absolute;
  top: 0;
  left: 2px;
  width: 1px;
  height: 100%;
  border-left: 2px solid #00883a;
  content: "";
}

/* -- セクションタイトル -- */

.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;
}


/*  アコーディオンエリア
-------------------------- */

/* ---- リスト ---- */

.boxAccList {
  padding: 0;
}

/* ---- アコーディオン ---- */

.boxAcc {
  position: relative;
  margin: 0 0 8px;
  border: 1px solid #ccc;
}

/* ---- アコーディオン・ヘッダ ---- */

.boxAcc .boxAccHead {
  position: relative;
  padding: 12px 14px 12px 44px;
  font-size: 1.08em;
  font-weight: bold;
}

.boxAcc .boxAccHead h2 {
  font-weight: bold;
}

/* -- テキスト箇所 -- */

.boxAcc .boxAccHeadLinkText {
  display: block;
}

/* -- 開閉リンク -- */

.boxAcc .boxAccHeadLink {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100% !important;
  height: 100%;
}

.boxAcc .boxAccHeadLinkShowLabel,
.boxAcc .boxAccHeadLinkHideLabel {
  position: absolute;
  top: 14px;
  left: 15px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #ff8000;
  text-indent: 100px;
  line-height: 100px;
}

/* -- 開閉リンク装飾・矢印 -- */

.boxAcc .boxAccHeadLinkShowLabel:before,
.boxAcc .boxAccHeadLinkShowLabel:after,
.boxAcc .boxAccHeadLinkHideLabel:before,
.boxAcc .boxAccHeadLinkHideLabel:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -2px;
  margin-left: -6px;
  border-radius: 5px;
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

/* -- 開くボタン -- */

.boxAcc .boxAccHeadLinkShowLabel {
  background-color: #00883a;
}

.boxAcc .boxAccHeadLinkShowLabel:after {
  margin-top: -4px;
  border-top-color: #00883a;
}

/* -- 閉じるボタン -- */

.boxAcc .boxAccHeadLinkHideLabel {
  background-color: #ff8000;
}

.boxAcc .boxAccHeadLinkHideLabel:before {
  margin-top: -9px;
  border-top-color: transparent;
  border-bottom-color: #fff;
}

.boxAcc .boxAccHeadLinkHideLabel:after {
  margin-top: -7px;
  border-top-color: transparent;
  border-bottom-color: #ff8000;
}

/* ---- アコーディオン・内容 ---- */

.boxAcc .boxAccCont {
  padding: 0 14px;
  background: #fff;
}

.boxAcc .boxAccContInner {
  padding: 20px 5px;
  border-top: 1px solid #ccc;
}


/*  スマホ用・アコーディオンエリア
-------------------------- */

#container.gt740 .boxAccSP .boxAccCont {
  display: block !important;
}


/*  下線付きリスト
-------------------------- */

.boxLineList {
  font-size: 1.14em;
  font-weight: bold;
  line-height: 1.75em;
}

.boxLineList rb {
  padding-top: 2px;
  padding-top: 0\9; /* IE8用 */
}

/* -- リスト -- */

.boxLineList > ul > li {
  margin: 0;
  padding: 0;
  border-top: 2px dotted #288f00;
}

.boxLineList > ul > li:first-child {
  border-top: none;
}

/* -- リンク -- */

.boxLineList > ul > li > a {
  display: block;
  position: relative;
  padding: 17px 0 6px 32px;
  background: url(/share/imgs/kids-content-icn-arw-mini.png) no-repeat left center;
  color: #333;
  text-decoration: underline;
}

/* -- リンク（ホバー・フォーカス時）-- */

.boxLineList > ul > li > a:hover,
.boxLineList > ul > li > a:focus {
  text-decoration: none;
}

/*  ページ一覧
-------------------------- */

.boxPageList {
}

/* -- リスト -- */

.boxPageLink > ul {
  margin-left: -35px;
  letter-spacing: -0.4em;
}

.boxPageLink > ul > li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  width: 50%;
  margin: 0 0 20px;
  padding-left: 35px;
  vertical-align: top;
  letter-spacing: normal;
}

/* -- ページ一覧タイトル -- */

.boxPageLink .ttlMain {
  display: block;
  font-size: 1.55em;
  font-weight: bold;
}

/* タイトル内リンク */
.boxPageLink .ttlMain a {
  color: #333;
}

.boxPageLink .ttlMain span {
  display: block;
  transition: background-color .4s ease-in-out;
  padding: 20px 15px 8px 58px;
  padding-top: 15px\9; /* IE8用 */
  background: url(/share/imgs/kids-content-icn-arw.png) no-repeat 10px center rgba(255,254,187,.5);
  background: url(/share/imgs/kids-content-icn-arw.png) no-repeat 10px center #fcf9d0\9; /* IE8用 */
  border-radius: 12px;
}

 /* IE9用 */
.boxPageLink .ttlMain span:not(:target) {
  background-color: rgba(255,254,187,.5);
}

/* IE10用 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .boxPageLink .ttlMain span { 
    padding-top: 15px;
    padding-bottom: 12px;
  }
}

/* Edge用 */
@supports (-ms-ime-align:auto) {
  .boxPageLink .ttlMain span { 
    padding-top: 15px;
    padding-bottom: 12px;
  }
}

/* -- ページ内容 -- */

.boxPageLink .boxPageCont {
  padding: 12px 2px;
  font-size: 1.02em; 
  letter-spacing: -0.02em;
  line-height: 1.8em;
}



/*  ページ詳細
-------------------------- */

.boxEntryBody {
  color: #333;
  font-size: 1.02em;
  line-height: 1.8em;
}

.boxEntryBody .boxEntryContent {
  padding-bottom: 30px;
}

/* ---- H1タイトル ---- */

.boxEntryBody h1 {
  clear: both;
  margin-bottom: 15px;
  padding: 20px 15px 15px 75px;
  padding-top: 15px\9; /* IE8用 */
  background: url(/share/imgs/kids-content-icn-arw.png) no-repeat 20px center rgba(255,254,187,.5);
  background: url(/share/imgs/kids-content-icn-arw.png) no-repeat 10px center #fcf9d0\9; /* IE8用 */
  border-radius: 22px;
  font-size: 2.1em;
  font-weight: bold;
  line-height: 1.52em;
}

.boxEntryBody h1:not(:target) {
  background-color: rgba(255,254,187,.5); /* IE9用 */
}

.boxEntryBody h1 rt {
  font-size: .4em;
}

/* ---- H2タイトル ---- */

.boxEntryBody h2 {
  position: relative;
  clear: both;
  margin: 35px 0 25px;
  padding: 16px 15px 13px 40px;
  border-top: 2px solid #7e6b5a;
  border-bottom: 2px solid #7e6b5a;
  font-size: 1.65em;
  font-weight: bold;
  letter-spacing: 0;
}

.boxEntryBody h2:before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 12px;
  height: 12px;
  margin-top: -12px;
  border: 6px solid #ffa766;
  border-radius: 100%;
  content: "";
}

.boxEntryBody h2 rb {
  padding-top: 0;
}

.boxEntryBody h2 rt {
  font-size: .35em;
}

.boxEntryBody h2:first-child {
  margin-top: 15px;
}

/* ---- H3タイトル ---- */

.boxEntryBody h3,
.ttlSection03 {
  position: relative;
  z-index: 0;
  clear: both;
  margin: 15px 0 0;
  padding: 0 0 0 17px;
  font-size: 1.02em;
  font-weight: bold;
  line-height: 1.45em;
}

.boxEntryBody h3:before,
.ttlSection03:before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #ffa766;
  content: "";
}

/* ---- テキスト余白 ---- */

.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 .boxAccHead.icnArw span:before,
.boxEntryBody .ttlMain.icnArw span:before,
.boxEntryBody .icnArw .active > *:before {
  top: 8px;
}

/* firefox用 */
@-moz-document url-prefix() { 
  .boxEntryBody .icnArw a:before,
  .boxEntryBody .boxAccHead.icnArw span:before,
  .boxEntryBody .ttlMain.icnArw span:before,
  .boxEntryBody .icnArw .active > *:before {
    top: 9px;
  }
}

/* ---- リスト ---- */

/* -- 箇条書きリスト -- */

.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: 15px;
  margin-bottom: 15px;
  border-collapse: separate;
  border-spacing: 1px;
  background: #7e6b5a;
}

.boxEntryBody table caption {
  padding: 0 3px 10px;
  font-weight: bold;
  font-size: 1.05em;
}

.boxEntryBody table tr {
  border-top: 1px solid #7e6b5a;
}

.boxEntryBody table th,
.boxEntryBody table td {
  padding: 5px 12px;
  background: #fff;
  vertical-align: top;
}

.boxEntryBody table th {
  width: 170px;
  background: #e3ded7;
  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 .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/main-content-icn-file-pdf.png);
  background-image: url(/share/imgs/main-content-icn-file-pdf-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/main-content-icn-file-pdf-ie.png); /* IE7用 */
  background-size: 20px 20px;
}

/* -- Excelリンク -- */

.boxEntryBody .txtExcel a {
  background-image: url(/share/imgs/main-content-icn-file-excel.png);
  background-image: url(/share/imgs/main-content-icn-file-excel-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/main-content-icn-file-excel-ie.png); /* IE7用 */
  background-size: 20px 20px;
}

/* -- Wordリンク -- */

.boxEntryBody .txtWord a {
  background-image: url(/share/imgs/main-content-icn-file-word.png);
  background-image: url(/share/imgs/main-content-icn-file-word-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/main-content-icn-file-word-ie.png); /* IE7用 */
  background-size: 20px 20px;
}

/* -- PowerPointリンク -- */

.boxEntryBody .txtPP a {
  background-image: url(/share/imgs/main-content-icn-file-pp.png);
  background-image: url(/share/imgs/main-content-icn-file-pp-ie.png)\9; /* IE8用 */
  *background-image: url(/share/imgs/main-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;
  border: 2px solid #288f00;
  border-radius: 20px;
  background: rgba(255,254,187,.5);
  background: #fcf9d0\9; /* IE8用 */
}

.boxSideLinkList:not(:target) {
  background-color: rgba(255,254,187,.5); /* IE9用 */
}

/* ---- タイトル ---- */

.boxSideLinkList dt {
  padding: 10px 10px 15px;
  border-radius: 16px 16px 0 0;
  background: #288f00;
  color: #fff;
  font-size: 1.7em;
  font-weight: bold;
  text-align: center;
  line-height: 1.1em;
}

.boxSideLinkList dt rt {
  font-size: .35em;
}

.boxSideLinkList dt span {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  text-align: left;
}

/* ---- 内容 ---- */

.boxSideLinkList dd {
  padding: 5px 10px 14px;
}

/* 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;
}