@charset "utf-8";

  /*
   // 共通
   */

  /* ブラウザメッセージ  
  --------------------------- */
  .old-browser-msg {
    padding: 10px;
    color: #fff;
    background: #cc0000;
    text-align: center;
    overflow: hidden;
  }
  .old-browser-msg a {
    color: #fff;
  }

  /* HTML基本タグ
  --------------------------- */
  a {
    text-decoration: underline;
  }
  a:hover {
    color: #aaa;
  }
  body {
    background: #fff;
    color: #333;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: .8em;
    height: 100%;
    line-height: 1.5em;
    letter-spacing: .15em;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

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

  /* Hタグ
  --------------------------- */
  h1, h2, h3, h4 {
    color: #333;
    font-weight: normal;
    margin: 0;
    padding: 0;
  }
  h1 {
  }
  h2 {
  }
  h3.copy {
    color: #ea6000;
    font-size: 1.5em;
    padding-bottom: 10px;
  }
  h4.copy {
    color: #ea6000;
    font-size: 1.3em;
    padding-bottom: 10px;
  }

  /* layout
  --------------------------- */
  .main-container:after,
  article:after,
  section:after {
    clear: both;
    content: "";
    display: block;
    overflow: hidden;
  }
  .main-container {
    clear: both;
    margin: 0 auto;
    padding-bottom: 20px;
    width: 860px;
  }
  section {
    clear: both;
    margin-bottom: 40px;
  }
  section p {
    margin-bottom: 10px;
  }

  /* header
  --------------------------- */
  .header-wrapper {
    width: 100%;
  }
    header {
      clear: both;
      min-width: 860px;
      margin: 0 auto 10px auto;
      overflow: hidden;
      padding: 0;
      position: relative;
      width: 860px;
    }
      .header-logo {
        float: left;
        width: 350px;
      }
      .header-tel {
        float: right;
        width: 500px;
      }
      .header-logo a :hover,
      .header-tel a :hover {
        opacity: .8;
      }
      .header-logo img,
      .header-tel img {
        width: 100%;
      }

  /* メインナビ
  --------------------------- */
  nav.gnav {
    border-bottom: 5px solid #5bb431;
    margin-bottom: 40px;
  }
    nav.gnav ul {
      background: #5bb431;
      clear: both;
      margin: 0 auto 15px auto;
      padding: 7px 5px;
      width: 100%;
    }
    nav.gnav ul:after {
      clear: both;
      content: "";
      display: block;
      overflow: hidden;
    }
      nav.gnav li {
        float: left;
        margin: 0;
        padding: 0;
        width: 20%;
      }
        nav.gnav li a {
          color: #fff;
          display: block;
          margin: 0;
          padding: 0 5px;
          text-align: center;
          text-decoration: none;
        }
        .gnav li a:hover {
          color: yellow;
        }
        .gnav li.gnav-home a,
        .gnav li.gnav-menu a,
        .gnav li.gnav-howto a,
        .gnav li.gnav-company a {
          border-right: 1px solid #fff;
        }

  /* 区切り
  --------------------------- */
  hr.line {
    border: none;
    border-bottom: 2px solid #ddd;
    clear: both;
    margin-bottom: 40px;
    padding: 10px 0 0 0;
  }
  hr.line-weight {
    border: 3px solid #5bb430;
    margin: 30px 0 50px 0;
  }
  hr.dotline {
    border: none;
    border-bottom: 2px dotted #bfb5ac;
    clear: both;
    margin-bottom: 40px;
    padding: 20px 0 0 0;
  }
  hr.space {
    border: none;
    padding: 30px;
  }

  /* footer
  --------------------------- */
  .footer-wrapper {
    background: #5bb431 url(../img/base/footer_bg.png) repeat-x top;
    clear: both;
    min-height: 500px;
    padding-top: 30px;
    position: relative;
    width: 100%;
  }
    footer {
      margin: 0 auto;
      padding: 10px 0;
      width: 860px;
    }
    footer .footer-address {
      /* background: rgba(255, 255, 255, .3); */
      /* border-radius: 7px; */
      float: left;
      /* padding: 20px; */
      width: 550px;
    }
      footer .copyright {
        padding-top: 20px;
        font-size: .7em;
      }
    footer nav {
      float: right;
      width: 250px;
    }
    footer nav li {
      clear: both;
      margin-bottom: 0;
    }
    footer nav li a {
      color: #fff;
      font-size: .9em;
      text-decoration: none;
    }
    footer nav li a:hover {
      color: #eb6000;
    }
    .footer-tel {
      float: right;
      width: 600px;
    }
      .footer-tel img {
        width: 100%;
      }


  /* 各種ボタン
  --------------------------- */
  a.btn {
    border-radius: 20px;
    background: #666;
    color: #fff;
    font-size: .9em;
    padding: 5px 10px;
    text-decoration: none;
  }
  a.btn:hover {
    background: #333;
  }
  img.btn-img:hover {
    opacity: .8;
  }

  /* テーブル
  --------------------------- */
  table, th, td {
      color: #333;
  }
  table.table {
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    margin-bottom: 20px;
    width: 100%;
  }
  table.table th,
  table.table td {
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    font-weight: normal;
    padding: 10px;
    text-align: left;
  }
  table.table th {
    width: 35%;
  }   
  table.table td {
    width: 65%;
  }   
  table.table td.td-price {
    text-align: right;
  }
  table.table tr:nth-child(odd) th,
  table.table tr:nth-child(odd) td {
  }
  table.table tr.tit th,
  table.table tr.tit td {
    background: #eaeaea;
    text-align: center;
  }

  /* フォームパーツ
  --------------------------- */
  .err-msg {
    display: none;
    padding: 10px;
    border: 3px solid #cc0000;
    border-radius: 5px;
    text-align: center;
    background: #fae5e5;
  }
  .form-err {
    display: none;
    color: #cc0000;
    font-weight: bold;
  }
  .form-text,
  .form-text2,
  .form-textarea {
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 5px;
  }
  .form-text {
    width: 60%;
  }
  .form-text2 {
    width: 30%;
  }
  .form-textarea {
    height: 150px;
    width: 80%;
  }
  .form-must {
    background: #cc0000;
    border-radius: 3px;
    color: #fff;
    font-size: .8em;
    padding: 4px 6px;
  }
  .form-submit {
    background: rgba(80, 130, 60, 1);
    border: none;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    padding: 10px 25px;
  }
  .form-submit:hover {
    background: rgba(80, 130, 60, .8);
  }
  .privacy {
    background: #fafafa;
    font-size: .8em;
    height: 200px;
    overflow: auto;
    padding: 20px;
  }
  .reload-captcha {
    cursor: pointer;
    text-decoration: underline;
  }

  /* サムネイル
  --------------------------- */
  section ul.thumb {
    clear: both;
    margin-left: -24px;
  }
    section ul.thumb li {
      float: left;
      font-size: .9em;
      margin: 0 0 40px 24px;
      width: 210px;
    }
      section ul.thumb li img {
        border: 5px solid #eee;
        border-radius: 5px;
        width: 100%;
      }
      section ul.thumb li a:hover {
        opacity: .8;
      }

  /* 各種リスト
  --------------------------- */
  dl.list {
    width: 100%;
  }
  dl.list dt,
  dl.list dd {
    border-bottom: 2px dotted #aaa;
    margin: 0 0 15px 0;
    overflow: hidden;
    padding: 0 0 5px 0;
   }
  dl.list dt {
    clear: both;
    float: left;
    width: 15%;
  }
  dl.list dd {
    margin-left: 15%;
    width: 85%;
  }

  /* お知らせ
  --------------------------- */
  .news {
  }
  .news dl {
    margin-bottom: 20px;
  }
  .news dt {
    float: left;
    font-size: .7em;
  }
  .news dd {
    border-bottom: 2px dotted #ddd;
    margin-bottom: 10px;
    padding: 0 0 10px 100px;
  }

  /* mainvisual
  --------------------------- */
  .mainvisual {
    margin-bottom: 20px;
    overflow: hidden;
    width: 860px;
  }
  .mainvisual h2,
  .mainvisual h2 img {
    width: 100%;
  }

  /* テキスト・写真
  --------------------------- */
  .photo-left {
    float: left;
    width: 250px;
  }
  .photo-right {
    float: right;
    width: 250px;      
  }
  .photo-left img,
  .photo-right img {
    width: 100%;
  }
  .text-left {
    float: left;
    width: 420px;
  }
  .text-right {
    float: right;
    width: 420px;
  }
  .photo {
    overflow: hidden;
  }
  .photo a:hover {
    opacity: .8;
  }
  .photo-full {
    width: 100%;
  }

