﻿@charset "utf-8";

/*-------------------------------------------------------------------------------
  bg-fixed
-------------------------------------------------------------------------------*/
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: url("../image/body_bg.jpg") no-repeat top center;
}


/*-------------------------------------------------------------------------------
  header
-------------------------------------------------------------------------------*/
header {
  position: relative;
  z-index: 2;
  
  .header-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    padding: 48px;
    box-sizing: border-box;
    
    .logo {
      position: absolute;
      left: calc(50% - 205px);
      top: calc(50% - 205px);
    }
    
    .nav-container {
      position: absolute;
      left: calc(50% - 460px);
      bottom: 48px;
      width: 100%;
      max-width: 920px;
      height: 80px;
      padding: 0 20px;
      box-sizing: border-box;
      background-color: #fff;
      
      .menu {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
        
        a {
          display: flex;
          align-items: center;
          height: 80px;
          box-sizing: border-box;
          border-bottom: 4px solid #fff;
          text-decoration: none;
          font-weight: bold;
          transition: .3s;
          
          &:hover {
            color: #c65901;
            border-bottom: 4px solid #c65901;
          }
        }
      }
    }      
    @media (max-width:960px) {
      .nav-container {
        left: 20px;
        width: calc(100% - 40px);
      }
    }      

    .sns-container {
      position: absolute;
      top: 48px;
      right: 48px;
      display: flex;
      justify-content: flex-end;

      a {
        display: inline-block;
        margin-left: 18px;
        transition: .2s;
        
        &:hover {
          opacity: .6;
        }
      }
    }  
  }      
  @media (max-width:750px) {
    .header-container {
      height: 440px;
      min-height: inherit;
      padding: 24px;
      box-sizing: border-box;
      
      .logo {
        left: calc(33.33% - 102px);
        top: 120px;
        width: 205px;
        margin: 0 auto;
        overflow: hidden;
      }
      
      .nav-container {
        width: 221px;
        height: 200px;
        padding: 18px;
        box-sizing: border-box;
        max-width: inherit;
        top: 80px;
        left: auto;
        right: 0;
        border-bottom-left-radius: 24px;
      
        .menu {
          justify-content: flex-start;
          gap: 12px;

          a {
            height: 1.25em;
            border-left: 4px solid #232323;
            border-bottom: none;
            line-height: 1;
            padding-left: 12px;

            &:hover {
              color: #c65901;
              border-left: 4px solid #c65901;
              border-bottom: none;
            }
          }
        }
      }
      
      .sns-container {
        top: 0;
        right: 0;
        padding: 18px;
        padding-left: 0;
        background-color: #fff;
      }
    }
  }
  @media (max-width:640px) {
    .header-container {      
      .logo {
        left: calc(25% - 102px);
      }
    }
  }
  @media (max-width:460px) {
    .header-container {      
      position: static;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 0;
      width: 220px;
      padding: 24px 0;
      height: auto;
      margin: 0 auto;
      
      
      .logo {
        position: static;
        width: 100%;
        background-color: #fff;
      }
      .nav-container {
        position: static;
        width: 220px;
        border-bottom-left-radius: 0;
      }
      .sns-container {
        position: static;
      }
    }
  }
}

/*-------------------------------------------------------------------------------
  main
-------------------------------------------------------------------------------*/
main {
  position: relative;
  z-index: 2;
  
  .main-container {
    width: 100%;
    box-sizing: border-box;
  }
}


/*-------------------------------------------------------------------------------
  about
-------------------------------------------------------------------------------*/
#about {
  width: 100%;
  padding: 120px 48px;
  background-color: rgba(255,255,255,0.5);
  
  h1 {
    font-size: 84px;
    line-height: 1;
  }
  
  .about-section01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 72px;
    width: 100%;
    max-width: 1560px;
    margin-right: 0;
    margin-left: auto;
    margin-top: 84px;
  
    .about-image-container {
      order: 2;
    }
    @media (max-width:1000px) {  
      .about-image-container {
        order: 1;
      }
      .about-description {
        order: 2;
      }
    }
  }
  @media (max-width:1200px) {  
    .about-section01 {
      gap: 48px;
    }
  }
  @media (max-width:500px) {  
    .about-section01 {
      margin-top: 60px;
    }
  }
  
  .about-section02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 72px;
    width: 100%;
    max-width: 1560px;
    margin-right: auto;
    margin-left: 0;
    margin-top: 84px;
  }
  @media (max-width:1200px) {  
    .about-section02 {
      gap: 48px;
    }
  }
  @media (max-width:500px) {  
    .about-section02 {
      margin-top: 60px;
    }
  }
  
  .about-image-container {
    position: relative;
    width: 788px;
  }
  @media (max-width:1600px) {  
    .about-image-container {
      width: 508px;
    }
  }
  @media (max-width:1200px) {  
    .about-image-container {
      width: 382px;
    }
  }
  @media (max-width:1000px) {  
    .about-image-container {
      width: 100%;
      max-width: 788px;
      margin: 0 auto;
    }
  }
  
  .about-description {
    width: calc(100% - 860px);
  
    h2 {
      line-height: 1.4;
      margin-bottom: 1em;
    }
    
    p {
      margin-bottom: 1em;
    }
  }
  @media (max-width:1600px) {  
    .about-description {
      width: calc(100% - 580px);
    }
  }
  @media (max-width:1200px) {  
    .about-description {
      width: calc(100% - 430px);
    }
  }
  @media (max-width:1000px) {  
    .about-description {
      width: 100%;
    }
  }
  
  #farm {
    .about-image-container {
      .about-image:nth-child(1) {
        position: absolute;
        right: 0;
        top: 0;
      }
      .about-image:nth-child(2) {
        position: absolute;
        left: 0;
        top: 206px;
      }
      .about-image:nth-child(3) {
        position: absolute;
        left: 346px;
        top: 274px;
      }
      @media (max-width:1600px) {
        .about-image:nth-child(2) {
          width: 50%;
          top: 228px;
        }
        .about-image:nth-child(3) {
          width: 50%;
          left: auto;
          right: 0;
          top: 228px;
        }
      }
      @media (max-width:1200px) {
        .about-image:nth-child(2) {
          top: 171px;
        }
        .about-image:nth-child(3) {
          top: 171px;
        }
      }
    }
    @media (max-width:1000px) {
      .about-image-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 664px;
        
        .about-image:nth-child(1) {
          position: static;
          width: 100%;
        }
        .about-image:nth-child(2) {
          position: static;
          width: calc(50% - 12px);
        }
        .about-image:nth-child(3) {
          position: static;
          width: calc(50% - 12px);
        }
      }
    }
    @media (max-width:500px) {  
      .about-image-container {
        gap: 12px;
        
        .about-image:nth-child(2) {
          position: static;
          width: calc(50% - 6px);
        }
        .about-image:nth-child(3) {
          position: static;
          width: calc(50% - 6px);
        }
      }
    }
  }
  
  #place {
    min-height: 444px;
    
    .about-image-container {
      .about-image:nth-child(1) {
        position: absolute;
        right: 0;
        top: 0;
      }
      .about-image:nth-child(2) {
        position: absolute;
        left: 0;
        top: 124px;
      }
      @media (max-width:1600px) {
        .about-image:nth-child(1) {
          width: 60%;
        }
        .about-image:nth-child(2) {
          width: 60%;
          top: 160px;
        }
      }
    }
    @media (max-width:1000px) {
      .about-image-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        
        .about-image:nth-child(1) {
          position: static;
          width: calc(50% - 12px);
        }
        .about-image:nth-child(2) {
          position: static;
          width: calc(50% - 12px);
        }
      }
    }
    @media (max-width:500px) {  
      .about-image-container {
        gap: 12px;
        
        .about-image:nth-child(1) {
          position: static;
          width: calc(50% - 6px);
        }
        .about-image:nth-child(2) {
          position: static;
          width: calc(50% - 6px);
        }
      }
    }
  }
}
@media (max-width:750px) {
  #about {
    padding: 96px 24px;
  
    h1 {
      font-size: 60px;
    }
  }
}


/*-------------------------------------------------------------------------------
  representative
-------------------------------------------------------------------------------*/
#representative {
  width: 100%;
  box-sizing: border-box;
  padding: 0 48px;
  background-color: #eeeeee;
  
  .representative-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 72px;
    width: 100%;
    height: 600px;
    max-width: 1560px;
    margin-right: 0;
    margin-left: auto;
    
    .photo {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 710px;
      order: 2;
    }
    
    .description {
      width: calc(100% - 722px);
      
      h1 {
        margin-bottom: 0;
        line-height: 1.2;
      }
      
      .name {
        margin-bottom: 12px;
        font-weight: bold;
      }
      
      p {
        strong {
          border-bottom: 1px solid #232323;
        }
      }
    }    
  }
}
@media (max-width:1470px) {
  #representative {    
    .representative-container {
      .description {
        z-index: 2;
        width: 58%;

        p {
          padding: 24px;
          background-color: rgba(255,255,255,.36);
        }
      }
    }
  }
}
@media (max-width:1170px) {
  #representative {    
    .representative-container {
      .description {      
        h1.fs-4l {
          font-size: 36px;
        }
        .name.fs-2l {
          font-size: 24px;
        }
      }
    }
  }
}
@media (max-width:1000px) {
  #representative {    
    .representative-container {
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 48px;
      height: auto;
      padding: 48px 0;
      box-sizing: border-box;
    
      .photo {
        position: static;
        width: 100%;
        max-width: 710px;
        margin: 0 auto;
        order: 1;
        box-sizing: border-box;
        padding: 24px 24px 0;
        background-color: #fff;
      }
      
      .description {
        order: 2;
        width: 100%;
        
        h1.fs-4l {          
          font-size: 48px;
        }
        .name.fs-2l {
          font-size: 30px;
        }

        p {
          padding: 0;
          background-color: rgba(255,255,255,0);
        }
      }
    }
  }
}
@media (max-width:750px) {
  #representative {
    padding: 24px;
  }
}
@media (max-width:500px) {
  #representative {    
    .representative-container {
      .description {       
        h1.fs-4l {
          font-size: 34px;
        }
        .name.fs-2l {
          font-size: 24px;
        }
      }
    }
  }
}


/*-------------------------------------------------------------------------------
  crops
-------------------------------------------------------------------------------*/
#crops {
  width: 100%;
  padding: 120px 48px;
  background-color: rgba(255,255,255,0.5);
  
  .crops-contents {
    display: flex;
    gap: 84px;
    
    h1 {
      width: 60px;
      line-height: 1;
      -webkit-writing-mode:vertical-rl;
      -ms-writing-mode:tb-rl;
      writing-mode:vertical-rl;
      text-align:left;
      white-space:nowrap;
    }
    
    .crops-list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      width: calc(100% - 144px);
      
      .crops-item:nth-child(2),
      .crops-item:nth-child(5) {
        margin-top: 48px;
      }
      .crops-item:nth-child(3),
      .crops-item:nth-child(6) {
        margin-top: 96px;
      }
    }
  }
  @media (max-width:1200px) {  
    .crops-contents {
      gap: 48px;

      .crops-list {
        width: calc(100% - 108px);
        justify-content: flex-start;
        gap: 24px;
        
        .crops-item {
          width: calc(33.333% - 16px);
        }
      }
    }
  }
  @media (max-width:1000px) {
    .crops-contents {

      .crops-list {
        justify-content: space-around;
        
        .crops-item {
          width: calc(50% - 12px);
          
          &:nth-child(2),
          &:nth-child(3),
          &:nth-child(5),
          &:nth-child(6) {
            margin-top: 0;
          }
          
          &:nth-child(even) {
            margin-top: 48px;
          }
        }
      }
    }
  }
  @media (max-width:500px) {
    .crops-contents {
      flex-wrap: wrap;
    
      h1 {
        width: 100%;
        -webkit-writing-mode:inherit;
        -ms-writing-mode:inherit;
        writing-mode:inherit;
        font-size: 40px;
      }

      .crops-list {
        width: 100%;
        justify-content: space-between;        
        gap: 24px;
        
        .crops-item {
          width: calc(50% - 12px);
        }
      }
    }
  }
  @media (max-width:375px) {
    .crops-contents {
    
      h1 {
        font-size: 34px;
      }

      .crops-list {
        max-width: 280px;
        margin: 0 auto;
        
        .crops-item {
          width: 100%;
          
          &:nth-child(even) {
            margin-top: 0;
          }
        }
      }
    }
  }
  
  .ec-link {
    margin-top: 72px;
    
    a {
      background: #c65901;
      border-radius: 9999px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      max-width: 600px;
      padding: 20px 30px;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
      border-bottom: 5px solid #b65511;
      transition: 0.3s ease-in-out;
      
      &:hover {
        background: #ee8134;
        color: #FFF;
        border-bottom: 2px solid #999;
        transform: translateY(3px);
      }
    }
  }
  @media (max-width:420px) {
    .ec-link {
      margin-top: 48px;
    }
  }
}
@media (max-width:750px) {
  #crops {
    padding: 96px 24px;
  }
}


/*-------------------------------------------------------------------------------
  contact
-------------------------------------------------------------------------------*/
#contact {
  width: 100%;
  box-sizing: border-box;
  padding: 84px 48px;
  background-color: #eeeeee;
  
  h1 {
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
  }
  @media (max-width:350px) {
    h1 {
      font-size: 46px;
    }
  }
  
  .intro {
    margin-top: 48px;
    text-align: center;
  }
  
  .form {
    margin-top: 48px;
  }
  
  .submit-button {
    margin-top: 48px;
  }
}
@media (max-width:750px) {
  #contact {
    padding: 72px 24px;
  }
}


/*-------------------------------------------------------------------------------
  footer
-------------------------------------------------------------------------------*/
footer {
  position: relative;
  z-index: 2;  
}






