@charset "UTF-8";
/*========================================
ニコニコレンタカー　リニューアル用CSS

ver2.5 2018.02.26 pagetopにz-indexを追記（村上）
ver2.4 2017.04.07 ログインページ作成に伴う修正（村上）
ver2.3 2017.02.01 免責補償プラスに伴う修正（村上）
ver2.2 2017.01.19 日本地図の都道府県リンクの位置修正（村上）
ver2.1 2017.01.06 既存スタイル修正（村上）
ver2.0 2016.12.08 地方エリアのスタイルを追加（村上）
ver1.0 2016.12 新規作成（村上）
==========================================*/
/*
*基本設定
*/
body {
  font-size: 13px;
  font-family: /*"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", */"メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  line-height: 1.5 !important;
  color: #333;
}

a {
  color: #336633;
  text-decoration: none;
}
a:hover {
  color: #336633;
  text-decoration: none;
}

/*
*header
*/
#header_wrapper {
  width: 100%;
  background-color: #fff100;
}

.header {
  width: 1050px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  background-image: url(/images/header_mitsuba.png);
  background-repeat: no-repeat;
  background-position: 466px bottom;/*2017.04.07:元496px：ヘッダーの双葉が隠れてしまうため変更*/
  overflow: hidden;
  zoom: 1;
}

.header-copy {
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
  background-color: #f0f0f0;
  font-size: 85%;
}

.header-copy_txt {
  width: 1050px;
  margin: 0 auto;
  color: #333 !important;
}

.header-logo {
  float: left;
  display: inline;
  margin-top: 5px;
  margin-right: 40px;
}

/*2017.04.07 追記*/
.header-btns {
  float: right;
  width: 370px;
  margin-right: -15px;
  overflow: hidden;
}

.header-register {
  float: left;
  width: 170px;
  margin-top: 5px;
  margin-right: 15px;
}
.header-register > a {
  display: block;
  height: 60px;
  padding-left: 10%;
  line-height: 60px;
  text-decoration: none;
  background-color: #fc7c00;
  background-image: url(/images/icn_arrow.png);
  background-repeat: no-repeat;
  background-position: 96% 49%;
  border-radius: 3px;
  color: #fff;
  font-size: 154%;
  font-weight: bold;
}

a.header-loginBtn {
  padding-left: 0;
  text-align: center;
}

.header-login {
  float: left;
  width: 361px;
}
.header-login input[type="text"], .header-login input[type="password"] {
  width: 130px;
  height: 28px;
  padding-left: 2px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.header-login_att {
  font-size: 85%;
}

.header-login_btn {
  vertical-align: middle;
}

/*
*グローバルナビ
*/
.gnav-wrap {
  width: 100%;
  background-color: #41a149;
}

.gnav {
  width: 1050px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  background-image: url(/images/header/gnav_line.png);
  background-position: right 0;
  background-repeat: no-repeat;
  overflow: hidden;
  zoom: 1;
}
.gnav > li {
  float: left;
  width: 128px;
  background-image: url(/images/header/gnav_line.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  text-align: center;
}
.gnav > li > a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 124%;
  font-weight: bold;
}
.gnav > li > a:hover {
  background-color: #60bf68;
}

/*2016.12.08追加（村上）*/
/*
*ログイン後
*/
.header-logining {
  position: relative;
  float: left;
  width: 546px;
  background-color: #fffeeb;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.header-logining_number {
  margin-top: 10px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.header-logining_name {
  margin-bottom: 5px;
  margin-left: 10px;
}
.header-logining_name .login_info {
  font-size: 100%;
  background-color: #fffeeb;
}

.header-logining_logoutBtn {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 90px;
}
.header-logining_logoutBtn a {
  text-decoration: none;
  color: #fff;
}

.header-logining_list {
  margin-left: 5px;
  margin-right: 5px;
  border-top: 1px solid #8fa888;
  box-shadow: 0 1px 0 white inset;
  overflow: hidden;
  zoom: 1;
}
.header-logining_list > li {
  float: left;
  display: inline;
  margin-right: 10px;
}

/*
*layout-contents
*/
.layout-2col {
  width: 100%;
  overflow: hidden;
  zoom: 1;
}

.layout-col_left {
  float: left;
  width: 350px;
  margin: 0;
}

.layout-col_right {
  float: right;
  width: 350px;
  margin: 0;
}

.banner-section {
  margin-bottom: 100px;
}

.banner-section_related {
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.snsIcon-section {
  margin-bottom: 10px;
  text-align: center;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index:9999; /*2018.02.26 追記*/
}

#contents_wrapper {
  background-image: url(/images/bg_contents.png);
  background-repeat: repeat-x;
  background-position: 0 0;
}

.bxslider {
  height: 300px;
  overflow: hidden;
}

/*
*footer
*/
.footer-search-wrapper {
  width: 100%;
  margin-top: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff100;
  clear:both;
}

.footer-search {
  width: 1050px;
  margin: 0 auto;
}

.footer-search_ttl {
  margin-bottom: 10px;
  padding-left: 5px;
  border-bottom: 1px solid #cfc843;
  font-size: 100%;
}

.footer-search_list {
  margin-bottom: 20px;
  padding-left: 5px;
  list-style: none;
  line-height: 1.1;
  overflow: hidden;
  zoom: 1;
}
.footer-search_list > li {
  float: left;
  display: inline;
  margin-bottom: 7px;
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #333;
}
.footer-search_list > li > a {
  color: #333;
  text-decoration: none;
}
.footer-search_list > li > a:hover {
  text-decoration: underline;
}

.footer-nav-wrapper {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 5px solid #a7d081;
  background-color: #41a149;
}

.footer-nav {
  width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  zoom: 1;
}

.footer-nav_list {
  float: left;
  display: inline;
  min-height: 120px;
  border-right: 1px solid #fff;
  list-style: none;
}
.footer-nav_list > li {
  margin-bottom: 5px;
  margin-left: 30px;
  margin-right: 50px;
}
.footer-nav_list > li > a {
  color: #fff;
  text-decoration: none;
}
.footer-nav_list > li > a:hover {
  text-decoration: underline;
}

.footer {
  width: 1050px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  zoom: 1;
}

.footer-link {
  float: left;
  display: inline;
}

.footer-copyright {
  float: right;
  display: inline;
}

/*
*枠のスタイル
*/
.border-section {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}
.border-section.border-red {
  border: 2px solid #e60019;
}

.border-section_inner {
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

/*
*グレーの角丸枠
*/
.frame-gray {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #f0f0f0;
  border-radius: 3px;
}
.frame-gray margin {
  top: 10px;
  bottom: 10px;
}

/*
*見出しのスタイル
*/
.ttl-lv1 { /*2017.01.07 追加*/
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 3px;
  border-top: 1px solid #41a149;
  border-bottom: 1px solid #41a149;
  font-size: 247%;
  text-align: center;
}
.ttl-lv2 {
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  padding-left: 48px;
  background-color: #41a149;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  font-size: 139%;
  font-weight: bold;
}
.ttl-lv2.icn-search {
  background-image: url(/images/icn_search.png);
}
.ttl-lv2.icn-search.bg-red {
  background-image: url(/images/icn_search_red.png);
}
.ttl-lv2.icn-baroon {
  background-image: url(/images/icn_baroon.png);
}
.ttl-lv2.icn-fb {
  background-image: url(/images/icn_facebook.png);
}
.ttl-lv2.icn-car {
  background-image: url(/images/icn_car.png);
}
.ttl-lv2.bg-red {
  background-color: #e60019;
}

/*
*ボタンのスタイル
*/
.btn-orange {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  border-radius: 3px;
  background-color: #fc7c00;
  background-image: url(/images/icn_arrow.png);
  background-repeat: no-repeat;
  background-position: 96% 49%;
  color: #fff;
  font-size: 131%;
  font-weight: bold;
  cursor:pointer;
}
.btn-orange.waku {
  border: 2px solid #fc7c00;
  background-color: #fff;
  background-image: url(/images/icn_arrow_orange.png);
}
.btn-orange > a {
  color: #fff;
  text-decoration: none;
}
.btn-orange.waku > a {
  color: #fc7c00;
  text-decoration: none;
}

.btn-gray {
  display: block;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 8px;
  padding-right: 8px;
  background-color: #999;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  font-size: px17;
  font-weight: bold;
}

/*
*フォームのスタイル
*/
#search_car_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  height: 30px;
  padding-left: 2px;
  padding-right: 12px;
  background-image: url(/images/icn_dropdown.png);
  background-repeat: no-repeat;
  background-position: 98% 50%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}
#search_car_form select::-ms-expand {
  display: none;
}
#search_car_form input, #search_car_form label {
  vertical-align: middle;
}

#sPrefecture {
  width: 100%;
}

#kodawaritext {
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

#kodawarisearch input, #kodawarisearch label {
  vertical-align: middle;
}

/*
*汎用パーツのスタイル
*/
.tag {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding-top: 3px;
  padding-bottom: 1px;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.0;
  color: #fff;
}
.tag.orange {
  background-color: #fc7c00;
}
.tag.blue {
  background-color: #0068b7;
}

/*
*リストのスタイル
*/
.list-info {
  margin-bottom: 10px;
  margin-left: 8px;
  margin-right: 8px;
  list-style: none;
}
.list-info > li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

.list-arrow {
  padding-top: 5px;
  padding-left: 15px;
  list-style: none;
}
.list-arrow > li {
  margin-bottom: 5px;
  padding-left: 12px;
  background-image: url(/images/icn_arrow_green.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.list-arrow > li > a {
  text-decoration: none;
  color: #333; /*2017.01.06 追加*/
}
.list-arrow > li > a:hover {
  text-decoration: underline;
}
.list-arrow.arw-gray-squer li {
  padding-left: 18px;
  background-image: url(/images/icn_arrow_squer_gray.png);
}

/*
*表のスタイル
*/
.table-type01 {
  width: 100%;
  border-collapse: collapse;
}
.table-type01 th {
  /*width: 65px;*/
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dotted #ccc;
  font-weight: normal;
  /*font-size: $px11;*/
}
.table-type01 td {
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dotted #ccc;
}

.table-type02 {
  width: 693px;
  margin: 0 auto;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.table-type02 th {
  width: 103px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 12px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #eee;  /*2017.01.06 追加*/
}
.table-type02 th > a {
  color: #333; /*2017.01.06 追加*/
}
.table-type02 td {
  width: 228px;
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

/*
*リンク
*/
a.link-arrow {
  padding-left: 20px;
  background-image: url(/images/icn_arrow_squer_green.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  text-decoration: none;
}

/*
*googleカスタム検索
*/
.google-search-area {
  height: 120px;
  overflow: hidden;
}

/*
*ぱんくず
*/
p.breadcrumb { /*2017.01.07 追加*/
  margin-bottom: 10px !important;
}
.breadcrumb a {
  text-decoration: none;
}

/*
*2016.12.9 追加
*お客様の声
*/
.voice-section {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.voice-ttl {
  width: 95px;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 124%;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.voice-ttl.hokkaido {
  background-color: #678cb0;
}
.voice-ttl.kanto {
  background-color: #b1c17e;
}
.voice-ttl.kyusyu {
  background-color: #9087ab;
}

.voice-list {
  margin-bottom: 30px;
}
.voice-list > dt {
  margin-bottom: 10px;
}
.voice-list > dd {
  margin-bottom: 15px;
  margin-left: 5px;
  margin-right: 5px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #ccc;
}

/*
*2016.12.15 追加
*ログイン失敗時のエラーメッセージ
*/
.login_failed {
  margin-top: 2px;
  text-align: center;
  font-size: 10px;
  color: red;
  background-color: #fdffdb;
  border: 2px solid #f00;
}

/*
*日本地図
*/
.section-map_japan {
  position: relative;
  padding-bottom: 100px;
}

.map-arealink {
  position: absolute;
  width: 111px;
}
.map-arealink.hokkaido {
  top: 21px;
  right: 190px;
}
.map-arealink.tohoku {
  top: 250px;
  right: 40px;
}
.map-arealink.kanto {
  top: 450px;
  left: 490px;
}
.map-arealink.cyubu {
  top: 90px;
  left: 300px;
}
.map-arealink.kinki {
  top: 520px;
  left: 300px;
}
.map-arealink.cyugoku {
  top: 220px;
  left: 164px;
}
.map-arealink.shikoku {
  top: 550px;
  left: 170px;
}
.map-arealink.kyusyu {
  top: 250px;
  left: 33px;
}
.map-arealink.okinawa {
  top: 0px;
  left: 33px;
}

.map-arealink_ttl {
  margin-bottom: 10px;
  padding-bottom: 2px;
  padding-left: 3px;
  background-repeat: no-repeat;
  background-position: 0 bottom;
  font-size: 139%;
}
.map-arealink_ttl > a {
  text-decoration: none;
}

.map-arealink_list {
  list-style: none;
}
.map-arealink_list > li {
  height: 15px;
  margin-bottom: 5px;
  padding-left: 18px;
  background-image: url(/images/sprite_map_icn_arrow.png);
  background-repeat: no-repeat;
  vertical-align: middle;
  line-height: 1.0 !important;
}
.map-arealink_list > li > a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.0 !important;
}

.hokkaido .map-arealink_ttl {
  color: #678cb0;
  background-image: url(/images/map/map_line_hokkaido.png);
}
.hokkaido .map-arealink_ttl > a {
  color: #678cb0;
}
.hokkaido .map-arealink_list {
  padding-left: 3px;
}
.hokkaido .map-arealink_list > li {
  background-position: 0 1px;
}

.tohoku .map-arealink_ttl {
  color: #63a7cd;
  background-image: url(/images/map/map_line_tohoku.png);
}
.tohoku .map-arealink_ttl > a {
  color: #63a7cd;
}
.tohoku .map-arealink_list {
  padding-left: 3px;
}
.tohoku .map-arealink_list > li {
  background-position: 0 -13px;
}

.kanto .map-arealink_ttl {
  color: #AFD146;
  background-image: url(/images/map/map_line_kanto.png);
}
.kanto .map-arealink_ttl > a {
  color: #AFD146;
}
.kanto .map-arealink_list {
  padding-left: 3px;
}
.kanto .map-arealink_list > li {
  background-position: 0 -27px;
}

.cyubu .map-arealink_ttl {
  color: #F7AE4F;
  background-image: url(/images/map/map_line_cyubu.png);
}
.cyubu .map-arealink_ttl > a {
  color: #F7AE4F;
}
.cyubu .map-arealink_list {
  padding-left: 3px;
}
.cyubu .map-arealink_list > li {
  background-position: 0 -41px;
}

.kinki .map-arealink_ttl {
  color: #EF9C8E;
  background-image: url(/images/map/map_line_kinki.png);
}
.kinki .map-arealink_ttl > a {
  color: #EF9C8E;
}
.kinki .map-arealink_list {
  padding-left: 3px;
}
.kinki .map-arealink_list > li {
  background-position: 0 -55px;
}

.cyugoku .map-arealink_ttl {
  color: #DB8395;
  background-image: url(/images/map/map_line_cyugoku.png);
}
.cyugoku .map-arealink_ttl > a {
  color: #DB8395;
}
.cyugoku .map-arealink_list {
  padding-left: 3px;
}
.cyugoku .map-arealink_list > li {
  background-position: 0 -69px;
}

.shikoku .map-arealink_ttl {
  color: #bb99b4;
  background-image: url(/images/map/map_line_shikoku.png);
}
.shikoku .map-arealink_ttl > a {
  color: #bb99b4;
}
.shikoku .map-arealink_list {
  padding-left: 3px;
}
.shikoku .map-arealink_list > li {
  background-position: 0 -83px;
}

.kyusyu .map-arealink_ttl {
  color: #AAA6D1;
  background-image: url(/images/map/map_line_kyusyu.png);
}
.kyusyu .map-arealink_ttl > a {
  color: #AAA6D1;
}
.kyusyu .map-arealink_list {
  padding-left: 3px;
}
.kyusyu .map-arealink_list > li {
  background-position: 0 -97px;
}

.okinawa .map-arealink_ttl {
  color: #21659d;
  background-image: url(/images/map/map_line_okinawa.png);
}
.okinawa .map-arealink_ttl > a {
  color: #21659d;
}
.okinawa .map-arealink_list {
  padding-left: 3px;
}
.okinawa .map-arealink_list > li {
  background-position: 0 -111px;
}

/*
*2016.12.08 追記
*地方ページのスタイル
*/
.region-msg {
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}

/*
*2017.01.06 追記
*車種・料金ページのスタイル
*/
.tabArea {
  background-color: #fff;

}
/*
*2017.02.01 追記
*車種・料金ページのスタイル
*/
.table01 td {
  padding-top: 7px;
  padding-top: 7px;
}
/*
*2017.02.01 追記
*免責補償プラスのスタイル
*/
.menseki-box {
  text-align: center;
}
.menseki-box p {
  text-align: center;
  padding-bottom: 20px;
}
.menseki-ex {
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.menseki-ex > dt {
  margin-bottom: 10px;
  font-size: 110%;
  font-weight: bold;
  border-bottom: 1px solid #9b9b9b;
}

/*
*2017.03.21 追記
*サイトマップのスタイル
*/
.list-type01 {
  margin-top: 20px;
  list-style: none !important;
}
.list-type01 > li {
  margin-left: 7px;
  margin-bottom: 7px;
}

/*
*2017.04.07 追記
*ログインページ
*/
.login-formArea {
  margin-top: 15px;
  padding: 30px 20px;
  background-color: #d5edd7;
  border-radius: 3px;
}
.login-form_table {
  width: 510px;
  margin: 0 auto;
  
}
.login-form_table th {
  width: 24%;
  font-weight: normal;
}
.login-form_table input {
  width: 370px;
  height: 40px;
  padding-left: 5px;
  font-size: 14px;
}
.form-login_btn {
  width: 30%;
  margin: 20px auto;
  border:0;
  cursor: pointer;
}
.login-form_att {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.8;
}
.nicoren-tokuten_txt {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 160%;
  font-weight: bold;
  text-align: center;
}
.nicoren-tokuten {
  width: 630px;
  margin: 20px auto;
  border:2px solid #75b542;
}
.nicoren-tokuten_ttl {
  padding: 5px;
  font-size: 120%;
  background-color: #75b542;
  color:#fff;
  text-align: center;
}
.nicoren-tokuten_detail {
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 130px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: url(/images/sprite_tokuten.png) no-repeat 30px 0;
}
.nicoren-tokuten_detail.toku02 {
  background-position: 30px -150px;
}
.nicoren-tokuten_detail.toku03 {
  background-position: 30px -260px;
}
.nicoren-tokuten_detail > dt {
  font-size: 300%;
  font-weight: bold;
  color:#f50224;
}
.nicoren-tokuten_detail > dt > span {
  font-size: 50%;
  font-weight: normal;
  color:#333;
  line-height: 1.0;
}

/*
*2017.11.24 追記
*スピードチェックインページ
*/
.checkinArea { margin: 20px;}
.checkinArea p { margin-bottom: 10px;}
.checkin-box {
    margin: 20px 0;
    padding: 30px 20px;
    border:2px solid #009944;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
}
.checkin-box-col {
    float: left;
    width: 50%;
    margin-bottom: 15px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 60px 60px;
}
.checkin-box-col.icn01 { background-image: url(/images/speedcheckin/icn01.png);}
.checkin-box-col.icn02 { background-image: url(/images/speedcheckin/icn02.png);}
.checkin-box-col.icn03 {
    background-image: url(/images/speedcheckin/icn03.png);
    width: 100%;
}
.checkin-box-col > dt {
    color:#e60012;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 70px;
}
.checkin-box-col > dd {
    padding-left: 70px;
}
.txt-center{ text-align: center;}


.adobebox{
   display: block;
   clear: both;
   padding-left: 250px;
   padding-top: 1rem;
}       
.adobebox_left{
   float:left;
   padding-right: 1rem;
}
.adobebox_right{
   float:right;
}
.adobebox_right img{
   border:0px;
}

.txt-todofuken {
    padding: 10px 10px 10px 10px;
    background-color: #F7F6F4;
    border-right-style: solid;
    border-left-style: solid;
    border-right-color: #CCC;
    border-left-color: #CCC;
    border-right-width: 1px;
    border-left-width: 1px;
}
.txt-todofuken p {
    padding: 1em;
    color: #474747;
    background: #fff;
    border-top: solid 6px #abd47f;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.32);
}
.search-ttl {
    background: url(/images/area/h2_search.jpg);
    background-repeat: no-repeat;
    height: 40px;
    padding: 10px 0 0 40px;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    margin-top: 10px;
}
.txt-shicyoson {
    padding: 1em;
    margin-bottom: 2em;
    color: #474747;
    background: #fff;
    border-top: solid 6px #abd47f;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.32);
}
#pref { padding-top: 10px;}
#pref .select {margin-top: 10px;}
.ttl-shicyoson {
    position: relative;
    font-size:18px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 0.5em;
    color: #fff;
    background: #ffaf58;
    border-radius: 3px;
}
.ttl-shicyoson:after {
    position: absolute;
    content: '';
    top: 100%;
    right: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #ffaf58;
    width: 0;
    height: 0;
}

.header-copy_txt { font-size: 10px !important;}
.ttl-lv3 {
    margin: 20px 0 10px;
    padding: 10px 0 7px 10px;
    color: #010101;
    background: #e1efe2;
    border-bottom: solid 3px #41a149;
    line-height: 1.0;
    font-weight: normal;
    border-radius: 3px 3px 0 0;
}
.area-list {
    list-style: none;
    margin-bottom: 20px;
    margin-left: 5px;
    overflow: hidden;
}
.area-list > li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}
.area-list > li > a {
    display: block;
    padding: 3px 5px 1px;
    background: #baddbc;
    text-decoration: none;
}
.area-list > li > a:hover {background: #e1efe2;}