@charset "utf-8";
/* CSS Document */
/* -- ページ内リンク位置調整 -- */
/*
#01, #02, #03, #04, #05, #05_01, #06, #07, #08, #09 {
  padding-top: 200px;
  margin-top:-200px;
}

#01_01, #05_01 {
  padding-top: 120px;
  margin-top:-120px;
}
*/

html {
  scroll-padding-top: 280px;
}

.farmers p {
    font-size: 1.1em;
}
/* -- リンクカード -- */
.link_card {
    position: relative;
    overflow: hidden;
    margin: 0 0 20px;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border-top: 5px solid #d0a500;
    color: #333;
    text-align: center;
    font-size: 1em;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.link_card *, .link_card *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}
.link_card .card_body {
    min-height: 180px;
}
.link_card figcaption {
    padding: 8% 8% 8%;
}
.link_card i {
    font-size: 36px;
    color: #fff;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    padding: 0;
    margin: 0 0 10px;
    text-align: center;
    display: inline-block;
}
.bg_pdf {
    background-color: #b20d00;
}
.bg_excel {
    background-color: #116634;
}
.bg_word {
    background-color: #1f306f;
}
.link_card h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 20px;
}
.link_card p {
    font-size: 1.1em;
    margin: 0 0 20px;
}
.link_card .button {
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.link_card .button:before {
    background-color: #d0a500;
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    z-index: -1;
    opacity: 0;
    border-radius: 25px;
}
.link_card .button:hover {
    color: #fff;
}
.link_card .button:hover:before {
    top: 0;
    opacity: 1;
}
/* -- リストデザイン -- */
.farmers_docs ul {
    border: solid 1px #d0a500;
    padding: 0 0.5em;
    position: relative;
}
.farmers_docs ul li {
    line-height: 1.5;
    padding: 1em 0 1em 1.4em;
    border-bottom: dashed 1px #ccc;
    list-style-type: none !important;
    font-
}
.farmers_docs ul li:before {
    font-family: "FontAwesome";
    content: "\f138";
    position: absolute;
    left: 0.5em;
    color: #d0a500;
}
.farmers_docs ul li:last-of-type {
    border-bottom: none;
}
.farmers_docs li span {
    margin-left: 1em;
    padding: .5em 1em;
}