﻿@charset "UTF-8";
/* ==================== */
/* デザインB: カット野菜UI */
/* 商品・サービスをスタイリッシュに見せる */
/* ==================== */

html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    background-color: #f7f1dd;
    color: #333;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .2);
}

main {
  min-height: 100vh;
}

.yasai-slider-stack {
  --yasai-gap: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  z-index: 4;
  pointer-events: none;
}

.yasai-slider-stack::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.yasai-slider {
  position: relative;
  align-self: center;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
  background: transparent;
}

.yasai-slider--left {
  grid-column: 1;
}

.yasai-slider--right {
  grid-column: 2;
}

.yasai-slider--top {
  grid-row: 1;
}

.yasai-slider--bottom {
  grid-row: 2;
}

.yasai-slider-track {
  display: flex;
  gap: 0;
  width: max-content;
}

.yasai-slider--ltr .yasai-slider-track {
  animation: yasai-marquee-left 36s linear infinite;
}

.yasai-slider--rtl .yasai-slider-track {
  animation: yasai-marquee-right 36s linear infinite;
}

.yasai-slider-group {
  display: flex;
  gap: var(--yasai-gap);
}

.yasai-slide {
  width: 120px;
  height: 72px;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  transform-origin: center center;
}

.yasai-slide[src$="yasai011.png"],
.yasai-slide[src$="yasai012.png"],
.yasai-slide[src$="yasai013.png"],
.yasai-slide[src$="yasai014.png"],
.yasai-slide[src$="yasai015.png"] {
  width: 144px;
  height: 88px;
}

.yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai001.png"],
.yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai002.png"],
.yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai003.png"],
.yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai004.png"],
.yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai005.png"] {
  width: 112px;
  height: 68px;
}

.yasai-slider--left .yasai-slide {
  animation: yasai-tilt-left 2s steps(2, end) infinite;
}

.yasai-slider--right .yasai-slide {
  animation: yasai-tilt-right 2s steps(2, end) infinite;
}

@keyframes yasai-marquee-left {
  from {
    transform: translateX(-25%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes yasai-marquee-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@keyframes yasai-tilt-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}

@keyframes yasai-tilt-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(15deg);
  }
}

@media (max-width: 768px) {
  .yasai-slide {
    width: 96px;
    height: 58px;
  }

  .yasai-slide[src$="yasai011.png"],
  .yasai-slide[src$="yasai012.png"],
  .yasai-slide[src$="yasai013.png"],
  .yasai-slide[src$="yasai014.png"],
  .yasai-slide[src$="yasai015.png"] {
    width: 112px;
    height: 68px;
  }

  .yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai001.png"],
  .yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai002.png"],
  .yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai003.png"],
  .yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai004.png"],
  .yasai-slider-group[aria-hidden="true"] .yasai-slide[src$="yasai005.png"] {
    width: 90px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yasai-slider-track {
    animation: none;
  }

  .yasai-slide {
    animation: none !important;
  }
}

.mobile-style-box {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background-color: #fff;
  /* background-image: url(../images/back.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.mobile-style-box::-webkit-scrollbar {
  display: none;
}

/* ==================== */
/* パララックスセクション（ヒーローエリア） */
/* ==================== */
.hero-parallax {
  position: relative;
  height: 300vh;
}

.hero-bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/hero-right.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-slide {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .hero-slide-text {
  background-color: rgba(255, 255, 255, 0.6);
} */

.top-vew-animation {
  font-size: clamp(20px, 6vw, 32px);
  line-height: 2;
  font-weight: 700;
  text-align: center;
}


/* ていねい色の設定 */
.top-vew-animation001 .char:nth-child(1) { color: #2e7d32; font-size: 1.2em; }
.top-vew-animation001 .char:nth-child(2) { color: #2e7d32; font-size: 1.2em; }
.top-vew-animation001 .char:nth-child(3) { color: #2e7d32; font-size: 1.2em; }
.top-vew-animation001 .char:nth-child(4) { color: #2e7d32; font-size: 1.2em; }
/* .top-vew-animation001 .char:nth-child(5) { color: #10ad45; } */

/* いろどりの色の設定 */
.top-vew-animation002 .char:nth-child(1) { color: #ea8a82; font-size: 1.2em;  }
.top-vew-animation002 .char:nth-child(2) { color: #ea8a82; font-size: 1.2em;  }
/* .top-vew-animation002 .char:nth-child(5) { color: #fa914b; }
.top-vew-animation002 .char:nth-child(6) { color: #f5d142; }
.top-vew-animation002 .char:nth-child(7) { color: #39ce56; }
.top-vew-animation002 .char:nth-child(8) { color: #9865f7; } */

.hero-slide-image {
  background-color: transparent;
}

.hero-slide-image img {
  max-width: 220px;
  width: 90%;
  height: auto;
}

.hero-slide-image img.parallax-vegetables {
  max-width: 400px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-logo {
  width: clamp(160px, 40vw, 340px);
  height: auto;
  display: block;
  margin: 12px auto 0;
  filter: none;
}

.parallax-vegetables {
  will-change: transform;
}

@media (max-width: 768px) {
  .hero-parallax {
    height: calc(var(--vh, 1vh) * 300);
  }

  .hero-bg {
    height: calc(var(--vh, 1vh) * 100);
  }

  .hero-slide {
    height: calc(var(--vh, 1vh) * 100);
  }
}

@supports (height: 100lvh) {
  @media (max-width: 768px) {
    .hero-parallax {
      height: 300lvh;
    }

    .hero-bg {
      height: 100lvh;
    }

    .hero-slide {
      height: 100lvh;
    }
  }
}

/* ==================== */
/* 会社概要 */
/* ==================== */
.company {
  padding: 0;
}

.company-bg {
  background-image: url(../images/company-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.company-content {
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 40px 28px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.company-title,
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #2e7d32;
  margin: 0 auto 20px;
  padding-bottom: 12px;
  display: block;
  width: fit-content;
  text-align: center;
  position: relative;
}

.company-title::after,
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2em;
  border-bottom: 3px solid #4CAF50;
  transform: translateX(-50%);
}

.company-text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 12px;
  color: #555;
}

.company-info {
  font-size: 14px;
  margin-top: 20px;
  text-align: left;
  padding: 15px;
  border-radius: 8px;
}

.company-info .info-row {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.company-info .info-row:last-child {
  border-bottom: none;
}

.company-info dt {
  width: 70px;
  flex-shrink: 0;
  font-weight: 600;
  color: #2e7d32;
}

.company-info dd {
  line-height: 1.7;
  margin-left: 10px;
  flex: 1;
  color: #555;
}

/* ==================== */
/* 商品紹介 */
/* ==================== */
.product {
  padding: 50px 20px;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 380px;
  margin: 0 auto;
}

.product-item {
  text-align: center;
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 12px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-img:hover img {
  transform: scale(1.1);
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ==================== */
/* サービス紹介 */
/* ==================== */
.service {
  padding: 50px 20px;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item {
  margin-bottom: 25px;
  text-align: center;
  background-color: #f8f9fa;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.service-img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

/* ==================== */
/* お問い合わせ */
/* ==================== */
.contact {
  padding: 50px 20px;
  text-align: center;
  background-color: #f8f9fa;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info {
  margin-top: 20px;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-tel,
.contact-fax {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.contact-label {
  color: #4CAF50;
  font-weight: 700;
}

.contact-hours {
  font-size: 14px;
  color: #888;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* ==================== */
/* MAP */
/* ==================== */
.access {
  padding: 50px 20px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==================== */
/* フェードインアニメーション */
/* ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== */
/* 求人詳細 */
/* ==================== */
.recruit {
  padding: 50px 20px;
}

.recruit-content {
  max-width: 380px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 40px 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.recruit-heading {
  font-size: 16px;
  font-weight: 700;
  color: #2e7d32;
  margin: 0 0 18px;
  line-height: 1.6;
}

.recruit-info {
  margin: 0;
  padding: 0;
}

.recruit-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
}

.recruit-row:last-child {
  border-bottom: none;
}

.recruit-row dt {
  font-size: 14px;
  min-width: 84px;
  font-weight: 700;
  color: #2e7d32;
}

.recruit-row dd {
  font-size: 14px;
  margin: 0;
  line-height: 1.8;
  color: #555;
}

.recruit-salary-main {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #2e7d32;
}

.recruit-salary-breakdown {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

.recruit-salary-breakdown:first-of-type {
  margin-top: 2px;
}

.recruit-contact {
  margin-top: 20px;
  text-align: center;
}

.recruit-contact-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: #2e7d32;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}

.recruit-contact-button:hover {
  opacity: 0.9;
}

.contact {
  padding: 130px 20px 50px;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contact .contact {
  text-align: left;
}

.contact-form-lead {
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

#contact .formbox {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 28px 24px 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

#contact .form-t,
#contact .mailform dt {
  font-size: 15px;
  font-weight: 700;
  color: #525252;
  line-height: 1.7;
}

#contact .mailform dd,
#contact .form-b2 label {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

#contact .mailform dt.mfp,
#contact .mailform dd.mfp {
  margin: 0;
}

#contact .cp_iptxt {
  margin-bottom: 30px;
}

#contact .form-b2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

#contact .form-b2 label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#contact .mailform dt.mfp {
  margin-bottom: 8px;
}

#contact .mailform dd.mfp {
  margin-bottom: 30px;
}

#contact .must {
  color: #e53935;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: #8a8a8a;
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #81c784;
  box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.2);
}

#contact .mfp_buttons {
  text-align: center;
}

#mailformpro #mfp_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}

#mailformpro #mfp_hidden input,
#mailformpro #mfp_hidden textarea {
  display: none;
}

.contact-submit-button {
  display: inline-block;
  min-width: 180px;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background-color: #2e7d32;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-submit-button:hover {
  opacity: 0.9;
}

/* ==================== */
/* サンクスページ */
/* ==================== */
.thanks {
  padding: 130px 20px 60px;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks .section-title::after {
  content: none;
}

.thanks-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.thanks-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.thanks-comment {
  margin: 12px 0 0;
  color: #2e7d32;
  font-weight: 700;
  line-height: 1.7;
}

.thanks-card {
  margin: 20px 0 22px;
  padding: 18px 20px;
  text-align: left;
}

.thanks-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.thanks-info {
  margin: 0;
  padding: 0;
}

.thanks-info-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e4e1d7;
}

.thanks-info-row:last-child {
  border-bottom: none;
}

.thanks-info dt {
  min-width: 64px;
  font-weight: 700;
  color: #2e7d32;
}

.thanks-info dd {
  margin: 0;
  line-height: 1.7;
  color: #555;
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 16px 0 8px;
}

.thanks-button,
.thanks-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}

.thanks-button {
  min-width: 200px;
  padding: 12px 26px;
  background-color: #2e7d32;
  color: #fff;
  font-size: 14px;
}

.thanks-link {
  padding: 8px 16px;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  font-size: 13px;
}

.thanks-button:hover,
.thanks-link:hover {
  opacity: 0.9;
}

.thanks-note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #777;
}
#mfp_hidden { display: none !important; }