@charset "utf-8";
/* CSS Document */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green:       #3a8a4f;
      --green-dark:  #1e5c32;
      --green-mid:   #2d6e42;
      --green-light: #e8f5ec;
      --gold:        #b89a5a;
      --gold-light:  #f8f2e4;
      --text:        #2a2a2a;
      --gray:        #f7f7f5;
      --mid-gray:    #888;
      --white:       #fff;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Noto Sans JP', sans-serif; color: var(--text); font-weight: 300; overflow-x: hidden; }
    img  { display: block; width: 100%; height: 100%; object-fit: cover; }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
      background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(0,0,0,.07); transition: box-shadow .3s;
    }
    .hd {
      max-width: 1140px; margin: auto; padding: 0 32px;
      height: 62px; display: flex; align-items: center; justify-content: space-between;
    }
    .logo-link { text-decoration: none; display: flex; align-items: baseline; gap: 10px; }
    .logo-link img{ height: 100%; max-width: 230px; width: 32%; min-width: 180px; object-fit: contain; }
    .logo-en { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; letter-spacing: .14em; color: var(--green-dark); }
    .logo-ja { font-size: 11px; letter-spacing: .16em; color: var(--mid-gray); font-weight: 300; }
    nav { display: flex; align-items: center; gap: 28px; }
    nav a { font-size: 12px; letter-spacing: .1em; color: var(--text); text-decoration: none; transition: color .2s; }
    nav a:hover { color: var(--green); }
    .nav-cta { background: var(--green); color: #fff !important; padding: 9px 22px; font-size: 11px; letter-spacing: .16em; transition: background .2s !important; }
    .nav-cta:hover { background: var(--green-dark) !important; }

    /* ===== HERO スライドショー ===== */
    .hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
    .hero-slides { position: absolute; inset: 0; }
    .hero-slide {
      position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
      background-size: cover; background-position: center;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide:nth-child(1) { background-image: url("../img/fv01.jpg"); }
    .hero-slide:nth-child(2) { background-image: url("../img/fv02.jpg"); }
    .hero-slide:nth-child(3) { background-image: url("../img/fv03.jpg"); }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(115deg, rgba(20,70,35,.80) 0%, rgba(45,110,60,.60) 42%, rgba(90,150,100,.22) 70%, rgba(160,210,160,.04) 100%);
    }
    .hero::after {
      content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 100px;
      background: var(--white); clip-path: ellipse(62% 100% at 50% 100%); z-index: 2;
    }
    .hero-inner {
      position: relative; z-index: 3;
      max-width: 1140px; margin: auto; padding: 0 32px;
      height: 100%; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
    }
    .hero-text { color: #fff; }
    .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif; font-size: 11px; font-weight: 300;
      letter-spacing: .42em; text-transform: uppercase; opacity: .85; margin-bottom: 24px;
      display: flex; align-items: center; gap: 14px;
    }
    .hero-eyebrow span { width: 36px; height: 1px; background: rgba(255,255,255,.6); display: inline-block; }
    .hero-title { font-family: 'Noto Serif JP', serif; font-size: clamp(28px, 4vw, 54px); font-weight: 700; line-height: 1.55; margin-bottom: 22px; }
    .hero-sub { font-size: 15px; line-height: 2.1; opacity: .88; margin-bottom: 36px; }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
    .btn-white-solid { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--green-dark); padding: 15px 36px; font-size: 13px; font-weight: 500; letter-spacing: .12em; text-decoration: none; transition: all .25s; }
    .btn-white-solid:hover { background: var(--green-light); transform: translateY(-2px); }
    .btn-white-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,.7); color: #fff; padding: 15px 36px; font-size: 13px; letter-spacing: .12em; text-decoration: none; transition: all .25s; }
    .btn-white-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
    .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
    .badge { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.38); border-radius: 20px; padding: 6px 18px; font-size: 11px; letter-spacing: .12em; color: #fff; }
    .hero-card { background: rgba(255,255,255,.14); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.28); border-radius: 4px; padding: 36px 28px; text-align: center; color: #fff; min-width: 200px; }
    .hero-card-icon { font-size: 48px; margin-bottom: 14px; }
    .hero-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: .14em; margin-bottom: 10px; font-weight: 400; }
    .hero-card p { font-size: 12px; opacity: .82; line-height: 2; }
    /* スライドインジケーター */
    .slide-dots { position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
    .slide-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s; }
    .slide-dot.active { background: #fff; }
    .scroll-hint { position: absolute; bottom: 112px; right: 40px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .32em; text-transform: uppercase; }
    .scroll-hint::after { content: ''; width: 1px; height: 44px; background: rgba(255,255,255,.45); animation: sp 2s ease-in-out infinite; }
    @keyframes sp { 0%,100%{opacity:1} 50%{opacity:.3} }

    /* ===== 共通 ===== */
    .sec-label { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-weight: 300; letter-spacing: .42em; color: var(--green); text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .sec-label::before { content: ''; width: 24px; height: 1px; background: var(--green); flex-shrink: 0; }
    .sec-label.center { justify-content: center; }
    .sec-label.center::before { display: none; }
    .sec-rule { width: 1px; height: 40px; background: var(--green); margin: 16px auto; }
    .sec-title { font-family: 'Noto Serif JP', serif; font-size: clamp(22px, 2.8vw, 32px); font-weight: 400; color: var(--green-dark); line-height: 1.6; }
    .sec-divider { width: 36px; height: 2px; background: var(--green); margin: 18px 0; }
    .sec-desc { font-size: 14px; line-height: 2.4; color: #555; }

    /* ===== INTRO ===== */
    .intro { padding: 100px 32px; text-align: center; background: var(--white); }
    .intro .sec-title { margin-bottom: 20px; }
    .intro .sec-desc { max-width: 620px; margin: 0 auto; }

    /* ===== SPLIT ===== */
    .split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
    .split.rev .split-photo { order: -1; }
    .split-photo { overflow: hidden; }
    .split-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
    .split-photo:hover img { transform: scale(1.04); }
    .split-text { display: flex; align-items: center; padding: 80px 72px; background: var(--white); }
    .split-text.pale { background: var(--green-light); }
    .split-text.gray { background: var(--gray); }
    .split-inner { max-width: 415px; }
    .feature-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--green-light); line-height: 1; margin-bottom: -8px; }
    .split-inner .sec-title { margin-bottom: 18px; }
    .split-inner .sec-desc { margin-bottom: 28px; }
    .btn-green { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; padding: 13px 30px; font-size: 12px; font-weight: 400; letter-spacing: .14em; text-decoration: none; transition: background .22s, transform .22s; }
    .btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
    .btn-outline-green { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--green); color: var(--green); padding: 13px 30px; font-size: 12px; letter-spacing: .14em; text-decoration: none; transition: all .22s; }
    .btn-outline-green:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

    /* ===== 会社概要テーブル ===== */
    .company-sec { background: var(--gray); padding: 96px 32px; }
    .company-inner { max-width: 880px; margin: 0 auto; }
    .company-sec .sec-head { text-align: center; margin-bottom: 52px; }
    .company-table { width: 100%; border-collapse: collapse; margin-bottom: 48px; }
    .company-table tr { border-bottom: 1px solid #e2e2de; }
    .company-table th {
      width: 180px; padding: 20px 24px; text-align: left;
      font-size: 12px; font-weight: 500; letter-spacing: .1em;
      color: var(--green-dark); background: var(--green-light); vertical-align: top;
    }
    .company-table td { padding: 20px 24px; font-size: 14px; line-height: 1.9; color: #444; }
    .related-box {
      background: var(--white); border-left: 3px solid var(--gold);
      padding: 28px 32px; display: flex; align-items: flex-start; gap: 20px;
    }
    .related-icon { font-size: 36px; flex-shrink: 0; }
    .related-box h4 { font-family: 'Noto Serif JP', serif; font-size: 16px; color: var(--green-dark); margin-bottom: 8px; font-weight: 400; }
    .related-box p { font-size: 13px; line-height: 2; color: #555; }

    /* ===== PRODUCTS ===== */
.products-sec {
  background: #f8faf8;
  padding: 96px 32px;
}

.sec-head {
  text-align: center;
  margin-bottom: 72px;
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: #fff;
  border: 1px solid #eef1ee;
  border-radius: 20px;
  overflow: hidden;
  transition: .3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.product-image {
  overflow: hidden;
  height: 280px;
}

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

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

.product-content {
  padding: 32px;
}

.product-category {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(63,122,73,.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.product-en {
  font-size: 12px;
  letter-spacing: .15em;
  color: #a0a0a0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.product-text {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}

@media (max-width: 768px) {

  .products-sec {
    padding: 72px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-image {
    height: 220px;
  }

  .product-content {
    padding: 24px;
  }

  .product-content h3 {
    font-size: 20px;
  }
}

    /* ===== VOICE ===== */
    .voice-sec { background: var(--gray); padding: 96px 32px; }
    .voice-grid { max-width: 1100px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .voice-card { border: 1px solid #e5e5e3; padding: 34px 28px; background: var(--white); transition: box-shadow .25s, border-color .25s; }
    .voice-card:hover { box-shadow: 0 4px 28px rgba(0,0,0,.07); border-color: var(--green); }
    .voice-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
    .voice-text { font-size: 13px; line-height: 2.3; color: #555; margin-bottom: 18px; padding-top: 14px; position: relative; }
    .voice-text::before { content: '\201C'; position: absolute; top: -10px; left: -4px; font-family: Georgia, serif; font-size: 56px; color: var(--green); opacity: .18; line-height: 1; }
    .voice-author { font-size: 11px; letter-spacing: .14em; color: var(--green); font-weight: 500; }

    /* ===== CONTACT グリーングラデ ===== */
    .contact-sec { background: var(--white); padding: 96px 32px; }
    .contact-box {
      max-width: 820px; margin: 0 auto;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
      padding: 72px 64px; text-align: center; color: #fff; position: relative; overflow: hidden; border-radius: 2px;
    }
    .contact-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; background: rgba(255,255,255,.05); border-radius: 50%; }
    .contact-box::after  { content: ''; position: absolute; bottom: -80px; left: -40px; width: 200px; height: 200px; background: rgba(255,255,255,.04); border-radius: 50%; }
    .contact-box .sec-label { color: rgba(255,255,255,.65); justify-content: center; position: relative; z-index: 1; }
    .contact-box .sec-label::before { background: rgba(255,255,255,.5); }
    .contact-box h2 { font-family: 'Noto Serif JP', serif; font-size: clamp(20px, 2.8vw, 30px); font-weight: 400; margin-bottom: 18px; position: relative; z-index: 1; }
    .contact-box p { font-size: 14px; line-height: 2.4; opacity: .88; margin-bottom: 44px; position: relative; z-index: 1; }
    .contact-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .phone-btn { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.38); padding: 18px 40px; text-decoration: none; color: #fff; transition: background .2s; }
    .phone-btn:hover { background: rgba(255,255,255,.24); }
    .phone-btn small { font-size: 10px; letter-spacing: .18em; opacity: .75; margin-bottom: 6px; }
    .phone-btn strong { font-size: 24px; letter-spacing: .06em; font-weight: 500; }
    .btn-white-fill { display: inline-flex; align-items: center; gap: 10px; align-self: center; background: #fff; color: var(--green-dark); padding: 20px 44px; font-size: 13px; font-weight: 500; letter-spacing: .14em; text-decoration: none; transition: all .22s; }
    .btn-white-fill:hover { background: var(--green-light); transform: translateY(-2px); }

    /* ===== RECRUIT ===== */
    .recruit-sec { background: var(--gray); padding: 96px 32px; }
    .recruit-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .recruit-photo-block { border-radius: 2px; overflow: hidden; aspect-ratio: 5/4; }
    .recruit-photo-block img { width: 100%; height: 100%; object-fit: cover; }
    .recruit-detail h3 { font-family: 'Noto Serif JP', serif; font-size: 20px; color: var(--green-dark); font-weight: 400; margin-bottom: 24px; line-height: 1.7; }
    .recruit-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
    .recruit-table tr { border-bottom: 1px solid #e2e2de; }
    .recruit-table th { width: 110px; padding: 14px 16px; text-align: left; font-size: 11px; font-weight: 500; letter-spacing: .1em; color: var(--green-dark); background: var(--green-light); vertical-align: top; }
    .recruit-table td { padding: 14px 16px; font-size: 13px; line-height: 1.9; color: #444; }
    .recruit-note { font-size: 12px; color: #777; line-height: 2; margin-bottom: 28px; }
    .recruit-cta-box { background: var(--green-dark); color: #fff; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .recruit-cta-box p { font-size: 13px; line-height: 1.9; opacity: .88; }
    .btn-border-white { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.45); color: #fff; padding: 12px 28px; font-size: 12px; letter-spacing: .14em; text-decoration: none; transition: all .22s; white-space: nowrap; }
    .btn-border-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

    /* ===== MAP ===== */
    .map-sec { background: var(--white); }
    .map-header { padding: 72px 32px 0; text-align: center; }
    .map-header .sec-title { margin-bottom: 8px; }
    .map-address { font-size: 14px; color: #666; letter-spacing: .06em; margin-top: 12px; }
    .map-address a { color: var(--green); text-decoration: none; }
    .map-wrap { margin-top: 48px; }
    .map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

    /* ===== FOOTER ===== */
    footer { background: #14321e; color: rgba(255,255,255,.55); }
    .footer-body { max-width: 1100px; margin: auto; padding: 64px 32px 44px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; }
    .f-brand-en { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; letter-spacing: .16em; color: #fff; display: block; margin-bottom: 4px; }
    .f-brand-ja { font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.45); display: block; margin-bottom: 22px; }
    .f-brand p { font-size: 12px; line-height: 2.3; }
    .f-nav h4 { font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: 18px; }
    .f-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .f-nav a { font-size: 12px; color: rgba(255,255,255,.48); text-decoration: none; transition: color .2s; letter-spacing: .05em; }
    .f-nav a:hover { color: #fff; }
    .footer-btm { border-top: 1px solid rgba(255,255,255,.1); text-align: center; padding: 20px 32px; font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.3); }

    /* ===== FADE-IN ===== */
    .fade { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
    .fade.in { opacity: 1; transform: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-card { display: none; }
      .split { grid-template-columns: 1fr; }
      .split-photo { min-height: 260px; }
      .split-text { padding: 56px 32px; }
      .split-inner { max-width: 100%; }
      .split.rev .split-photo { order: 0; }
      .products-grid { grid-template-columns: 1fr; }
      .voice-grid { grid-template-columns: 1fr; }
      .contact-box { padding: 48px 24px; }
      .recruit-layout { grid-template-columns: 1fr; }
      .footer-body { grid-template-columns: 1fr 1fr; }
      .company-table th { width: 120px; }
    }

    /* ===== BURGER BUTTON ===== */
    .burger {
      display: none;
      flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px; background: none; border: none; cursor: pointer;
      padding: 6px; border-radius: 4px; transition: background .2s;
    }
    .burger:hover { background: var(--green-light); }
    .burger span {
      display: block; width: 24px; height: 2px;
      background: var(--green-dark); border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease, width .3s ease;
      transform-origin: center;
    }
    /* ×アニメーション */
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; width: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      position: fixed; top: 62px; right: 0; width: min(320px, 86vw); height: calc(100dvh - 62px);
      background: #fff; z-index: 190;
      flex-direction: column; padding: 32px 28px;
      box-shadow: -6px 0 30px rgba(0,0,0,.12);
      transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 180;
      background: rgba(0,0,0,.38); opacity: 0; transition: opacity .35s;
    }
    .mobile-overlay.open { opacity: 1; }

    .mobile-nav { display: flex; flex-direction: column; gap: 0; border-top: 1px solid #eee; }
    .mobile-nav-link {
      font-size: 15px; letter-spacing: .12em; color: var(--text); text-decoration: none;
      padding: 18px 4px; border-bottom: 1px solid #eee;
      display: flex; align-items: center; justify-content: space-between;
      transition: color .2s;
		width: 100%;
    }
    .mobile-nav-link::after { content: '›'; font-size: 18px; color: var(--green); }
    .mobile-nav-link:hover { color: var(--green); }

    .mobile-menu-sub {
      margin-top: auto; padding-top: 28px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .mobile-tel, .mobile-related {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; padding: 14px 18px; border-radius: 6px; font-size: 14px;
      transition: background .2s;
    }
    .mobile-tel {
      background: var(--green); color: #fff; font-weight: 500; letter-spacing: .06em;
    }
    .mobile-tel:hover { background: var(--green-dark); }
    .mobile-related {
      background: var(--green-light); color: var(--green-dark); font-size: 13px; letter-spacing: .08em;
    }
    .mobile-related:hover { background: #d2ebdb; }

    @media (max-width: 650px) {
      nav a { display: none; }
      .burger { display: flex; }
      .mobile-menu { display: flex; }
      .mobile-overlay.open { display: block; }
    }
    @media (max-width: 500px) {
		.hero::after {clip-path: ellipse(55% 70% at 50% 100%);}
		.hero-title { font-size: clamp(24px, 4vw, 32px);}
		.slide-dots { bottom: 85px;}
      .phone-btn strong { font-size:clamp(19px,2vw,24px);}
		.related-box{flex-direction: column;}	
      .company-table th,
      .company-table td { width: 100%; display: block;}
	.intro,.company-sec,.contact-sec,
		.recruit-sec {padding: 96px 25px;}		
    }

@media (max-width: 375px) {
	.contact-sec { padding: 80px 25px;}
    .contact-box { padding: 48px 10px;}
	.recruit-table th,.recruit-table td{ width: 100%; display: block;}
	.footer-body {padding: 64px 20px 44px;}
}
