@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 {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 140px;
  padding-bottom: var(--space-section-140);
}
.page_title .box_l {
  width: calc(100% - (420px + 20px));
  padding-top: 60px;
  display: flex;
}
.page_title .box_l * {
  display: block;
  line-height: 1em;
}
.page_title .box_l h3 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  em {
    font-family: var(--font-eng-grade);
    font-size: 13.0rem;
    font-weight: 500;
    letter-spacing: .02em;
    background: var(--eng-grade-txt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: .2em;
  }
  span {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #008EB3;
  }
}
.page_title .img {
  width: min(100%, 420px);
}
@media (width <= 1440px) {
  .page_title {
    width: 100%;
    padding: 0 20px;
    padding-top: 140px;
    gap: 20px;
  }
  .page_title .box_l {
    flex: 1;
    min-width: 0;
    padding-top: clamp(20px, 4vw, 60px);
  }
  .page_title .box_l h3 {
    em {
      font-size: clamp(5rem, 5rem + 6vw, 13.0rem);
      font-weight: 600;
    }
    span {
      font-size: 1.6rem;
      font-weight: 700;
    }
  }
  .page_title .img {
    width: clamp(320px, 29vw, 420px);
  }
}
@media (width <= 767px) {
  .page_title {
    padding-top: 140px;
    padding-bottom: var(--space-section-100);
    flex-direction: column;
    gap: var(--space-section-40);
  }
  .page_title .box_l {
    width: 100%;
    padding-top: 0;
  }
  .page_title .box_l h3 {
    em {
      font-size: clamp(6rem, 18vw, 8rem);
    }
    span {
      font-size: 1.6rem;
    }
  }
  .page_title .img {
    width: min(100%, 260px);
    margin-left: auto;
  }  
}


main {
  .benibana {
    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;
        }
        span {
          font-size: 4.2rem;
          font-weight: 700;
          letter-spacing: .1em;
          margin-bottom: .3em;
        }
        em {
          font-size: 1.4rem;
          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;
          }
          .comment {
            letter-spacing: .1em;
          }
        }
      }
    }
  }
  @media (width <= 1240px) {
    .benibana {
      .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) {    
    .benibana {
      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);
          span {
            font-size: clamp(2.8rem, 8vw, 3.2rem);
          }
        }
        .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);
              text-align: center;
              em {
                font-size: 1.4rem;
              }
            }
          }
        }
      }
    }
  }


  .pick-up {
    margin-bottom: var(--space-section-100);
    .title-item {
      display: flex;
      align-items: flex-start;
      gap: 80px;
      margin-bottom: var(--space-section-40);
      .box_l {
        width: min(100%, 570px);
        h3 {
          display: flex;
          align-items: flex-start;
          justify-content: flex-start;
          flex-direction: column;
          margin-bottom: var(--space-section-40);
          * {
            display: block;
            line-height: 1em;
          }
          em {
            font-family: var(--font-eng-grade);
            font-size: 5.6rem;
            font-weight: 600;
            letter-spacing: .02em;
            background: var(--eng-grade-txt);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            margin-bottom: .2em;
          }
          span {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: .1em;
            color: #008EB3;
          }
        }
        h4 {
          font-size: 2.4rem;
          font-weight: 700;
          letter-spacing: .1em;
          margin-bottom: .8em;
        }
      }
      .box_r {
        width: min(100%, 550px);
        display: flex;
        flex-direction: column;
        gap: 25px;
        section {
          background: #FFF;
          border-radius: var(--radius20);
          padding: var(--space-section-30) var(--space-section-50);
          h4 {
            text-align: center;
            color: #008EB3;
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: .1em;
            padding-bottom: .3em;
            margin-bottom: .6em;
            border-bottom: 1px #DDDDDD solid;;
          }
          .comment p {
            letter-spacing: .1em;
          }
        }
      }
    }
    .table-img {
      display: flex;
      align-items: flex-start;
      gap: 80px;
      .box_l {
        width: min(100%, 570px);
        table {
          width: 100%;
          tr th ,
          tr td {
            padding: 1em .6em;
            border-bottom: solid 1px #008EB3;
            vertical-align: middle;
          }
          tr:nth-of-type(1) th ,
          tr:nth-of-type(1) td {
            padding-top: 0;
          }
          tr th {
            width: 170px;
            font-weight: 700;
            text-align: left;
          }
          tr td {
            padding-left: var(--space-section-30);
            em {
              margin-right: .5em;
            }
            span {
              margin-right: 1em;
            }
          }
        }
      }
      .img {
        width: min(100%, 550px);
        border-radius: var(--radius20);
        overflow: hidden;
      }
    } 
  }    
  @media (width <= 1140px) {  
    .pick-up {
      .title-item {
        gap: 40px;
      }
      .table-img {
        gap: 40px;
        .box_l {
          table {
            tr th ,
            tr td {
              display: block;
              padding: 1em .6em;
              border-bottom: solid 1px #008EB3;
              vertical-align: middle;
            }
            tr:nth-of-type(1) th ,
            tr:nth-of-type(1) td {
              padding-top: 0;
            }
            tr:nth-of-type(1) td {
              padding-top: .5em;
            }
            tr th {
              width: 100%;
              padding-bottom: 0;
              border-bottom: none;
            }
            tr td {
              padding-top: .5em;
              padding-left: .6em;
            }
          }
        }
      }  
    }
  }  
  @media (width <= 767px) {  
    .pick-up {
      margin-bottom: var(--space-section-100);
      .title-item {
        flex-direction: column;
        gap: var(--space-section-40);
        margin-bottom: var(--space-section-40);
        .box_l {
          width: 100%;
          h3 {
            margin-bottom: var(--space-section-40);
            em {
              font-size: clamp(4rem, 14vw, 5.6rem);
            }
            span {
              font-size: 1.6rem;
            }
          }
          h4 {
            font-size: clamp(2.0rem, 8.2vw, 2.4rem);
          }
        }
        .box_r {
          width: 100%;
          gap: var(--space-section-15);
          section {
            border-radius: var(--radius20);
            padding: var(--space-section-25) var(--space-section-30);
            h4 {
              font-size: 1.8rem;
            }
          }
        }
      }
      .table-img {
        flex-direction: column;
        gap: var(--space-section-40);
        .box_l {
          width: 100%;
          table {
            width: 100%;
            tr th ,
            tr td {
              display: table-cell;
              padding: 1em .6em;
              border-bottom: solid 1px #008EB3;
              vertical-align: top;
            }
            tr:nth-of-type(1) th ,
            tr:nth-of-type(1) td {
              padding-top: 0;
            }
            tr th {
              width: 90px;
            }
            tr td {
              padding-left: 0;
            }
          }
        }
        .img {
          width: min(100%, 550px);
          margin: 0 auto;
        }
      } 
    }
  }


  .sea {
    margin-bottom: var(--space-section-100);
    .box {
      position: relative;
      padding: var(--space-section-80) var(--space-section-100);
      &::before {
        position: absolute;
        inset: 0;
        width: calc(100% + ((100vw - 100%) / 2));
        height: 100%;
        background: var(--bg-grade01);
        z-index: -1;
        border-top-left-radius: var(--radius100);
        border-bottom-left-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;
        }
        span {
          font-size: 4.2rem;
          font-weight: 700;
          letter-spacing: .1em;
          margin-bottom: .3em;
        }
        em {
          font-size: 1.4rem;
          font-weight: 700;
          letter-spacing: .1em;
        }
      }
      .box_in {
        display: flex;
        gap: 30px 35px;
        align-items: stretch;
        section {
          flex: 1;
          display: flex;
          flex-direction: column;
          .info {
            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;
            height: auto;
            .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;
            }
            .comment {
              letter-spacing: .1em;
            }
          }
          .caution {
            font-size: 1.4rem;
            color: #FFF;
            padding-top: 1em;
            &.empty {
              visibility: hidden;
            }
            p {
              font-weight: 400;
            }
          }
        }
      }
    }
  }
  @media (width <= 1240px) {
    .sea {
      .box {
        .box_in {
          display: flex;
          flex-direction: column;
          gap: 20px;
          section {
            flex: inherit;
            .info {
              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;
              }
            }
          }
        }
      }
    }
  }
  @media (width <= 767px) {    
    .sea {
      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);
          border-radius: 0;
          border-top-right-radius: var(--radius100);
          border-bottom-right-radius: var(--radius20);
        }
        h3 {
          margin-bottom: var(--space-section-40);
          span {
            font-size: clamp(2.6rem, 8vw, 3.2rem);
          }
        }
        .box_in {
          display: flex;
          flex-direction: column;
          gap: var(--space-section-25);
          section {
            display: flex;
            flex-direction: column;
            .info {
              display: flex;
              flex-direction: column;
              column-gap: var(--space-section-25);
              align-items: center;
              height: auto !important;
              .img {
                margin-bottom: var(--space-section-15);
              }
              h4 {
                font-size: clamp(2.0rem, 8.2vw, 2.4rem);
                text-align: center;
              }
            }
            .img {
              margin-bottom: var(--space-section-15);
            }
            .caution {
              font-size: 1.2rem;
            }
          }
        }
      }
    }
  }


  .about-us {
    margin-bottom: var(--space-section-100);
    .title-item {
      display: flex;
      align-items: flex-start;
      gap: 80px;
      margin-bottom: var(--space-section-40);
      .box_l {
        width: min(100%, 570px);
        h3 {
          display: flex;
          align-items: flex-start;
          justify-content: flex-start;
          flex-direction: column;
          margin-bottom: var(--space-section-40);
          * {
            display: block;
            line-height: 1em;
          }
          em {
            font-family: var(--font-eng-grade);
            font-size: 5.6rem;
            font-weight: 600;
            letter-spacing: .02em;
            background: var(--eng-grade-txt);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            margin-bottom: .2em;
          }
          span {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: .1em;
            color: #008EB3;
          }
        }
        h4 {
          font-size: 2.4rem;
          font-weight: 700;
          letter-spacing: .1em;
          margin-bottom: .8em;
        }
      }
      .box_r {
        width: min(100%, 550px);
        display: flex;
        flex-direction: column;
        gap: 25px;
        section {
          background: #FFF;
          border-radius: var(--radius20);
          padding: var(--space-section-30) var(--space-section-50);
          h4 {
            text-align: center;
            color: #008EB3;
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: .1em;
            padding-bottom: .3em;
            margin-bottom: .6em;
            border-bottom: 1px #DDDDDD solid;;
          }
          .comment p {
            letter-spacing: .1em;
          }
        }
      }
    }
    .table-img {
      display: flex;
      align-items: flex-start;
      gap: 80px;
      .box_l {
        width: min(100%, 570px);
        table {
          width: 100%;
          tr th ,
          tr td {
            padding: 1em .6em;
            border-bottom: solid 1px #008EB3;
            vertical-align: top;
          }
          tr:nth-of-type(1) th ,
          tr:nth-of-type(1) td {
            padding-top: 0;
          }
          tr th {
            width: 170px;
            font-weight: 700;
            text-align: left;
          }
          tr td {
            padding-left: var(--space-section-30);
            em {
              margin-right: .5em;
            }
            span {
              margin-right: 1em;
            }
          }
        }
      }
      .img {
        width: min(100%, 550px);
        border-radius: var(--radius20);
        overflow: hidden;
      }
    }
  }  
    
  @media (width <= 1140px) { 
    .about-us {
      .title-item {
        gap: 40px;
      }
      .table-img {
        gap: 40px;
        .box_l {
          table {
            tr th ,
            tr td {
              display: block;
              padding: 1em .6em;
              border-bottom: solid 1px #008EB3;
              vertical-align: middle;
            }
            tr:nth-of-type(1) th ,
            tr:nth-of-type(1) td {
              padding-top: 0;
            }
            tr:nth-of-type(1) td {
              padding-top: .5em;
            }
            tr th {
              width: 100%;
              padding-bottom: 0;
              border-bottom: none;
            }
            tr td {
              padding-top: .5em;
              padding-left: .6em;
            }
            tr th[rowspan="2"] + td {
              padding-bottom: 0;
              border-bottom: none;
            }
          }
        }
      }  
    }
  }  
  @media (width <= 767px) {  
    .about-us {
      margin-bottom: var(--space-section-100);
      .title-item {
        flex-direction: column;
        gap: var(--space-section-40);
        margin-bottom: var(--space-section-40);
        .box_l {
          width: 100%;
          h3 {
            margin-bottom: var(--space-section-40);
            em {
              font-size: clamp(4rem, 14vw, 5.6rem);
            }
            span {
              font-size: 1.6rem;
            }
          }
          h4 {
            font-size: clamp(2.0rem, 8.2vw, 2.4rem);
          }
        }
        .box_r {
          width: 100%;
          gap: var(--space-section-15);
          section {
            border-radius: var(--radius20);
            padding: var(--space-section-25) var(--space-section-30);
            h4 {
              font-size: 1.8rem;
            }
          }
        }
      }
      .table-img {
        flex-direction: column;
        gap: var(--space-section-40);
        .box_l {
          width: 100%;
          table {
            width: 100%;
            tr th ,
            tr td {
              display: table-cell;
              padding: 1em .6em;
              border-bottom: solid 1px #008EB3;
              vertical-align: top;
            }
            tr:nth-of-type(1) th ,
            tr:nth-of-type(1) td {
              padding-top: 0;
            }
            tr th {
              width: 90px;
            }
            tr td {
              padding-left: 0;
            }
            tr th[rowspan="2"] + td {
              padding-bottom: .6em;
              border-bottom: solid 1px #008EB3;
            }
          }
        }
        .img {
          width: min(100%, 550px);
          margin: 0 auto;
        }
      } 
    }
  }

  
  .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;
          }
        }
      }
    }
  }
  
  

}



