@charset "UTF-8";
/*HTML page.css*/

/* =======================================================
   l-main-img
======================================================== */
.l-main-img,
.l-main-img__img,
.l-main-img__img img {
  height: 50vh;
  @media (max-width: 991px) {
    height: 30vh;
  }
}

.l-main-img {
  position: relative;
  margin-bottom: clamp(80px, 10.294vw, 140px);

  &::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    opacity: 0.15;
  }
  .l-main-img__title {
    width: 50vw;
    background: var(--Bg-color);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .page-title {
    position: relative;
    left: calc((100vw - 1600px) / 2 + clamp(10px, 2.5vw, 40px));
    padding: 40px 40px 0 73px;
    @media (max-width: 1600px) {
      left: 0;
      padding-left: calc(73px + clamp(10px, 2.5vw, 40px));
    }
    & span {
      display: block;
      white-space: nowrap;
    }
    .en {
      font-family: var(--ou);
      color: var(--Orange-red);
      font-size: clamp(1.8rem, 2.018vw, 2rem); /*991*/
      margin-bottom: clamp(10px, 1.816vw, 18px); /*991*/
    }
    .ja {
      font-family: var(--hina);
      font-size: clamp(2.4rem, 3.027vw, 3rem); /*991*/
    }
    &::before {
      font-family: webfont;
      font-size: 8rem;
      content: '\e904';
      position: absolute;
      bottom: -14px;
      left: 0;
      opacity: 0.3;
      @media (max-width: 1600px) {
        left: clamp(10px, 2.5vw, 40px);
      }
    }
  }
  & img {
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .l-main-img .l-main-img__title {
    width: 100%;
    max-width: 90vw;
    left: 5vw;
    .page-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(20px, 6.678vw, 40px) clamp(20px, 6.678vw, 40px) 0; /*599*/
      &::before,
      &::after {
        font-family: webfont;
        font-size: 7rem;
        position: absolute;
        bottom: -7px;
        opacity: 0.3;
        transform: translateX(-50%);
        @media (max-width: 399px) {
          display: none;
        }
      }
      &::before {
        left: calc(50% - 12rem);
      }
      &::after {
        content: '\e905';
        right: calc(50% - 12rem);
        transform: translateX(50%);
      }
    }
  }
}

/* =======================================================
   page-link
======================================================== */
.page-link {
  margin-bottom: clamp(80px, 7.353vw, 100px); /*1360*/
  padding-bottom: 10px;
  & ul {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1600px;
    & li {
      border-bottom: 1px solid var(--Line-color);
      width: calc(100% / 4);
      min-width: 200px;
      margin-top: clamp(20px, 2.5vw, 40px); /*1600*/
      @media (max-width: 991px) {
        width: calc(100% / 3);
      }
      @media (max-width: 768px) {
        width: 50%;
      }
      @media (max-width: 499px) {
        width: 100%;
        margin-top: 10px;
      }
    }
    & li a {
      /* font-family: var(--hina); */
      display: flex;
      flex-direction: column;
      align-items: center;
      color: var(--Black);
      padding: 0 clamp(20px, 2.941vw, 40px); /*1360*/
      line-height: 1.4;
      text-align: center;

      @media (max-width: 499px) {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding-bottom: 10px;
      }
      & i {
        display: inline-block;
        transform: rotate(90deg);
        font-size: 1.4rem;
        color: var(--Link-color);
        margin-top: 5px;
        margin-bottom: 10px;
      }
      &:hover {
        color: var(--Orange-red);
      }
      &.font-small {
        font-size: 1.45rem;
      }
    }
  }
}

.page-link.recipe {
  margin-bottom: clamp(-140px, -10.294vw, -80px);
  padding-bottom: 0;
  margin-top: 40px;

  & li {
    width: calc(100% / 5);
    @media (max-width: 1400px) {
      width: calc(100% / 3);
    }
    @media (max-width: 768px) {
      width: 50%;
    }
    @media (max-width: 559px) {
      width: 100%;
      margin-top: 10px;
    }
    & a {
      font-size: 1.6rem;
      @media (max-width: 559px) {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding-bottom: 10px;
      }
    }
  }
}

.page-link.recruit {
  margin-top: 0;
  & li {
    width: 50%;
    margin-top: 0;

    @media (max-width: 499px) {
      width: 100%;
      margin-top: 10px;
    }
  }
}

/* =======================================================
   .history-block
======================================================== */
.history-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 200px;
  @media (max-width: 1080px) {
    margin-bottom: 100px;
  }

  &::before {
    content: '';
    display: block;
    position: absolute;
    bottom: clamp(-100px, -6.25vw, -40px);
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/page/history-bg.svg) bottom center no-repeat;
    background-size: 100% auto;
    opacity: 0.05;
  }
  .image-block {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    @media (max-width: 1400px) {
      align-items: flex-start;
    }
    .img {
      position: relative;

      &:first-child {
        max-width: clamp(400px, 26.042vw, 500px); /*1920*/
        right: 0px;
        padding: 0 clamp(0px, 3.75vw, 60px) 60px 0;
        @media (max-width: 1400px) {
          right: auto;
          left: 0;
          max-width: 100%;
        }
      }
      &:nth-child(2) {
        max-width: clamp(400px, 26.042vw, 500px); /*1920*/
        right: 100px;
        padding-bottom: 60px;
        @media (max-width: 1400px) {
          right: auto;
          left: 0;
          max-width: 100%;
          padding-right: clamp(0px, 3.75vw, 60px);
        }
      }
      &:last-child {
        max-width: 280px;
        align-self: center;
        @media (max-width: 1400px) {
          left: 0;
          max-width: 100%;
          align-self: auto;
          @media (min-width: 1081px) {
            padding-right: clamp(0px, 3.75vw, 60px);
          }
        }
      }
    }
  }
  .text-block {
    width: 70%;
    padding: 0 clamp(20px, 3.704vw, 40px);
  }
}

.history-table {
  position: relative;
  padding: 30px 0 30px clamp(20px, 5.556vw, 60px);

  &::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: clamp(-8px, calc((100vw - 1080px) * 0.05), 0px);
    width: 8px;
    height: 100%;
    background: url(../images/page/history-line1.png) left top no-repeat;
    background-size: 100% 100%;
  }
  & dt {
    font-family: var(--hina);
    font-size: 2.4rem;
    line-height: 1.2;

    &.period {
      color: var(--Link-color);
      margin-bottom: 10px;
      position: relative;
      &::before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: clamp(-100px, -9.259vw, -66px);
        width: clamp(60px, 8.333vw, 90px);
        height: 10px;
        background: url(../images/page/history-line2.png) left top no-repeat;
        background-size: contain;
      }
    }
  }
  & dd {
    margin: 30px 0 60px;
  }
}

@media (max-width: 1080px) {
  .history-block {
    flex-direction: column;
    .image-block {
      order: 2;
      width: auto;
      height: 30vh;
      overflow-x: auto;
      flex-direction: row;
      align-items: stretch;
      padding: 0 10px 20px;

      .img:first-child,
      .img:nth-child(2),
      .img:last-child {
        padding-bottom: 0;
      }
      .img {
        display: flex;
        flex: 0 0 auto;

        img {
          width: auto;
          object-fit: cover;
        }
      }
    }
    .text-block {
      order: 1;
      width: 100%;
    }
  }
}

/* =======================================================
   table
======================================================== */
.table {
  position: relative;
}
#history .table {
  padding-bottom: 200px;
  @media (max-width: 991px) {
    padding-bottom: clamp(0px, 10.091vw, 100px);
  }
}
.table-body {
  display: flex;
  flex-wrap: wrap;
  & dt,
  & dd {
    margin-bottom: 30px;
    padding: 0 10px 30px;
  }
  & dt {
    width: 20%;
    font-weight: 500;
    @media (min-width: 992px) {
      border-bottom: 2px solid var(--Link-color);
    }
    @media (max-width: 991px) {
      width: 100%;
      padding-bottom: 0;
      margin-bottom: 10px;
      color: var(--Link-color);
    }
  }
  & dd {
    width: 80%;
    border-bottom: 2px solid #d9d9d9;
    @media (max-width: 991px) {
      width: 100%;
    }
  }
}

/*======== dl-detail ==========================*/
.dl-detail {
  & li + li {
    margin-top: 20px;
  }
  .list-name {
    display: inline-block;
    background: var(--Ft-color);
    font-size: 1.4rem;
    padding: 2px 10px;
    margin-right: 10px;
  }
  .list-add {
    margin-right: 20px;
  }
  .map-link {
    font-family: var(--ou);
    letter-spacing: 0.4px;
    border-bottom: 1px solid;
    white-space: nowrap;
    & i::before {
      color: var(--Link-color);
      font-size: 1.4rem;
      display: inline-block;
      margin-right: 4px;
      transition: all 0.3s;
    }
    &:hover {
      color: var(--Black);
      & i::before {
        color: var(--Black);
      }
    }
  }
}

.tel-link {
  color: var(--Black);
}

@media (max-width: 768px) {
  .dl-detail__add .list-add {
    display: block;
    margin-top: 10px;
    line-height: 1.4;
  }
}

/* =======================================================
   production
======================================================== */

.product1,
.product2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
@media (max-width: 768px) {
  .product1 {
    margin-bottom: 80px;
  }
}

.production {
  justify-content: space-between;
  gap: clamp(40px, 5.208vw, 100px);
  .machine {
    margin-bottom: 60px;

    .image-block {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
      img {
        max-width: 400px;
      }
    }
    .text-block {
      & h3 {
        font-family: var(--hina);
        font-size: 2.4rem;
        border-bottom: 1px solid var(--Black);
        padding-bottom: 8px;
        margin-bottom: 20px;
      }
    }
  }
  .flow {
    background: #fff;
    padding: 40px clamp(20px, 3.125vw, 60px);
    text-align: center;

    & h3 {
      font-family: var(--hina);
      font-size: 2rem;
      display: inline-block;
      position: relative;
      margin-bottom: 60px;
      &::before,
      &::after {
        font-family: webfont;
        font-size: 30px;
        color: var(--Link-color);
        display: inline-block;
        position: absolute;
        bottom: -10px;
      }
      &::before {
        content: '\e904';
        left: -30px;
      }
      &::after {
        content: '\e905';
        right: -30px;
      }
    }
    & ul {
      text-align: left;
      & li {
        display: flex;
        align-items: center;
        .number {
          width: 44px;
          height: 44px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: var(--Link-color);
          color: #fff;
          border-radius: 22px;
          margin-right: clamp(10px, 5.008vw, 30px);
          font-family: var(--ou);
          font-size: 2rem;
          flex-shrink: 0;
        }
      }
      & li + li {
        margin-top: 40px;
        position: relative;
        &::before {
          content: '';
          display: inline-block;
          position: absolute;
          top: -40px;
          left: 22px;
          width: 1px;
          height: 40px;
          border-left: 1px dashed var(--Link-color);
        }
      }
    }
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .production {
    .machine {
      display: flex;
      margin-bottom: 30px;
      .image-block {
        width: 30%;
      }
      .text-block {
        width: 70%;
        padding-left: 30px;
      }
    }
  }
}

/* =======================================================
   product-block
======================================================== */
.product-block {
  background: var(--Ft-color);
  padding: clamp(20px, 5.556vw, 60px);
  &.green {
    background: var(--Green2);
  }
}
.product-item {
  background: #fff;
  display: flex;
  padding: clamp(10px, 3.704vw, 40px);
  scroll-margin-top: 100px;
  .image-block {
    padding: 40px;
    position: relative;
    @media (min-width: 1081px) {
      width: 30%;
    }
    & img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  .text-block {
    @media (min-width: 1081px) {
      width: 70%;
      padding-left: 40px;
    }
    & h3,
    & p,
    & dl {
      border-bottom: 1px solid var(--Ft-color);
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
    & h3 {
      font-family: var(--hina);
      font-size: clamp(2rem, 3.125vw, 2.4rem);
    }
  }
  & + .product-item {
    margin-top: 60px;
  }
}
@media (max-width: 1080px) {
  .product-item {
    flex-direction: column;
    .image-block {
      min-height: 20vh;
      margin-bottom: 40px;
    }
  }
}

/* =======================================================
   definition
======================================================== */
.definition {
  font-weight: 500;
  margin-bottom: 10px;
  &::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--Black);
    position: relative;
    top: -2px;
    left: 0;
    margin-right: 6px;
    border-radius: 4px;
  }
}

/* =======================================================
   list01
======================================================== */
.list01 {
  padding-left: 1rem;
  & li {
    line-height: 1.4;
    padding-left: 1.6rem;
    text-indent: -1.2rem;
    & + li {
      margin-top: 10px;
    }
  }
  & li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--Black);
    transform: rotate(45deg);
    position: relative;
    top: -4px;
    margin-right: 8px;
  }
}

/* =======================================================
   btn-block
======================================================== */
.btn-block {
  text-align: center;
  margin-top: 100px;
  line-height: 1.4;
  &.mt_60 {
    margin-top: clamp(40px, 7.813vw, 60px);
  }
}
.btn02-exp {
  margin-bottom: 30px;
  &.emp {
    font-family: var(--hina);
    color: var(--Orange-red);
    font-size: 2rem;
  }
}
.recruit-block .btn-block {
  margin-top: 40px;
}

/* =======================================================
   btn02
======================================================== */
.btn02 a {
  display: inline-block;
  background: var(--Orange-red);
  padding: 24px 20px;
  font-family: var(--hina);
  color: #fff;
  min-width: clamp(300px, 42.857vw, 600px);
  font-size: 2rem;
  position: relative;

  &::before {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    border: 1px solid var(--Orange-red);
  }
  &:hover {
    background: #fff;
    color: var(--Orange-red);
  }
}
/*======== green ==========================*/
.btn02.green a {
  background: var(--Green1);
  &::before {
    border-color: var(--Green1);
  }
  & > span {
    position: relative;
    display: inline-block;
    &::before,
    &::after {
      font-family: webfont;
      font-size: 34px;
      color: var(--Green3);
      display: inline-block;
      position: absolute;
      bottom: -20px;
    }
    &::before {
      content: '\e904';
      left: -37px;
      @media (max-width: 599px) {
        left: -23px;
      }
    }
    &::after {
      content: '\e905';
      right: -37px;
      @media (max-width: 599px) {
        right: -23px;
      }
    }
  }
  &:hover {
    background: #fff;
    color: var(--Green3);
  }
}
/*======== long ==========================*/
.btn02.long a {
  min-width: clamp(445px, 42.857vw, 600px);
  @media (max-width: 599px) {
    min-width: auto;
    padding: 20px 30px;
  }
  & span > span {
    display: inline-block;
    margin-left: 1.6rem;
    @media (max-width: 599px) {
      margin-left: 0;
      display: block;
    }
  }
}

/* =======================================================
   corporate
======================================================== */
.l-main.corporate {
  width: 100%;
  height: 100%;
  clip-path: inset(1px);

  &::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../images/bg/contact.jpg) center top no-repeat;
    background-size: cover;
  }
}
.corporate-head {
  background: rgb(255 255 255 / 87%);
  max-width: 980px;
  margin: 0 auto clamp(80px, 10.294vw, 140px);
  padding: clamp(20px, 7.5vw, 120px); /*1600*/
  @media (max-width: 1033px) {
    margin: 0 clamp(10px, 2.5vw, 40px) clamp(80px, 10.294vw, 140px);
  }
}
@media (min-width: 992px) {
  .corporate-head .top-head2 br {
    display: none;
  }
}

.corporate-top-image {
  position: absolute;
  width: 100%;
  bottom: clamp(-140px, -10.294vw, -80px);
  display: flex;
  justify-content: space-between;
  z-index: -1;
  .image-block {
    width: calc((100% - 5.729vw) / 3);
    height: 500px;
    position: relative;
    & img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      object-fit: cover;
    }
  }
}

@media (max-width: 991px) {
  .corporate-top-image {
    height: 30vh;
    .image-block {
      width: 100%;
      height: 100%;
      position: absolute;
      animation: cp-image-fade 15s infinite;
      animation-timing-function: ease-in-out;
      &:nth-child(1) {
        animation-delay: 0s;
        & img {
          object-position: 50% 70%;
        }
      }
      &:nth-child(2) {
        animation-delay: 5s;
      }
      &:nth-child(3) {
        animation-delay: 10s;
      }
    }
  }
}
@keyframes cp-image-fade {
  0% {
    opacity: 0;
  }
  13.33% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  46.66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*======== cp-exp ==========================*/
.cp-exp-image {
  max-width: 980px;
  margin: 40px auto 100px;
  padding: 0 10px;
}

.cp-exp-cts {
  @media (min-width: 992px) {
    display: flex;
  }
}
.cp-exp-text {
  background: #f6f8f5;
  padding: 80px clamp(40px, 6.25vw, 100px) 80px calc((100vw - 1600px) / 2);

  @media (max-width: 991px) {
    padding-right: clamp(10px, 2.5vw, 40px); /*1600*/
  }
}
.cp-exp-item {
  display: flex;
  align-items: center;
  padding-left: clamp(10px, 2.5vw, 40px); /*1600*/
  .number {
    background: var(--Green1);
    width: clamp(100px,15.625vw,120px); /*768*/
    height: clamp(100px,15.625vw,120px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    flex-shrink: 0;

    & span {
      line-height: 1;
    }
    & span:first-child {
      font-size: 12px;
      font-family: var(--ou);
    }
    & span:last-child {
      font-family: var(--hina);
      font-size: 50px;
    }
  }
  .text-block {
    width: calc(100% - clamp(100px,15.625vw,120px));
    margin-left: 30px;
    @media (max-width: 991px) {
      width: 100%;
    }
    & h3 {
      font-family: var(--hina);
      font-size: clamp(2.4rem, 1.75vw, 2.8rem);
      margin-bottom: 30px;
    }
  }
  + .cp-exp-item {
    border-top: 1px solid var(--Green1);
    margin-top: clamp(40px,5.208vw,60px);
    padding-top: clamp(40px,5.208vw,60px);
  }
}

@media (max-width: 768px) {
  .cp-exp-item {
    flex-direction: column;
    padding: 0 clamp(10px,5.208vw,40px);
    .text-block {
      width: 100%;
      margin-top: 30px;
      margin-left: 0;
    }
  }
}

.cp-exp-cts .image-block {
  display: flex;
  @media (min-width: 992px) {
    padding: 60px 0;
    margin-left: 30px;
    flex-direction: column;
    justify-content: space-between;
  }
  @media (max-width: 499px) {
    display: none;
  }
  @media (max-width: 991px) {
    flex-direction: row;
    & > div {
      width: 50%;
      height: 30vh;
    }
    & img {
      object-fit: cover;
      height: 30vh;
    }
  }
}

/*======== cp-item ==========================*/
.p-index__sec.cp-item {
  background: #fff;
  position: relative;
  padding-top: 80px;
  margin-bottom: 120px;
  padding-bottom: 80px;
  @media (max-width: 1080px) {
    padding-top: 40px;
  }
  &::before {
    content: '';
    display: block;
    position: absolute;
    background: var(--Bg-color);
    width: 70%;
    height: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    @media (max-width: 1080px) {
      width: 100%;
    }
  }
  .text-block {
    padding: 40px 0;
  }
}
.cp-item .separate-block.normal .image-block {
  position: relative;
  @media (min-width: 1081px) {
    & img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      object-fit: cover;
      height: 100%;
    }
  }
  @media (max-width: 1080px) {
    margin-top: 0;
  }
}

/*======== cp-item2 ==========================*/
.p-index__sec.bg-w.cp-item2 {
  margin-top: -120px;
  .c-container {
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    &::before {
      content: '';
      display: block;
      position: absolute;
      background: var(--Bg-color);
      width: 70%;
      height: 100%;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      @media (max-width: 1080px) {
        width: 100%;
      }
    }
  }
  .-wide {
    position: relative;
    text-align: center;
    .text-block {
      max-width: 980px;
      margin: 0 auto 80px;
    }
    .image-block .cp-item2-image {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      & img {
        object-fit: cover;
        max-height: 30vh;
      }
      @media (min-width: 992px) {
        & img {
          width: calc(100% / 3);
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .cp-item2 .image-block {
    width: 100%;
    overflow-x: scroll;

    .cp-item2-image {
      width: 1100px;
      /* overflow-x: scroll; */
      position: relative;

      & img {
        width: 100%;
      }
    }
  }
}

/*======== scroll ==========================*/
@media (max-width: 991px) {
  .cp-item2 .image-block {
    padding-bottom: 10px;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #95b07a #e0e0e0;
  }
  /* Chrome / Safari / Edge */
  .cp-item2 .image-block::-webkit-scrollbar {
    height: 10px;
  }

  .cp-item2 .image-block::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
  }

  .cp-item2 .image-block::-webkit-scrollbar-thumb {
    background-color: #95b07a;
    border-radius: 10px;
  }

  .cp-item2 .image-block::-webkit-scrollbar-thumb:hover {
    background-color: #7c9866;
  }
}

.cp-item h3,
.cp-item2 h3 {
  font-family: var(--hina);
  font-size: clamp(2.4rem, 1.75vw, 2.8rem);
  margin-bottom: 40px;
  @media (max-width: 991px) {
    text-align: center;
  }
}

/*======== cp-bottom ==========================*/
.cp-bottom {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  padding: clamp(20px, 7.353vw, 100px);
  font-family: var(--hina);
  font-size: clamp(1.8rem, 1.618vw, 2.2rem);
  overflow: hidden;
  &::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: -23px;
    width: 330px;
    aspect-ratio: 330 / 500;
    background: url(../images/common/bg-illust.svg) bottom right no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: 0.07;
  }
}

/* =======================================================
   separate image double
======================================================== */
.separate-block .image-block.double {
  display: flex;
  justify-content: space-between;
  @media (max-width: 599px) {
    flex-direction: column;
  }
  .double1,
  .double2 {
    width: 48%;
    height: 30vh;
    position: relative;
    @media (max-width: 599px) {
      width: 100%;
    }
    & img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
  }
  .double1 {
    @media (max-width: 599px) {
      margin-bottom: 10px;
    }
  }
}
@media (min-width: 1081px) {
  .separate-block .image-block.double {
    width: calc(40% + 7.292vw);
    margin-left: -7.292vw;
    position: relative;
    .double1,
    .double2 {
      width: 54%;
      position: absolute;
      & img {
        object-fit: cover;
      }
    }
    .double1 img {
      max-height: 300px;
    }
    .double2 {
      bottom: 0;
      right: 0;
    }
  }
}

/* =======================================================
   recipe
======================================================== */
.recipe-item {
  padding: clamp(10px, 3.906vw, 30px); /*768*/
  background: #fff;
  display: grid;
  grid-template-columns: 26% 1fr;
  grid-template-rows: auto;
  gap: 80px;
  grid-template-areas: 'recipe-left-group recipe-cts';
  @media (max-width: 1080px) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px 0px;
    grid-template-areas:
      'recipe-image'
      'recipe-cts'
      'recipe-use';
  }
  & + .recipe-item {
    margin-top: 60px;
  }
}
.recipe-use {
  grid-area: recipe-use;
  align-self: start;
}

/*======== recipe-left-group ==========================*/
.recipe-left-group {
  display: flex;
  flex-direction: column;
  gap: 70px;
  grid-area: recipe-left-group;
  align-self: start;
  @media (max-width: 1080px) {
    display: contents;
  }
}

/*======== recipe-cts ==========================*/
.recipe-cts {
  grid-area: recipe-cts;
  @media (max-width: 1080px) {
    margin-bottom: 40px;
  }
  & h3 {
    font-family: var(--hina);
    font-size: 2.6rem;
    border-bottom: 1px solid var(--Ft-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
.cts-comment {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 5px;
}

/* =======================================================
   recipe-image
======================================================== */
.recipe-image {
  position: relative;
  height: 30vh;
  &.noimage img {
    border: 10px solid #e6e6e6;
  }
  & img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    @media (max-width: 1080px) {
      max-width: 400px;
      left: 50%;
      transform: translateX(-50%);
    }
  }
  @media (max-width: 1080px) {
    grid-area: recipe-image;
    align-self: start;
  }
}
/* =======================================================
   recipe-use
======================================================== */
.recipe-use {
  border: 1px solid var(--Green1);
  padding: 35px 15px 20px;
  text-align: center;
  position: relative;
}
.use-head {
  display: inline-block;
  background: var(--Green2);
  padding: 8px 20px;
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.use-image {
  & img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.use-item {
  line-height: 1.4;
  margin-top: 20px;
}
.use-link {
  display: flex;
  justify-content: space-around;
  margin-top: 26px;
  & a {
    color: var(--Black);
    font-size: 1.4rem;
    font-weight: 500;
    border-bottom: 1px solid;
    &::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--Black);
      position: relative;
      top: -2px;
      left: 0;
      margin-right: 6px;
      border-radius: 4px;
      transition: all 0.3s;
    }
    &:hover {
      color: var(--Link-color);
      &::before {
        background: var(--Link-color);
      }
    }
  }
}
@media (max-width: 1080px) {
  .recipe-use {
    display: flex;
  }
  .use-image {
    margin-right: 40px;
    & img {
      max-height: 20vh;
      width: auto;
      height: 100%;
      display: block;
    }
  }
  .use-item {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .use-link {
    margin-top: auto;
  }
}
@media (max-width: 669px) {
  .recipe-use {
    flex-direction: column;
  }
  .use-image {
    margin-right: 0;
    & img {
      margin: 0 auto;
      max-height: 20vh;
      width: auto;
      height: 100%;
      display: block;
    }
  }
  .use-link {
    margin-top: 20px;
  }
}

/* =======================================================
   material
======================================================== */
.material {
  background: var(--Bg-color);
  padding: clamp(10px, 3.906vw, 30px); /*768*/
  font-size: 1.5rem;
  margin-bottom: 40px;
  &.color2 {
    background: var(--Green2);
  }
  &.color3 {
    background: #f1dcd4;
  }
  &.color4 {
    background: #f2ecd8;
  }
}
.material-title {
  display: block;
  border-bottom: 1px solid var(--Ft-color);
  padding-bottom: 14px;
}
.material ul {
  display: flex;
  flex-wrap: wrap;
  &.sub-material {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--Ft-color);
    width: 100%;
  }
  & li {
    white-space: nowrap;
    margin-right: 30px;
    margin-top: 14px;
    &.li-wrap {
      white-space: normal;
    }

    &:not(.subtitle):not(.no-mark)::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--Black);
      position: relative;
      top: -2px;
      left: 0;
      margin-right: 6px;
      border-radius: 4px;
    }
    &.subtitle {
      width: 100%;
    }
    &.no-mark {
      width: 100%;
      white-space: normal;
    }
  }
}
/* =======================================================
   make
======================================================== */
.make-title {
  display: inline-block;
  background: var(--Bg-color);
  padding: 2px 3em;
  margin-bottom: 20px;
  font-size: 1.5rem;
  &.color2 {
    background: var(--Green2);
  }
  &.color3 {
    background: #f1dcd4;
  }
  &.color4 {
    background: #f2ecd8;
  }
}
.make {
  & ol {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--Ft-color);
    & li {
      list-style: number;
      margin-left: 1.6em;
      padding-left: 0.5em;
      & + li {
        margin-top: 1.4em;
      }
    }
  }
}
.make-point {
  display: flex;
  @media (max-width: 768px) {
    flex-direction: column;
  }
  & span {
    width: 80px;
    font-weight: 600;
    font-size: 1.5rem;
    margin-right: clamp(20px, 3.704vw, 40px);
    color: var(--Orange-red);
    @media (max-width: 1080px) {
      margin-bottom: 10px;
    }
    &::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--Orange-red);
      position: relative;
      top: -2px;
      left: 0;
      margin-right: 6px;
      border-radius: 4px;
    }
  }
  & p {
    flex-grow: 1;
  }
}

/* =======================================================
   recruit
======================================================== */
.recruit-block {
  background: #fff;
  padding-top: clamp(30px, 5.556vw, 60px);
  padding-bottom: clamp(30px, 5.556vw, 60px);
}
.recruit-att {
  text-align: center;
  margin-top: -50px;
  margin-bottom: 50px;
  color: var(--Red);
}

/* =======================================================
   contact
======================================================== */
.contact-block {
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  &::before {
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    left: 40%;
    width: 1px;
    height: calc(100% - 40px);
    background: var(--Ft-color);
  }
  & > p {
    width: 40%;
    text-align: center;
    font-family: var(--hina);
    font-size: clamp(2rem, 2.222vw, 2.4rem);
  }
  .contact-num {
    width: 60%;
    text-align: center;
  }

  .b-contact__tel {
    color: var(--Black);
    font-size: clamp(3rem, 2.941vw, 4rem);
    letter-spacing: 0.1em;

    & i::before {
      color: var(--Black);
      font-size: clamp(2.4rem, 2.206vw, 3rem);
    }
  }
}

@media (max-width: 768px) {
  .contact-block {
    flex-direction: column;
    padding: 30px 20px;
    &::before {
      width: calc(100% - 40px);
      height: 1px;
      top: 80px;
      left: 20px;
    }
    & > p {
      width: 100%;
      margin-bottom: 40px;
    }
    .contact-num {
      width: 100%;
    }
  }
}

/* =======================================================
   privacy
======================================================== */
.p-head {
  font-size: clamp(2rem, 2.422vw, 2.4rem);
  margin-bottom: 30px;
  margin-top: 80px;
}
.privacy ul {
  margin-top: 30px;
}
.privacy ul li {
  padding-left: 1.6rem;
  text-indent: -1.2rem;
  &::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--Black);
    transform: rotate(45deg);
    position: relative;
    top: -4px;
    margin-right: 8px;
  }
}
.privacy address {
  font-style: normal;
  background: var(--Ft-color);
  padding: 20px;
  margin-top: 12px;
}

/* =======================================================
   news
======================================================== */
.news a {
  display: flex;
  color: var(--Black);
  padding-bottom: clamp(20px, 5.208vw, 40px);
  margin-bottom: clamp(20px, 5.208vw, 40px);
  border-bottom: 1px solid var(--Line-color);
  align-items: center;
  flex-wrap: wrap;
  & i {
    margin-left: auto;
    width: 20px;
  }
  &:hover {
    color: var(--Orange-red);
  }
}
.news-date {
  width: 100%;
  margin-bottom: 10px;
  font-family: var(--ou);
  font-size: 2rem;
  color: #a6a6a6;
}
.news-title {
  font-size: clamp(1.8rem, 2.604vw, 2rem);
  padding-right: 20px;
  width: calc(100% - 20px);
}
/*======== news-entry ==========================*/
.news-entry__date {
  font-family: var(--ou);
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: #a6a6a6;
}
.news-entry__title {
  font-family: var(--hina);
  font-size: clamp(2.2rem, 2.624vw, 2.6rem); /*991*/
  border-bottom: 1px solid var(--Line-color);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.news-entry__body img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 40px;
}
.news-entry__btn {
  text-align: center;
  margin-top: clamp(80px, 15.625vw, 120px); /*768*/
  & a {
    position: relative;
    display: inline-block;
    padding: 12px 36px 12px 55px;
    white-space: nowrap;
    color: #fff;
    background: var(--Black);
    &::before {
      content: '';
      display: block;
      position: absolute;
      top: -5px;
      left: -5px;
      width: calc(100% + 10px);
      height: calc(100% + 10px);
      border: 1px solid var(--Black);
      transition: all 0.3s;
    }
    &::after {
      content: '';
      display: block;
      position: absolute;
      top: calc(50% + 1px);
      left: 30px;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      border-radius: 6px;
      background: #fff;
      transition: all 0.3s;
    }
    &:hover {
      background: var(--Link-color);
      &::before {
        border-color: var(--Link-color);
      }
      &::after {
        height: 1px;
      }
    }
  }
}


.message-sign {
  text-align: right;
  & span {
    display: block;
    font-size: 1.4rem;
    
  }
}











/*251102　追加*/


.customers_top_btn{
  margin-top: 40px;
  display: flex;
  justify-content: center;
  span{
    font-size: 0.8em;
  }
  a{
  background-color: #7c9866;
  &::before {border: 1px solid #7c9866;}}
}
@media screen and (min-width: 600px) {
  
.customers_top_btn{
br{display: none;}
span{
  font-size: 1em;
}
}
}


@media screen and (max-width: 600px) {
.customers_top_btn{font-size: 15px;}}


@media screen and (min-width: 1081px) {
.customers_top_btn{
  margin-top: 60px;}}









/*251204*/


@media screen and (min-width: 1081px) {
.product-item{
    position: static;

 .image-block{
    position: static;
    padding: 0;
    
  }

  .image-block_img{
    width: 100%;
    img{
    position: static;
    width: 100%;
    height: auto;
    }
  }


}}

.customers_item_btn_sp,.customers_item_btn_pc{
  margin-top: 0;
  a{
  background-color: #7c9866;

  &::before {border: 1px solid #7c9866;}
  /* &::after {border: 1px solid #7c9866;} */


  }
}

.customers_item_btn_pc{
display: none;}


@media screen and (min-width: 1081px) {

  .product-item{
    .image-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    }
  }


.customers_item_btn_pc{
display: inline-block;
width:100%;
margin-left: 5px;
width: calc(100% - 10px);
 font-size: 1.3vw;
margin-top: 0;
a{
width:100%;
padding-left: 5.5vw;



  &::after {left: 3vw;}
span{
font-size: 0.8em;}
}
}

.customers_item_btn_sp{
display: none;}


  .image-block_img{
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 1350px) {

.customers_item_btn_pc{

 font-size: 15px;
a{
padding-left: 7vw;
  &::after {left: 5.5vw;}}
}


}



@media screen and (min-width: 1500px) {
.customers_item_btn_pc{
  font-size: 15px;
  max-width: none;
a {
  
  
  padding-left: 55px;
  &::after {
    left: 30px;}}
  
  br{
display: none;}
}
}