@charset "UTF-8";
@font-face {
  font-family: 'futura';
  src: url("../fonts/Futura Bold font.ttf") format("opentype"); }

/**
* Table of Contntens:
*
*  1.0 - リセット
*  2.0 - 基本構造
*  3.0 - ヘッダー
*  4.0 - ページ共通
*  5.0 - Home
*  6.0 - 下層ページ
*   6.1 - About
*   6.2 - Business
*   6.3 - Farming
*   6.4 - Distribute
*   6.5 - Recruit
*   6.6 - Contact
*  7.0 - フッター
* -----------------------------------------------------------------------------
*/
/**
* 1.0 - リセット
* -----------------------------------------------------------------------------
*/
@media screen and (max-width: 1100px) {
  html {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; } }

svg {
  display: none; }

body {
  margin: 0;
  color: #000; }

/* img */
img {
  vertical-align: bottom;
  border: none; }

/* iframe */
iframe {
  vertical-align: bottom; }

/* list */
ul {
  list-style: none;
  margin: 0;
  padding: 0; }

/* table */
table {
  border-collapse: collapse;
  width: 100%; }

/* link */
a {
  text-decoration: none;
  color: inherit; }
  a:hover {
    text-decoration: none;
    color: inherit; }

a:link {
  text-decoration: none; }

a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none !important; }

a:active {
  text-decoration: none; }

.opa {
  transition: opacity .1s linear; }
  .opa:hover {
    opacity: .8; }

/* typography */
h1,
h2,
h3 {
  margin: 0;
  font-weight: normal; }

body {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif; }

.mincho {
  font-family: "Hannari", serif; }

.cardo {
  font-family: cardo, serif;
  font-style: italic; }

.meiryo {
  font-family: Meiryo; }

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

.right {
  text-align: right; }

/**
* 2.0 - 基本構造
* -----------------------------------------------------------------------------
*/
.inner {
  width: 1140px;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto; }

.w950 {
  width: 1010px; }

/**
* 3.0 - ヘッダー
* -----------------------------------------------------------------------------
*/
header {
  padding: 24px 3% 40px 3%;
  width: 100%;
  box-sizing: border-box; }

.header_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%; }
  .header_wrap h1 img {
    width: 132px; }

.header_sub {
  position: fixed;
  top: -114px;
  padding-top: 0px;
  padding-bottom: 10px;
  background-color: #fff;
  z-index: 2;
  transition: top .6s linear; }
  .header_sub h1 img {
    width: 100px;
    margin-top: -10px;
    transform: translateY(-8px); }

.header_sub.fixed {
  top: 0; }

.header_contact_area {
  display: flex;
  justify-content: flex-end; }
  .header_contact_area img {
    vertical-align: top;
    transition: .2s all;
    width: 150px;
    border: 1px solid #808080; }
    .header_contact_area img:last-child {
      margin-left: 5px; }
    .header_contact_area img:hover {
      opacity: .7; }

.nav_main {
  height: 100%;
  margin-bottom: 3rem; }
  .nav_main ul {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
    .nav_main ul li {
      display: inline; }
      .nav_main ul li a {
        font-size: 15px;
        margin: 0 17px;
        letter-spacing: 1.5px;
        position: relative;
        display: inline-block; }
        .nav_main ul li a:hover {
          text-decoration: underline; }
          .nav_main ul li a:hover:after {
            width: 100%; }
        .nav_main ul li a:after {
          background-color: #008045;
          bottom: -5;
          content: '';
          display: block;
          height: 1px;
          position: absolute;
          transition: .5s all;
          width: 0;
          left: 50%;
          transform: translateX(-50%); }

.btn_scroll {
  position: fixed;
  right: 20px;
  bottom: 5%;
  z-index: 1; }
  .btn_scroll img {
    width: 13px; }
  .btn_scroll:before {
    content: "";
    position: absolute;
    left: 3px;
    margin-left: auto;
    margin-right: auto;
    background-image: url("../images/common/line_btn_scroll.svg");
    width: 1px;
    height: 230px;
    -webkit-animation: bo001 2s cubic-bezier(0.6, 0, 0.6, 1) infinite;
            animation: bo001 2s cubic-bezier(0.6, 0, 0.6, 1) infinite;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    margin-bottom: 50px; }

@-webkit-keyframes bo001 {
  0% {
    bottom: 280px;
    height: 0; }
  50% {
    bottom: 0;
    height: 230px; }
  51% {
    bottom: 0;
    height: 230px; }
  100% {
    height: 0;
    bottom: 0; } }

@keyframes bo001 {
  0% {
    bottom: 280px;
    height: 0; }
  50% {
    bottom: 0;
    height: 230px; }
  51% {
    bottom: 0;
    height: 230px; }
  100% {
    height: 0;
    bottom: 0; } }

.btn_totop {
  position: fixed;
  left: 20px;
  bottom: 5%;
  z-index: 1;
  display: none; }
  .btn_totop img {
    width: 14px; }

.btn_contact {
  position: fixed;
  z-index: 1;
  left: 40px;
  bottom: 20px; }
  .btn_contact img {
    width: 151px; }

/**
* 4.0 - ページ共通
* -----------------------------------------------------------------------------
*/
.catch {
  font-size: 25px;
  position: relative;
  margin-bottom: 40px; }
  .catch:after {
    content: "";
    display: block;
    position: absolute;
    height: 3px;
    width: 53px;
    bottom: -14px;
    left: 0;
    background-image: url("../images/common/border_catch.png");
    background-repeat: no-repeat;
    background-size: contain; }

/* お問い合わせ */
.sec_contact_title {
  background-image: url("../images/common/bg_sec_contact.jpg");
  padding: 20px 65px 20px 35px;
  display: flex;
  justify-content: space-between; }
  .sec_contact_title .sec_contact_title_l {
    color: #fff;
    font-size: 14px; }
    .sec_contact_title .sec_contact_title_l img {
      width: 272px;
      margin-bottom: 10px; }
  .sec_contact_title .sec_contact_title_r {
    font-family: futura std;
    letter-spacing: .05em;
    color: #fff;
    font-size: 48px;
    position: relative; }
    .sec_contact_title .sec_contact_title_r:before {
      content: "";
      position: absolute;
      width: 32px;
      height: 32px;
      background-image: url("../images/common/icon_tel.svg");
      background-size: cover;
      left: -40px;
      top: 50%;
      transform: translateY(-50%); }

.sec_contact_link {
  position: relative;
  overflow: hidden; }
  .sec_contact_link img {
    transition: all .8s ease; }
  .sec_contact_link:hover img {
    transform: scale(1.03); }
  .sec_contact_link:hover a {
    opacity: 1; }
  .sec_contact_link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all .7s ease; }
    .sec_contact_link a span {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      border: 1px solid #fff;
      font-size: 20px;
      width: 234px;
      color: #fff;
      text-align: center;
      padding: 6px 0; }

/* button */
.btn {
  margin-top: 80px; }
  .btn a {
    font-size: 17px;
    border: 1px solid #808080;
    padding: 15px 125px 15px 15px;
    position: relative;
    display: inline-block; }
    .btn a span {
      position: relative;
      z-index: 1;
      transition: 0.5s cubic-bezier(0.7, 0.13, 0.1, 0.92) 0.2s; }
    .btn a:before {
      width: 0;
      height: 100%;
      position: absolute;
      background-color: #a15730;
      transition: 0.5s cubic-bezier(0.7, 0.13, 0.1, 0.92) 0.2s;
      content: "";
      top: 0;
      left: 0; }
    .btn a:after {
      content: "";
      width: 92px;
      height: 2px;
      background-image: url("../images/common/line_btn.png");
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      right: -45px;
      top: 50%;
      transform: translateY(-50%);
      transition: 0.5s cubic-bezier(0.7, 0.13, 0.1, 0.92) 0.2s; }
    .btn a:hover span {
      color: #fff; }
    .btn a:hover:before {
      width: 100%; }
    .btn a:hover:after {
      width: 0; }

.btn.right {
  margin-right: 45px; }

/**
* 5.0 - Home
* -----------------------------------------------------------------------------
*/
.loading_wrap {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100; }

.loading {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.fade_loading {
  height: 100%;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6; }

.home .main_visual img {
  width: 100%; }

.home .main_visual .inner {
  position: relative; }

.home .main_visual .btn_audio {
  position: absolute;
  top: 10px;
  right: 50px;
  width: 32px;
  height: 17px;
  background-image: url("../images/home/btn_audio_on.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-color: transparent;
  outline: none; }

.home_catch {
  margin-top: 100px; }
  .home_catch .catch_lg {
    font-size: 45px;
    position: relative; }
    .home_catch .catch_lg:after {
      content: "";
      position: absolute;
      bottom: -5px;
      width: 274px;
      height: 1px;
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      background-color: #229573; }
  .home_catch .catch_en {
    color: #229573;
    margin-top: 15px; }
  .home_catch p {
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1px;
    margin-top: 35px; }

.home_sec p {
  font-size: 14px;
  line-height: 2; }

.home_about {
  margin-top: 165px; }
  .home_about .inner {
    display: flex; }
    .home_about .inner .home_about_l {
      width: 557px;
      padding-right: 30px;
      box-sizing: border-box; }
      .home_about .inner .home_about_l .home_about_btn {
        margin-left: 60px; }
    .home_about .inner .home_about_r {
      width: 523px;
      position: relative;
      top: 0px; }
      .home_about .inner .home_about_r img {
        width: 100%; }
      .home_about .inner .home_about_r .img_home_about2 {
        position: absolute;
        width: 387px;
        bottom: -150px;
        left: -190px;
        z-index: 1; }
      .home_about .inner .home_about_r .bg_home_about1 {
        position: absolute;
        width: 191px;
        right: -30px;
        top: -100px;
        z-index: -1; }

.home_about_bottom {
  background-image: url("../images/home/bg_home_about_bottom.jpg");
  background-size: cover;
  background-position: center;
  height: 230px;
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: -1; }

.home_business .inner {
  display: flex;
  margin-bottom: 200px; }
  .home_business .inner .home_business_l {
    width: 468px;
    position: relative; }
    .home_business .inner .home_business_l img {
      width: 518px;
      transform: translate(-50px, -50px);
      max-width: inherit;
      margin-left: -50px; }
    .home_business .inner .home_business_l .bg_home_business1 {
      position: absolute;
      width: 191px;
      left: 50px;
      top: -130px;
      z-index: -1;
      transform: none; }
    .home_business .inner .home_business_l .img_home_business2 {
      width: 351px;
      position: absolute;
      bottom: -70px;
      right: -40px;
      transform: none;
      margin-left: 0; }
  .home_business .inner .home_business_r {
    width: 612px;
    padding-left: 60px;
    box-sizing: border-box;
    padding-top: 100px;
    position: relative; }
    .home_business .inner .home_business_r .clipart1 {
      position: absolute;
      top: -46px;
      right: -80px;
      width: 159px; }
    @media screen and (max-width: 1100px) {
      .home_business .inner .home_business_r .clipart1 {
        right: 0px; } }
.home_farming_distribute_top {
  width: 100%;
  height: 185px;
  background-color: rgba(186, 159, 101, 0.5);
  position: relative;
  margin-top: -70px; }

.home_farming_distribute .inner {
  margin-top: -100px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1; }
  .home_farming_distribute .inner > div {
    width: 510px; }
    .home_farming_distribute .inner > div .thum {
      position: relative;
      overflow: hidden; }
      .home_farming_distribute .inner > div .thum a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-align: center;
        transition: all .8s ease; }
        .home_farming_distribute .inner > div .thum a span {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0;
          right: 0;
          margin-left: auto;
          margin-right: auto;
          font-size: 22px; }
          .home_farming_distribute .inner > div .thum a span:after {
            position: absolute;
            bottom: -10px;
            width: 252px;
            height: 1px;
            background-color: #fff;
            content: "";
            left: 0;
            right: 0;
            margin-left: auto;
            margin-right: auto; }
      .home_farming_distribute .inner > div .thum:hover a {
        opacity: 1; }
      .home_farming_distribute .inner > div .thum:hover img {
        transform: scale(1.05); }
    .home_farming_distribute .inner > div img {
      width: 100%;
      transition: all .7s ease; }
    .home_farming_distribute .inner > div .catch {
      margin-top: 40px;
      font-size: 24px; }
      .home_farming_distribute .inner > div .catch:before {
        content: "";
        height: 82px;
        width: 1px;
        left: 30px;
        top: -82px;
        position: absolute;
        background: -ms-linear-gradient(-90deg, #008045 0%, rgba(0, 0, 0, 0.2) 100%);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#008045', endColorstr='#000000' ,GradientType=0)";
        background: linear-gradient(180deg, #008045 0%, rgba(0, 0, 0, 0.2) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008045', endColorstr='#000000', GradientType=0); }
  .home_farming_distribute .inner .home_distribute {
    position: relative; }
    .home_farming_distribute .inner .home_distribute .clipart2 {
      position: absolute;
      left: -30px;
      top: -170px;
      width: 130px; }

.home_recruit {
  margin-top: 130px; }
  .home_recruit > .inner {
    display: flex; }
    .home_recruit > .inner .home_recruit_l {
      width: 534px;
      padding-right: 30px;
      box-sizing: border-box; }
      .home_recruit > .inner .home_recruit_l .home_recruit_btn {
        margin-left: 120px; }
    .home_recruit > .inner .home_recruit_r {
      width: 546px; }
      .home_recruit > .inner .home_recruit_r img {
        width: 100%;
        position: relative;
        top: -200px; }

.home_recruit_title {
  background-image: url("../images/home/bg_home_recruit_title.jpg");
  background-position: center;
  background-size: cover;
  margin-bottom: 40px; }
  .home_recruit_title .inner {
    position: relative; }
    .home_recruit_title .inner .clipart3 {
      position: absolute;
      top: -100px;
      right: 0;
      width: 241px; }
  .home_recruit_title .title {
    padding: 80px 0 72px 0; }
    .home_recruit_title .title img {
      width: 140px; }

/*　＝＝＝＝＝
　movieエリア　
＝＝＝＝＝＝＝ */
.home_company_movie__wrap {
  display: flex;
  justify-content: space-between;
  width: 1140px;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto; }

.home_company_movie {
  margin: 90px 0 -30px;
  text-align: center;
  width: 48%; }
  .home_company_movie .text {
    display: block;
    position: relative; }
  .home_company_movie .home_company_movie_btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 71.98px; }
    .home_company_movie .home_company_movie_btn .bnr {
      font-size: 17px;
      border: 1px solid #808080;
      position: relative;
      display: inline-block;
      background-color: #43b988;
      padding: 0px 0px 0px 0px; }
      .home_company_movie .home_company_movie_btn .bnr .image {
        width: 100%;
        height: auto;
        vertical-align: middle;
        position: relative;
        z-index: 2; }

.home_company_movie_img {
  width: 100%;
  height: auto; }

.home_youtube {
  margin: 90px 0;
  width: 48%;
  text-align: center; }
  .home_youtube .text {
    display: block;
    position: relative; }
  .home_youtube .home_youtube_btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    height: 71.98px; }
    .home_youtube .home_youtube_btn .bnr {
      border: 1px solid #808080;
      position: relative;
      height: 71.98px;
      width: 100%;
      display: block;
      box-sizing: border-box; }
      .home_youtube .home_youtube_btn .bnr .image {
        margin: 0 auto;
        width: 33.3333333334%;
        height: auto;
        vertical-align: middle;
        position: absolute;
        z-index: 2;
        top: 16px;
        left: 50%;
        transform: translateX(-50%); }
  .home_youtube iframe {
    width: 100%;
    aspect-ratio: 500 / 315; }

/**
* 6.0 - 下層ページ
* -----------------------------------------------------------------------------
*/
.page .main_visual {
  background-size: cover;
  background-position: center;
  margin-top: 105px; }
  .page .main_visual .inner {
    transform: translateY(-87px); }

.page h3 {
  font-size: 27px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px; }
  .page h3 span {
    display: inline-block;
    position: relative;
    letter-spacing: 2px; }
    .page h3 span:before, .page h3 span:after {
      content: "";
      width: 124px;
      height: 1px;
      background-color: #ba9f65;
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
    .page h3 span:before {
      left: -140px; }
    .page h3 span:after {
      right: -140px; }

.page .sec_page {
  padding: 100px 0 60px 0; }
  .page .sec_page p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px; }

.page .sec_contact {
  margin-top: 80px; }

.page_title {
  background-color: #43b988;
  width: 600px;
  margin: -100px auto 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 35px 109px;
  box-sizing: border-box;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2); }
  .page_title h2 {
    font-size: 40px;
    color: #fff;
    border-bottom: 2px solid #008045;
    margin-bottom: 20px;
    padding-bottom: 10px; }
  .page_title .tit_space {
    font-size: 35px;
    letter-spacing: 2px; }
  .page_title .tit_space2 {
    font-size: 35px;
    letter-spacing: 4px; }
  .page_title .en {
    font-size: 17px;
    display: block;
    color: #fff;
    letter-spacing: 1px; }

.nav_page {
  margin-top: -50px; }
  .nav_page ul {
    text-align: center; }
    .nav_page ul li {
      display: inline;
      margin: 0 40px; }
      .nav_page ul li a {
        font-size: 14px;
        position: relative;
        display: inline-block; }
        .nav_page ul li a:before {
          content: "";
          width: 9px;
          height: 7px;
          background-image: url("../images/common/icon_arrow1.png");
          background-repeat: no-repeat;
          background-size: contain;
          position: absolute;
          left: -15px;
          top: 50%;
          transform: translateY(-50%); }
        .nav_page ul li a:after {
          background-color: #008045;
          bottom: -5px;
          content: '';
          display: block;
          height: 1px;
          position: absolute;
          transition: .5s all;
          width: 0;
          left: 50%;
          transform: translateX(-50%); }
        .nav_page ul li a:hover:after {
          width: 100%; }

/**
* 6.1 - About
* -----------------------------------------------------------------------------
*/
.page_about .main_visual {
  background-image: url("../images/about/bg_main_visual.jpg"); }

.page_about .work {
  background-color: rgba(57, 151, 74, 0.2);
  padding: 65px 0; }
  .page_about .work .catch {
    font-size: 23px;
    color: #006837; }
  .page_about .work p {
    font-size: 14px;
    line-height: 2; }
  .page_about .work .img_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between; }
    .page_about .work .img_wrap > div {
      width: 464px; }
  .page_about .work .inner {
    position: relative; }
  .page_about .work .clipart1 {
    position: absolute;
    top: -140px;
    right: 20px;
    width: 169px; }

.page_about #group p {
  font-size: 14px;
  width: 768px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px; }

.greeting_content {
  display: flex; }

.greeting_content_l {
  width: 374px; }
  .greeting_content_l .right {
    margin-top: 10px;
    font-weight: 600; }
    .greeting_content_l .right .sm {
      font-size: 13px;
      margin-right: 10px; }
  .greeting_content_l .profile {
    margin-top: 20px;
    background-image: url("../images/about/bg_profile.jpg");
    padding: 20px 25px; }
    .greeting_content_l .profile p {
      font-size: 12px;
      line-height: 2; }

.greeting_content_r {
  width: 576px;
  padding-left: 50px;
  box-sizing: border-box; }

#profile {
  border-bottom: 6px solid #229773;
  padding-bottom: 150px; }
  #profile .inner {
    position: relative; }
    #profile .inner .clipart2 {
      width: 162px;
      right: 0;
      bottom: -50px;
      position: absolute; }

.map {
  border-bottom: 6px solid #229773; }

.profile_wrap {
  display: flex;
  justify-content: space-between; }
  .profile_wrap > div:first-child {
    width: 400px; }
  .profile_wrap > div:nth-child(2) {
    width: 468px; }
    .profile_wrap > div:nth-child(2) h4 {
      display: inline-block;
      background-color: #c8c8c8;
      padding: 5px 10px;
      font-size: 15px;
      font-weight: 600; }
  .profile_wrap table tr:not(:last-child) {
    border-bottom: 1px solid #aeaeae; }
  .profile_wrap table tr th,
  .profile_wrap table tr td {
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 2; }
  .profile_wrap table tr th {
    font-weight: 600;
    text-align: left;
    padding-right: 50px;
    vertical-align: top; }
  .profile_wrap table tr td a {
    color: blue; }

.philosophy_guideline {
  background-image: url("../images/about/bg_philosophy_guideline.jpg");
  padding-top: 50px; }
  .philosophy_guideline h4 {
    text-align: center;
    font-size: 27px;
    margin-bottom: 30px; }
    .philosophy_guideline h4 span {
      border-bottom: 1px solid #ba9f65;
      padding-bottom: 5px; }
  .philosophy_guideline p {
    font-size: 20px !important;
    line-height: 2;
    margin-bottom: 70px; }
  .philosophy_guideline .guideline {
    text-align: center;
    margin-bottom: 45px; }
    .philosophy_guideline .guideline ul {
      display: inline-block;
      text-align: left; }
      .philosophy_guideline .guideline ul li {
        font-size: 20px;
        margin-bottom: 20px; }

.philosophy_guideline_bottom {
  height: 329px;
  width: 100%;
  background-size: cover;
  background-image: url("../images/about/bg_philophy_guideline_bottom.jpg"); }

.group_profile {
  background-color: rgba(186, 159, 101, 0.1);
  padding-top: 60px !important; }
  .group_profile .inner {
    position: relative; }
    .group_profile .inner .clipart3 {
      position: absolute;
      top: -116px;
      left: -72px;
      width: 162px; }
  .group_profile h3 {
    text-align: center;
    margin-bottom: 25px; }
    .group_profile h3 span {
      font-size: 19px;
      background-color: #fff;
      border-radius: 30px;
      display: inline-block;
      border: 1px solid #d4d4d4;
      padding: 5px 40px;
      font-weight: 600; }
      .group_profile h3 span:before, .group_profile h3 span:after {
        display: none; }
  .group_profile p {
    width: 788px;
    margin-left: auto;
    margin-right: auto; }
  .group_profile .haccp {
    width: 200px;
    display: block;
    margin: 0 auto 70px auto; }

.group_profile_content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px; }

.group_box {
  width: 303px; }
  .group_box h5 {
    background-color: #39974a;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
    padding: 7px 0;
    font-size: 17px; }
  .group_box .thum img {
    width: 100%; }
  .group_box .contents {
    background-color: #fff;
    padding: 20px 12px; }
    .group_box .contents ul li {
      font-size: 14px;
      margin-bottom: 8px;
      padding-bottom: 5px; }
      .group_box .contents ul li:not(:last-child) {
        border-bottom: 0.5px solid #acacac; }

/**
* 6.2 - Business
* -----------------------------------------------------------------------------
*/
.page_business .main_visual {
  background-image: url("../images/business/bg_main_visual.jpg"); }

.page_business #aim h3 + p {
  width: 788px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px; }

.page_business #aim h4 {
  font-size: 22px;
  font-weight: 600;
  color: #a15730;
  text-align: center;
  margin-bottom: 50px; }
  .page_business #aim h4 span {
    display: inline-block;
    border-radius: 40px;
    border: 1px solid #a15730;
    padding: 9px 45px; }

.page_business .data h4 {
  font-size: 21px !important;
  position: relative;
  font-weight: 400 !important;
  color: #000 !important;
  margin-bottom: 60px !important; }
  .page_business .data h4:after {
    content: "";
    height: 1px;
    width: 124px;
    background-color: #ba9f65;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto; }

.page_business .data .data_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px; }

.page_business .data .data_box {
  width: 303px; }
  .page_business .data .data_box img {
    width: 100%; }
  .page_business .data .data_box h5 {
    font-size: 15px;
    font-weight: 600; }

.page_business .survey h4 {
  font-size: 16px !important;
  font-weight: 600;
  color: #000 !important;
  text-align: left !important;
  margin-bottom: 0px !important; }

.page_business .survey p {
  margin-top: 5px; }

.page_business #promotion {
  padding-bottom: 0; }
  .page_business #promotion h3 {
    margin-bottom: 100px; }
  .page_business #promotion .thums {
    justify-content: space-between;
    display: flex;
    margin-top: -20px;
    margin-bottom: 50px; }
    .page_business #promotion .thums > div {
      flex-basis: 32%; }
  .page_business #promotion .caption {
    font-size: 13px;
    margin-top: 10px; }

.page_business #development .inner {
  position: relative; }

.page_business #development h3 + p {
  font-size: 14px;
  width: 788px;
  margin-left: auto;
  margin-right: auto; }

.page_business #development .clipart1 {
  position: absolute;
  width: 136px;
  right: -20px;
  top: -120px; }

.page_business #development .clipart2 {
  position: absolute;
  width: 215px;
  left: -80px;
  bottom: -120px; }

.construct_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px; }
  .construct_content .construct_box {
    margin-bottom: 20px;
    width: 520px; }
    .construct_content .construct_box img {
      width: 100%; }
    .construct_content .construct_box h5 {
      font-weight: 600;
      font-size: 19px;
      margin-top: 20px;
      margin-bottom: 10px; }
    .construct_content .construct_box p {
      font-size: 15px;
      margin-top: 5px; }

.promotion_box {
  display: flex;
  margin-bottom: 50px; }

.promotion_box_l {
  width: 360px; }

.promotion_box_r {
  width: 550px;
  padding-left: 32px; }
  .promotion_box_r h4 {
    background-color: rgba(57, 151, 74, 0.2);
    padding: 10px;
    font-size: 20px;
    font-weight: 600; }
  .promotion_box_r p {
    font-size: 17px !important; }

/**
* 6.3 - Farming
* -----------------------------------------------------------------------------
*/
.page_farming .main_visual {
  background-image: url("../images/farming/bg_main_visual_0530.jpg"); }

.abtou_farming_top {
  background-image: url("../images/farming/bg_abtou_farming_top.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 85px 0 100px 0;
  margin-bottom: 219px; }
  .abtou_farming_top .lg {
    font-size: 22px !important; }
  .abtou_farming_top p {
    font-size: 15px !important;
    line-height: 2.5 !important;
    margin-bottom: 0 !important; }

.farming_box {
  position: relative; }
  .farming_box:not(:last-child) {
    margin-bottom: 172px; }
  .farming_box:first-child .farming_box_image {
    top: -151px; }
  .farming_box:nth-child(2n) .farming_box_text {
    margin-left: 0;
    margin-right: auto; }
  .farming_box:nth-child(2n) .farming_box_image {
    left: auto;
    right: 0px; }

.farming_box_text {
  width: 602px;
  margin-left: auto;
  background-color: rgba(247, 247, 247, 0.85);
  padding: 60px 50px 70px 50px;
  box-sizing: border-box;
  position: relative; }
  .farming_box_text p {
    margin: 0 !important;
    font-size: 15px !important; }
  .farming_box_text .catch {
    font-size: 20px; }
  .farming_box_text .clipart {
    position: absolute; }
  .farming_box_text .clipart1 {
    top: -300px;
    right: 50px;
    width: 271px; }
  .farming_box_text .clipart2 {
    top: -146px;
    left: 0px;
    width: 118px; }
  .farming_box_text .clipart3 {
    top: -146px;
    right: 0px;
    width: 148px; }
  .farming_box_text .clipart4 {
    top: -108px;
    left: -30px;
    width: 84px; }

.farming_box_image {
  position: absolute;
  left: 0px;
  top: -96px;
  z-index: -1;
  width: 550px; }
  .farming_box_image img {
    width: 100%; }

/**
* 6.4 - Distribute
* -----------------------------------------------------------------------------
*/
.page_distribute .main_visual {
  background-image: url("../images/distribute/bg_main_visual.jpg"); }

.distribute_top {
  position: relative;
  overflow: hidden; }

.bg_distribute_top {
  background-image: url("../images/distribute/bg_distribute_top.jpg");
  background-size: cover;
  position: absolute;
  width: calc(100vw - (100vw - 1080px)/2 - 390px);
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
  background-position: center; }

.distribute_top_box {
  display: flex; }
  .distribute_top_box:first-of-type {
    flex-direction: row-reverse; }
    .distribute_top_box:first-of-type .distribute_top_box_text h3 {
      text-align: left; }
      .distribute_top_box:first-of-type .distribute_top_box_text h3 span:before {
        display: none; }
    .distribute_top_box:first-of-type .distribute_top_box_image {
      text-align: right; }
      .distribute_top_box:first-of-type .distribute_top_box_image img {
        width: 160px;
        transform: translateY(-40px); }
  .distribute_top_box:nth-of-type(2) {
    flex-direction: row-reverse; }
    .distribute_top_box:nth-of-type(2) .distribute_top_box_text h3 {
      text-align: left; }
      .distribute_top_box:nth-of-type(2) .distribute_top_box_text h3 span:before {
        display: none; }
    .distribute_top_box:nth-of-type(2) .distribute_top_box_image {
      text-align: left; }
      .distribute_top_box:nth-of-type(2) .distribute_top_box_image img {
        width: 201px;
        transform: translateY(30px); }

.distribute_top_box_text {
  width: 535px; }
  .distribute_top_box_text h3 {
    margin-bottom: 25px;
    margin-top: 30px; }

.distribute_top_box_image {
  width: 292px; }

.distribute_flow {
  padding: 55px 0 40px 0; }
  .distribute_flow h3 {
    font-size: 19px; }
    .distribute_flow h3 span {
      display: inline-block;
      padding: 5px 50px;
      border-radius: 40px;
      background-color: #fff;
      border: 1px solid #d2d2d2; }
      .distribute_flow h3 span:before, .distribute_flow h3 span:after {
        display: none; }

.distribute_flow1 {
  background-color: rgba(159, 87, 48, 0.1);
  margin-bottom: 20px; }

.distribute_flow2 {
  background-color: rgba(0, 128, 69, 0.15); }

.distribute_bottom {
  padding: 130px 0 10px 0; }
  .distribute_bottom .inner {
    display: flex;
    justify-content: space-between; }

.distribute_bottom_text {
  width: 700px;
  padding-right: 40px;
  box-sizing: border-box; }
  .distribute_bottom_text h3 {
    font-size: 21px;
    text-align: left;
    border-left: 7px solid #229573;
    padding-left: 10px;
    margin-bottom: 15px; }
    .distribute_bottom_text h3:not(:first-of-type) {
      margin-top: 120px; }

.distribute_bottom_image {
  width: 370px; }
  .distribute_bottom_image img {
    margin-bottom: 30px; }

.milk_m {
  width: 700px;
  display: block;
  margin: 60px auto 90px auto;
  background-color: #e5fff0;
  border: 1px solid #80a33f; }
  .milk_m .milk_m_img {
    width: 350px;
    display: block;
    margin: 50px auto 30px auto; }
  .milk_m p {
    text-align: center;
    color: #008045;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 35px; }
    .milk_m p a {
      color: #6668ec; }

/**
* 6.5 - Recruit
* -----------------------------------------------------------------------------
*/
.page_recruit .main_visual {
  background-image: url("../images/recruit/bg_main_visual.jpg"); }

.message_wrap {
  margin-top: 65px; }

.message_box {
  display: flex;
  justify-content: space-between; }
  .message_box:nth-child(2) {
    flex-direction: row-reverse;
    margin-top: 90px; }
    .message_box:nth-child(2) .intro {
      background-color: rgba(159, 87, 48, 0.05); }

.message_box_text {
  width: 685px; }
  .message_box_text .intro {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 30px 34px 23px 34px;
    margin-bottom: 30px; }
    .message_box_text .intro .intro_head {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px; }
    .message_box_text .intro .company_name {
      font-size: 19px;
      font-weight: 600; }
      .message_box_text .intro .company_name span {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block; }
    .message_box_text .intro .name {
      font-size: 36px;
      text-align: right;
      position: relative; }
      .message_box_text .intro .name .sm {
        font-size: 16px;
        position: absolute;
        left: -100px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block; }
    .message_box_text .intro .profile p {
      font-size: 13px;
      margin-bottom: 0; }
  .message_box_text .message_contents .lg {
    font-size: 19px;
    font-weight: 600; }
  .message_box_text .message_contents p {
    font-size: 16px; }

.message_box_image {
  width: 360px;
  position: relative; }
  .message_box_image .clipart {
    position: absolute; }
  .message_box_image .clipart1 {
    width: 168px;
    right: 0px;
    bottom: -20px; }
  .message_box_image .clipart2 {
    width: 153px;
    bottom: -30px;
    left: -30px; }

.recruit_message {
  background-color: #f2ece8;
  padding-top: 110px;
  padding-bottom: 120px; }
  .recruit_message h2 {
    text-align: center;
    margin-bottom: 70px; }
    .recruit_message h2 span:before, .recruit_message h2 span:after {
      content: "";
      width: 120px;
      height: 1px;
      background-color: #cec6c0;
      display: inline-block;
      vertical-align: middle;
      margin: 0 20px; }
    .recruit_message h2 + p {
      font-size: 14px;
      line-height: 2.4;
      margin-bottom: 69px; }
  .recruit_message .box {
    background-color: #fff;
    padding: 67px 80px; }
    .recruit_message .box p {
      line-height: 2; }
    .recruit_message .box .flex {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px; }
      .recruit_message .box .flex .image {
        flex-basis: 57.1%; }
      .recruit_message .box .flex .text {
        flex-basis: 38.2%; }
        .recruit_message .box .flex .text .name {
          font-size: 34px; }
        .recruit_message .box .flex .text p {
          margin-top: 30px; }
    .recruit_message .box .bold {
      font-weight: bold;
      font-size: 19px; }
    .recruit_message .box:not(:last-of-type) {
      margin-bottom: 30px; }

.recruit_summary_title {
  background-image: url("../images/recruit/bg_recruit_summary_title.jpg");
  background-size: cover;
  background-position: center;
  padding: 74px 0;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 70px; }
  .recruit_summary_title h2 {
    color: #fff !important;
    letter-spacing: 1px; }

.fresher,
.career {
  margin-bottom: 100px; }
  .fresher h3,
  .career h3 {
    margin-bottom: 50px; }
  .fresher h3 + .center,
  .career h3 + .center {
    font-size: 14px;
    line-height: 2.5; }

.fresher .gakucen {
  margin-top: 110px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px; }
  .fresher .gakucen .flex {
    display: flex;
    justify-content: space-between; }
    .fresher .gakucen .flex .logo {
      flex-basis: 125px;
      align-items: center; }
    .fresher .gakucen .flex .text {
      flex: 1;
      font-size: 14px;
      line-height: 2;
      padding-left: 30px; }

.fresher .bnr_intertour {
  max-width: 669px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px; }
  .fresher .bnr_intertour:hover {
    opacity: .8; }

.career .contact {
  background-image: url("../images/recruit/bg3.jpg");
  padding: 30px 40px;
  width: 717px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background-size: cover;
  color: #fff;
  margin-top: 67px;
  display: flex;
  margin-bottom: 60px; }
  .career .contact img.tel {
    width: 287px;
    margin-bottom: 20px; }
  .career .contact .mail {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    font-size: 18px;
    margin-right: 20px; }
    .career .contact .mail:before {
      content: "";
      background-image: url("../images/recruit/icon_mail.svg");
      width: 20px;
      height: 13px;
      position: absolute;
      left: -25px;
      top: 50%;
      transform: translateY(-50%);
      background-repeat: no-repeat;
      background-size: contain; }
  .career .contact .contact_l {
    width: 417px; }
    .career .contact .contact_l .tel {
      font-family: futura std;
      position: relative;
      font-size: 40px;
      padding-left: 35px;
      letter-spacing: .05em; }
      .career .contact .contact_l .tel:before {
        content: "";
        background-image: url("../images/common/icon_tel.svg");
        width: 27px;
        height: 27px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background-repeat: no-repeat;
        background-size: contain; }
  .career .contact .contact_r {
    width: 220px; }
    .career .contact .contact_r span {
      display: block;
      width: 100%;
      position: relative; }
      .career .contact .contact_r span a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 16px 0;
        background-color: #fff;
        color: #000;
        font-size: 16px;
        font-weight: 600;
        text-align: center; }
    .career .contact .contact_r .btn {
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      margin-top: 0; }
      .career .contact .contact_r .btn a {
        border: none; }
        .career .contact .contact_r .btn a:before {
          background-color: #43b988; }
        .career .contact .contact_r .btn a:after {
          display: none; }

.summary_box_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 60px; }
  .summary_box_wrap > div {
    width: 525px;
    padding: 20px;
    box-sizing: border-box; }
    .summary_box_wrap > div dl {
      margin: 0; }
  .summary_box_wrap .summary_box_inner {
    background-color: #fff;
    padding: 18px 18px 25px 18px;
    height: 100%;
    box-sizing: border-box; }
    .summary_box_wrap .summary_box_inner h3 {
      font-size: 18px;
      font-weight: 600;
      position: relative;
      margin-bottom: 30px; }
      .summary_box_wrap .summary_box_inner h3:after {
        content: "";
        width: 44px;
        height: 2px;
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto; }
    .summary_box_wrap .summary_box_inner p {
      font-size: 15px;
      line-height: 2.3; }
    .summary_box_wrap .summary_box_inner dl dt {
      display: inline-block;
      background-color: #acacac;
      border-radius: 20px;
      padding: 4px 15px;
      font-size: 11px;
      color: #fff;
      margin-bottom: 10px; }
    .summary_box_wrap .summary_box_inner dl dd {
      line-height: 2;
      font-size: 15px; }
      .summary_box_wrap .summary_box_inner dl dd:first-of-type {
        margin-bottom: 20px; }
  .summary_box_wrap .summary_comprehensive {
    background-image: url("../images/recruit/bg1.jpg"); }
    .summary_box_wrap .summary_comprehensive h3 {
      color: #9f5730; }
      .summary_box_wrap .summary_comprehensive h3:after {
        background-color: #9f5730; }
  .summary_box_wrap .summary_profession {
    background-image: url("../images/recruit/bg2.jpg"); }
    .summary_box_wrap .summary_profession h3 {
      color: #006837; }
      .summary_box_wrap .summary_profession h3:after {
        background-color: #006837; }

.tb_summary_wrap {
  position: relative; }
  .tb_summary_wrap .clipart {
    position: absolute; }
  .tb_summary_wrap .clipart3 {
    right: 0;
    top: 0;
    width: 154px; }
  .tb_summary_wrap .clipart4 {
    left: -20px;
    top: -80px;
    width: 148px; }

.table_title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px; }

.tb_summary {
  width: 719px;
  margin-left: auto;
  margin-right: auto; }
  .tb_summary th,
  .tb_summary td {
    vertical-align: top;
    line-height: 2; }
  .tb_summary th {
    padding-right: 60px;
    text-align: left; }
  .tb_summary tr:not(:last-child) {
    border-bottom: 1px solid #afafaf; }

.recnavi_entry {
  max-width: 669px;
  text-align: center;
  font-size: 23px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto; }
  .recnavi_entry .recnavi_box {
    /*
		display: flex;
		justify-content: space-between;
*/ }
    .recnavi_entry .recnavi_box img {
      width: 320px;
      margin-top: 10px; }
    .recnavi_entry .recnavi_box p {
      font-size: 14px;
      margin-top: 15px; }

/**
* 6.6 - Contact
* -----------------------------------------------------------------------------
*/
.page_contact .main_visual {
  margin-top: 0; }
  .page_contact .main_visual .inner {
    position: relative;
    transform: none; }
  .page_contact .main_visual .page_title {
    margin-top: 0;
    position: absolute;
    top: 27%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto; }

.contact_form .inner > .center {
  font-size: 16px;
  font-weight: 400;
  margin-top: 100px; }

.contact_form .w950 {
  width: 1050px; }

.tb_contact {
  border-collapse: separate;
  border-spacing: 20px; }
  .tb_contact th {
    background-color: #f4f4f4;
    font-size: 17px;
    font-weight: 600px;
    text-align: left;
    padding: 10px 15px;
    width: 290px;
    box-sizing: border-box;
    position: relative;
    vertical-align: center; }
    .tb_contact th .required {
      font-size: 14px;
      color: #fff;
      background-color: #989898;
      border-radius: 20px;
      padding: 1px 10px;
      display: inline-block;
      position: absolute;
      right: 15px;
      top: 13px; }
  .tb_contact .v_top {
    vertical-align: top; }
  .tb_contact td {
    padding-top: 0;
    padding-bottom: 0; }
    .tb_contact td input,
    .tb_contact td textarea {
      width: 100%;
      padding: 10px;
      box-sizing: border-box;
      background-color: #f4f4f4;
      border: 1px solid #acacac;
      outline: none;
      font-size: 16px;
      height: 50px; }
    .tb_contact td textarea {
      height: 207px; }
    .tb_contact td input[type="radio"] {
      display: inline;
      height: auto;
      width: auto;
      vertical-align: text-top; }
    .tb_contact td label {
      display: inline-block;
      margin-right: 15px; }

.privacypolicy {
  margin-top: 50px;
  margin-bottom: 120px; }
  .privacypolicy h3 {
    text-align: left;
    background-color: rgba(57, 149, 74, 0.2);
    font-size: 20px;
    padding: 10px;
    font-weight: 600;
    margin-bottom: 20px; }
  .privacypolicy p {
    line-height: 2.2; }

/* 確認画面 */
#formWrap {
  margin-top: 60px; }
  #formWrap .contact_btn a {
    width: 200px;
    padding: 15px; }
    #formWrap .contact_btn a:after {
      display: none; }

.formTable td {
  background-color: #f4f4f4;
  padding: 0 10px; }

.btn_wrap {
  display: flex;
  justify-content: center; }
  .btn_wrap > div {
    margin: 40px 10px 0 10px; }
  .btn_wrap .btn a:after {
    display: none; }

/* サンクスページ */
.thanks_content {
  padding: 100px 0; }

/**
* 7.0 - Footer
* -----------------------------------------------------------------------------
*/
footer {
  background-image: url("../images/common/bg_footer.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0 0 0;
  margin-top: 90px; }
  footer > .inner {
    display: flex;
    justify-content: space-between; }
    footer > .inner .logo {
      margin-bottom: 45px; }
      footer > .inner .logo img {
        width: 190px; }
    footer > .inner .name {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 20px; }
    footer > .inner .address {
      font-size: 15px; }
    footer > .inner .telfax {
      font-size: 15px; }
    footer > .inner .links {
      margin-top: 50px; }
      footer > .inner .links .btn {
        display: inline-block;
        margin-top: 0; }
      footer > .inner .links .contact {
        background-color: #fff;
        color: #000;
        display: inline-block;
        padding: 3px 30px;
        border: none; }
        footer > .inner .links .contact:before {
          background-color: #43b988; }
        footer > .inner .links .contact:after {
          display: none; }
        footer > .inner .links .contact:hover {
          color: #fff; }
      footer > .inner .links .recnavi {
        margin-left: 5px; }
        footer > .inner .links .recnavi img {
          vertical-align: top;
          transition: .2s all;
          width: 150px; }
          footer > .inner .links .recnavi img:hover {
            opacity: .7; }
      footer > .inner .links .recnavi_intern {
        margin-left: 5px; }
        footer > .inner .links .recnavi_intern img {
          vertical-align: top;
          transition: .2s all;
          width: 150px; }
          footer > .inner .links .recnavi_intern img:hover {
            opacity: .7; }

.nav_footer ul li {
  margin-bottom: 30px;
  position: relative; }
  .nav_footer ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1px;
    left: -28px;
    background-color: #fff; }
  .nav_footer ul li a {
    font-size: 14px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px; }
    .nav_footer ul li a:after {
      background-color: #fff;
      bottom: -5px;
      content: '';
      display: block;
      height: 1px;
      position: absolute;
      transition: .5s all;
      width: 0;
      left: 0; }
    .nav_footer ul li a:hover:after {
      width: 100%; }

.credit {
  margin-top: 70px;
  padding-bottom: 10px; }
  .credit p {
    text-align: right;
    margin: 0;
    margin-right: 2%;
    font-size: 13px;
    letter-spacing: 1px; }
/*# sourceMappingURL=style.css.map */