@charset "UTF-8";
/*--------------------------------------------
    基礎設計
---------------------------------------------*/
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0 !important;
}

body {
    font-size: medium;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 480px) {
    p{
        font-size: small;
    }
}

img {
    max-width: 100%;
    height: auto;
}

form {
    -webkit-appearance: none;
    border-radius: 0;
}
/* Reset input[type="search"] */
input[type="search"], input[type="submit"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
}

input[type="search"]:focus {
    outline-offset: -2px;
}

input[type="search"]::-webkit-search-decoration {
    display: none;
}

label {
    clear: both;
    font-size: small;
}

/*コンテンツ*/
.wrap {
    width: 980px;
    margin: 0 auto;
}
section {
    margin: 0;
}
.sub_cont {
    padding: 45px 0;
}
@media screen and (max-width: 1024px) {
    .wrap {
        width: 95%;
    }
}

.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (min-width: 481px) and (max-width: 980px) {
    .pc {
        display: block;
    }
}
@media screen and (max-width: 480px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/*br*/
@media screen and (max-width: 480px) {
    br.pc_br{
        display: none;
    }
}

/*ログイン・ログアウトボタン*/
.login {
    font-size: small;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
}
.login a {
    color: #FFF;
    text-align: center;
    display: block;
    padding: 4px;
    background: #EE8500;
}
/*ログアウト*/
.logOut {
    padding: 1rem 0;
    background: #F7F6F8;
}
.logOut .login{
    display: flex;
    justify-content: end;
}
.logOut .login a {
    display: inline-block;
}

/*--------------------------------------------
    ヘッダー
---------------------------------------------*/
header .head_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
header .logo {
    width: 14%;
    line-height: 1.5;
}
header .logo a{
    display: flex;
    align-items: center;
}
header .sp_menu_btn {
    display: none;
}

/*.peke {
    display: none;
}*/

header .drawr{
    width: 60%;
}
header #menu {
    height: 80px;
    display: flex;
    justify-content: center;
}

header #menu li {
    font-size: small;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

header #menu li a {
    color: #4F2A1A;
    width: 100%;
    display: flex;
    line-height: 1.4;
    height: 100%;
    align-items: center;
    padding: 0 4px;
}

header #menu li a:hover {
    background: #F8CC3F;
}
header .headbtn{
    width: 23%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .headbtn .search {
    width: 58%;
}

header .headbtn .search form input[type="search"] {
    width: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: 2px solid #4F2A1A;
    padding: .3rem;
}

header .headbtn .search form.search input[type="submit"],header .headbtn .search form button[type="submit"] {
    border: 0;
    background-color: #4F2A1A;
    padding: 5px;
    color: #fff;
}
header .search_inner{
    display: flex;
}

header .headbtn .login {
    width: 35%;
}
@media screen and (max-width: 980px) {
    header .head_wrap{
        padding: 1rem 0;
    }
    header .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: .5rem;
    }
    header .headbtn .login {
        width:38%;
    }
    header .logo .sp_menu_btn {
        display: block;
        cursor: pointer;
        z-index: 300;
        color: #775D36;
        border: 2px solid;
        padding: 2px 5px;
    }
    header .drawr {
        display: none;
        background-color: rgba(202, 187, 150, 0.95);
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 200;
        padding-top: 2.5rem;
    }
    header #menu{
        display: block;
        height: auto;
    }
    header #menu li {
        font-size: medium;
        border-bottom: 1px solid #4E1915;
        padding: 0 1rem;
    }
    header #menu li a {
        padding: .5rem 0;
    }
    header .headbtn{
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    header form input[type="search"] {
        width: 85%;
    }
    form.search label {
        float: left;
        width: 84%;
        height: 100%;
    }
}

/* 援農隊員募集中 */
header .taking {
    background: #775D36;
    padding: .5rem 0;
}
header .taking ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .taking li:nth-child(1) {
    color: #FFF;
    width: 60%;
}

header .taking li:nth-child(1) p {
    font-size: x-large;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #FFF;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
}

header .taking li:nth-child(1) span {
    font-size: small;
    width: 70%;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: justify;
}

header .taking li:nth-child(2) {
    width: 40%;
    display: flex;
    justify-content: space-between;
}
header .taking li:nth-child(2) .taking_btn{
    width: 49%;
    position: relative;
}
header .taking li:nth-child(2) .taking_btn a {
    color: #4F2A1A;
    font-size: small;display: flex;
  justify-content: center;
    background: #FFF;
    padding: 8px;
}

header .taking li:nth-child(2) .taking_btn i {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent #775d36 transparent;
    position: absolute;
    right: 5px;
    bottom: 5px;
}

@media screen and (max-width: 980px) {
    header .taking ul{
        display: block;
    }
    header .taking li:nth-child(1) {
        width: 100%;
        margin-bottom: .3rem;
    }
    header .taking li:nth-child(1) p {
        border-right: none;
        border-bottom: 1px solid #FFF;
        padding-right: 0;
        margin-right: 0;
        font-size: large;
    padding-bottom: .1rem;
    margin-bottom: .1rem;
    }
    header .taking li:nth-child(1) span {
        width: 100%;
        margin-bottom: 5px;
        display: block;
    }
    header .taking li:nth-child(2) {
        width: 100%;
    }
    header .taking li:nth-child(2) .taking_btn a {
        padding:5px;
    }
}

/*--------------------------------------------
    フッター　
---------------------------------------------*/
footer .f_menu {
    color: #FFF;
    width: 100%;
    background: #3F4344;
    padding: 2rem 0;
}

footer .f_menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .f_menu li:nth-child(1) {
    width: 15%;
}

footer .f_menu li:nth-child(2) {
    width: 32%;
    border-right: 1px solid #FFF;
    word-break: break-all;
}
footer .f_menu li:nth-child(2) p{
    font-size: x-small;
}
footer .f_menu li:nth-child(2) p span {
    font-size: small;
}

footer .f_menu li:nth-child(3) {
    width: 45%;
    line-height: 1.2;
}

footer .f_menu li:nth-child(3) a {
    color: #FFF;
    font-size: small;
    display: inline-block;
    padding-right: 8px;
    margin-right: 6px;
    border-right: 1px solid #FFF;
    line-height: 1;
}

footer .f_menu .copyright {
    font-size: x-small;
    text-align: right;
    margin-top: 15px;
}
@media screen and (max-width: 980px) {
    footer .f_menu{
        padding: 1.2rem 0;
    }
    footer .f_menu li:nth-child(1),footer .f_menu li:nth-child(2),footer .f_menu li:nth-child(3){
        width: 100%;
    }
    footer .f_menu li:nth-child(2) {
        border-right: none;
        margin-bottom: 15px;
    }
    footer .f_menu li:nth-child(3) a {
        padding-right: 6px;
        margin-right: 3px;
    }
}