@charset "UTF-8";
/* CSS Document */






body {
  background: url(../img/business/service_bg.png) repeat center center , #F5F5F5;
  background-size: calc(50px / 2) , cover;
}
.page_title {
  padding-top: 140px;
  padding-bottom: var(--space-section-140);
  .box {
    width: min(100%, 1400px);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 100px;
  }
}
.page_title .box_l {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.page_title .box_l h3 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom:  var(--space-section-50);
  * {
    display: block;
    line-height: 1em;
  }
  em {
    font-family: var(--font-eng-grade);
    font-size: 13.0rem;
    font-weight: 600;
    letter-spacing: .04em;
    background: var(--eng-grade-txt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: .2em;
    white-space: nowrap;
  }
  span {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #008EB3;
  }
}
.page_title .box_l .catch {
  color: #008EB3;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 1em;
}
.page_title .box_l h4 {
  font-size: 4.0rem;
  line-height: 1.4;
  letter-spacing: .1em;
  margin-bottom: .4em;
  span {
    font-weight: 700;
  }
  .js-text {
    .char-wrap {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
    }
    .char {
      display: inline-block;
      background: var(--bg-grade01);
      background-repeat: no-repeat;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      transform: translate3d(0,105%,0);
      opacity: 0;
      transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;
      will-change: transform;
      -webkit-font-smoothing: antialiased;
      backface-visibility: hidden;
    }
    &.show {
      .char {
        transform: translate3d(0,0,0);
        opacity: 1;
      }
    }
  }
}
.page_title .box_l .comment p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
}
.page_title .img {
  position: relative;
  width: 670px;
  span {
    display: block;
    overflow: hidden;
    border-radius: var(--radius20);
  }
  .img-reveal {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 310px;
    overflow: hidden;
    img {
      display: block;
      width: 100%;
      transform: translateY(120%);
      opacity: 0;
      will-change: transform, opacity;
    }
    &.show img {
      animation: imgBounceUp 1s cubic-bezier(.22, 1, .36, 1) forwards;
    }    
  }
}  
@keyframes imgBounceUp {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }
  60% {
    transform: translateY(-4%);
    opacity: 1;
  }
  75% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (width <= 1440px) {
  .page_title {
    overflow: hidden;
    .box {
      width: 100%;
      padding: 0 20px;
      gap: 20px;
    }
  }
  .page_title .box_l {
    padding-top: clamp(10px, 4vw, 60px);
  }
  .page_title .box_l h3 {
    em {
      font-size: clamp(5rem, 5rem + 6vw, 13.0rem);
    }
  }
  .page_title .box_l h4 {
    font-size: clamp(3.0rem, 2.22vw + 0.8rem, 4.0rem);
  }
  .page_title .img {
    width: min(100%, 50vw);
    .img-reveal {
      right: max(-5.56vw, -80px);
      bottom: max(-5.56vw, -80px);
      width: min(21.53vw, 310px);
    }
  }
}
@media (width <= 767px) {
  .page_title {
    padding-top: 140px;
    padding-bottom: var(--space-section-140);
    .box {
      flex-direction: column;
      gap: var(--space-section-40);
    }
  }
  .page_title .box_l {
    padding-top: 0;
  }
  .page_title .box_l h3 {
    em {
      font-size: clamp(6rem, 18vw, 8rem);
    }
    span {
      font-size: 1.6rem;
    }
  }
  .page_title .box_l .catch {
    font-size: 1.4rem;
  }
  .page_title .box_l h4 {
    font-size: clamp(2.8rem, 8vw, 3.2rem);
  }
  .page_title .box_l .comment p {
    font-size: 1.4rem;
  }
  .page_title .img {
    width: 100%;
    .img-reveal {
      position: absolute;
      right: 0;
      bottom: -80px;
      width: 160px;
      overflow: hidden;
    }
  }  
}



main {
  .features {
    margin-bottom: var(--space-section-100);
    .box {
      position: relative;
      padding: var(--space-section-80) var(--space-section-100);
      &::before {
        position: absolute;
        inset: 0;
        left: auto;
        right: 0;
        width: calc(100% + ((100vw - 100%) / 2));
        height: 100%;
        background: var(--bg-grade01);
        z-index: -1;
        border-top-right-radius: var(--radius100);
        border-bottom-right-radius: var(--radius20);
        content: '';
      }
      h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--space-section-40);
        color: #FFF;
        * {
          display: block;
          color: #FFF;
          line-height: 1em;
        }
        em {
          font-family: var(--font-eng-grade);
          font-size: 5.6rem;
          font-weight: 600;
          letter-spacing: .1em;
          margin-bottom: .3em;
        }
        span {
          font-weight: 700;
          letter-spacing: .1em;
        }
      }
      .box_in {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 35px;
        section {
          background: #FFF;
          border-radius: var(--radius35);
          padding: var(--space-section-35);
          padding-bottom: var(--space-section-30);
          display: flex;
          flex-direction: column;
          align-items: center;
          .img {
            width: min(100%, 160px);
            margin-bottom: var(--space-section-15);
          }
          h4 {
            text-align: center;
            font-size: 2.4rem;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: .6em;
            color: #008EB2;
            em {
              font-size: 1.4rem;
              font-weight: 700;
            }
          }
          .comment {
            letter-spacing: .1em;
          }
        }
      }
    }
  }
  @media (width <= 1240px) {
    .features {
      .box {
        .box_in {
          display: flex;
          flex-direction: column;
          gap: 20px;
          section {
            display: grid;
            grid-template-columns: 180px 1fr;
            column-gap: 40px;
            align-items: start;
            .img {
              width: min(100%, 180px);
              margin-bottom: 0;
              grid-row: span 2;
            }
            h4 {
              text-align: left;
              em + br {
                display: none;
              }
            }
          }
        }
      }
    }
  }
  @media (width <= 767px) {    
    .features {
      margin-bottom: var(--space-section-100);
      .box {
        position: relative;
        padding: var(--space-section-80) 0;
        &::before {
          position: absolute;
          inset: 0;
          left: calc(50% - 50vw);
          width: 100vw;
          background: var(--bg-grade05);
        }
        h3 {
          margin-bottom: var(--space-section-40);
          em {
            font-size: clamp(4rem, 14vw, 5.6rem);
          }
        }
        .box_in {
          display: grid;
          grid-template-columns: 1fr;
          gap: var(--space-section-25);
          section {
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: var(--radius35);
            padding: var(--space-section-35);
            padding-bottom: var(--space-section-30);
            .img {
              margin-bottom: var(--space-section-15);
            }
            h4 {
              font-size: clamp(2.0rem, 8.2vw, 2.4rem);
              em {
                font-size: 1.4rem;
              }
            }
          }
        }
      }
    }
  }


  .pick-up {
    margin-bottom: var(--space-section-100);
    color: #FFF;
    .box {
      position: relative;
      padding-top: var(--space-section-100);
      padding-bottom: var(--space-section-100);
      &::before {
        position: absolute;
        inset: 0;      
        left: calc(50% - 50vw);
        z-index: -1;
        width: 100vw;
        background: #004EB3;
        content: '';
      }
      h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--space-section-40);
        color: #FFF;
        * {
          display: block;
          color: #FFF;
          line-height: 1em;
        }
        em {
          font-family: var(--font-eng-grade);
          font-size: 5.6rem;
          font-weight: 600;
          letter-spacing: .1em;
          margin-bottom: .3em;
        }
        span {
          font-weight: 700;
          letter-spacing: .1em;
        }
      }
      h4 {
        font-size: 4.0rem;
        font-weight: 700;
        letter-spacing: .1em;
        margin-bottom: .8em;
      }
      .box_in {
        display: flex;
        flex-direction: column;
        section {
          position: relative;
          display: flex;
          align-items: center;
          gap: 180px;
          &:not(:last-of-type) {
            padding-bottom: var(--space-section-40);
            margin-bottom: var(--space-section-40);
            border-bottom: solid 1px #FFF;
          }
          &::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 7px;
            height: calc(100% - var(--space-section-40));
            background: linear-gradient(0deg, #008EB3 0%, #004EB3 100%);
            content: '';
          }
          &:last-of-type::before {
            height: 100%;
          }
          .box_l {
            flex: 1;
            /*padding-top: var(--space-section-60);*/
            padding-left: var(--space-section-30);
            h4 , h5 {
              font-size: 2.4rem;
              font-weight: 700;
              letter-spacing: .1em;
              margin-bottom: .8em;
            }
            .comment p {
              font-weight: 500;
              letter-spacing: .1em;
            }
          }
          .img {
            width: 480px;
            border-radius: var(--radius20);
            overflow: hidden;
          }
        }
      }
    }
  }
  @media (width <= 1240px) {
    .pick-up {
      .box {
        .box_in {
          section {
            gap: clamp(60px, 8vw, 180px);  
            .img {
              width: clamp(360px, 33vw, 480px);
            }
          }
        }
      }
    }    
  }
  @media (width <= 767px) {
    .pick-up {
      .box {
        padding-top: var(--space-section-80);
        padding-bottom: var(--space-section-100);
        h3 {
          margin-bottom: var(--space-section-40);
          em {
            font-size: clamp(4rem, 14vw, 5.6rem);
            white-space: nowrap;
            letter-spacing: .05em;
          }
        }
        h4 {
          font-size: clamp(2.8rem, 8vw, 3.2rem);
        }
        .box_in {
          section {
            display: flex;
            flex-direction: column;
            gap: var(--space-section-10);
            &:not(:last-of-type) {
              padding-bottom: 0;
              margin-bottom: var(--space-section-50);
              border-bottom: none;
            }
            &::before {
              content: none;
            }
            .box_l {
              position: relative;
              flex: 1;
              padding: 1em 0;
              padding-left: var(--space-section-30);
              &::before {
                position: absolute;
                top: 0;
                left: 0;
                width: 7px;
                height: 100%;
                background: linear-gradient(0deg, #008EB3 0%, #004EB3 100%);
                content: '';
              }
              h4 , h5 {
                font-size: clamp(2rem, 6.15vw, 2.4rem);
              }
            }
            .img {
              width: 100%;
            }
          }
        }
      }
    }
  }



  .item {
    margin-bottom: var(--space-section-100);
    h3 {
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-align: center;
      margin-bottom: var(--space-section-30);
    }
    .box {
      display: grid;
      grid-template-columns: repeat(auto-fit, 220px);
      gap: 30px 25px;
      justify-content: center;
      body.foods & {
        grid-template-columns: repeat(auto-fit, 183px);
        gap: 30px 20px;
      }
      .img {
        overflow: hidden;
        border-radius: var(--radius20);
        margin-bottom: var(--space-section-15);
      }
      h4 {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: .1em;
      }
      .comment {
        padding-top: 1em;
        p {
          font-weight: 500;
          letter-spacing: .1em;
        }
      }
    }
  }
  @media (width <= 767px) {
    .item {
      margin-bottom: var(--space-section-100);
      h3 {
        font-size: clamp(2.0rem, 8.2vw, 2.4rem);
      }
      .box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-section-40);
        body.foods & {
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
          gap: var(--space-section-40);
        }
        h4 {
          font-size: 1.6rem;
        }
      }
    }
  }


  .other {
    margin-bottom: var(--space-section-100);
    h3 {
      color: #008EB3;
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: .1em;
      margin-bottom: .8em;
    }
    ul {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px 25px;
      li a {
        position: relative;
        display: block;
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: .1em;
        padding: .4em .2em;
        border-bottom: 2px #008EB3 solid;
        &::before {
          position: absolute;
          inset: 0;
          background: #008EB3;
          transform: scaleX(0);
          transform-origin: left;
          transition: transform .3s ease;
          z-index: -1;
          content: '';
        }
        &::after {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: .2em;
          width: 1.6111em;
          aspect-ratio: 1;
          background: url(../img/business/other_icon.svg) no-repeat center center;
          background-size: cover;
          content: '';
        }
        &:hover {
          color: #fff;
        }        
        &:hover::before {
          transform: scaleX(1);
        }
        &:hover::after {
          background: url(../img/business/other_icon-reverse.svg) no-repeat center center;
          background-size: cover;
          content: '';
        }
      }
      li.other-foods {
        body.foods & {
          display: none;
        }
      }
      li.other-fisheries {
        body.fisheries & {
          display: none;
        }
      }
      li.other-gifts {
        body.gifts & {
          display: none;
        }
      }
      li.other-sales-planning {
        body.sales-planning & {
          display: none;
        }
      }
      li.other-group-companies {
        body.group-companies & {
          display: none;
        }
      }
    }
  }
  @media (width <= 767px) {
    .other {
      padding: 0 var(--space-section-30);
      margin-bottom: var(--space-section-100);
      h3 {
        font-size: clamp(2.0rem, 8.2vw, 2.4rem);
      }
      ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-section-25);
        li a {
          font-size: 1.6rem;
          &::after {
            width: 1.6111em;
          }
        }
      }
    }
  }

  
  

}



