*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Noto Sans JP',sans-serif;
  font-size:16px;
  line-height:1.95;
  color:#222;
  background:#fff;
}
img{width:100%;display:block;}
a{text-decoration:none;color:inherit;}
section{padding:110px 8%;}
.container{max-width:1200px;margin:0 auto;}

/* HEADER */
header{
  position:fixed;top:0;left:0;width:100%;
  padding:18px 8%;
  display:flex;justify-content:space-between;align-items:center;
  background:transparent;
  transition:opacity .5s ease, transform .5s ease;
  z-index:100;
}
header.hide{opacity:0;transform:translateY(-20px);pointer-events:none;}
.brand img{width:260px;max-width:52vw;height:auto;}

/* Contact button (no border, shadow only) */
.contact-fab{
  position:fixed;
  top:0;
  right:8%;
  width:130px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  background:rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border:none; /* ★罫線なし */
  border-radius:0 0 15px 15px;
  font-size:13px;
  letter-spacing:0.06em;
  box-shadow:0 10px 26px rgba(0,0,0,0.10); /* 影だけで成立 */
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.contact-fab:hover{
  background:rgba(255,255,255,0.90);
  transform:translateY(1px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* HERO */
.hero{height:100vh;padding:0;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;text-align:center;}
.hero-bg{position:absolute;inset:0;z-index:0;}
.hero-bg img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;transform:scale(1.10);opacity:0;
  transition:opacity 1100ms ease;
  will-change:transform,opacity;
}
.hero-bg img.active{opacity:1;}
.hero-inner{position:relative;z-index:2;padding:0 8%;}
.hero h1{font-size:44px;font-weight:600;line-height:1.2;}
.hero p{font-size:14px;letter-spacing:.1em;margin-top:12px;}
.scroll{
  position:absolute;bottom:34px;left:50%;
  transform:translateX(-50%);
  font-size:11px;letter-spacing:.25em;
  background:transparent;z-index:2;
}
.scroll::after{content:"";display:block;width:1px;height:42px;background:#111;margin:10px auto 0;}

/* TITLES */
.kicker{font-size:12px;letter-spacing:.22em;color:#666;margin-bottom:10px;}
/* ★h2を使う（SEO/構造化） */
.section-title{
  font-size:28px;
  font-weight:600;
  margin-bottom:20px;
  line-height:1.25;
}
.lead{white-space:pre-line;color:#333;}

/* 2 COLUMN */
.two-col{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:70px;
  align-items:center;
  grid-template-areas:"media text";
}
.two-col.right{grid-template-areas:"text media";}
.media{grid-area:media;}
.text{grid-area:text;}
.square{aspect-ratio:1/1;border-radius:14px;overflow:hidden;}
.square img{width:100%;height:100%;object-fit:cover;}

/* SERVICE */
.service-list{margin-top:20px;}
.service-list ul{list-style:none;padding-left:0;}
.service-list li{margin-bottom:8px;}

/* SERVICE: 2枚重ね画像 */
.service-media-stack{
  position:relative;
  /* 下にはみ出すチーズ画像ぶんの余白 */
  padding-bottom:34%;
}
.service-media-stack .square{
  position:relative;
  z-index:1;
  width:88%;
}
.service-cheese{
  position:absolute;
  bottom:0;
  right:0;
  width:68%;
  aspect-ratio:4/3;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(0,0,0,0.18);
  z-index:2;
}
.service-cheese img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media(max-width:980px){
  .service-media-stack{
    padding-bottom:38%;
  }
  .service-media-stack .square{
    width:82%;
  }
  .service-cheese{
    width:62%;
  }
}

/* VOICE */
.voice-band{background:#f2e7db;padding:60px 8%;}
.voice-card{
  max-width:1100px;
  margin:20px auto 0;
  display:grid;
  grid-template-columns:240px 1fr;
  gap:44px;
  align-items:center;
}
.voice-avatar{width:240px;height:240px;border-radius:50%;overflow:hidden;}
.voice-avatar img{width:100%;height:100%;object-fit:cover;}

.voice-right{width:min(720px,100%);}

.voice-quote{
  position:relative;
  padding:26px 56px;
}
.voice-quote::before,
.voice-quote::after{
  content:"";
  position:absolute;
  width:34px;
  height:34px;
  opacity:0.55;
}
.voice-quote::before{
  left:0;top:0;
  border-left:6px solid rgba(0,0,0,0.35);
  border-top:6px solid rgba(0,0,0,0.35);
}
.voice-quote::after{
  right:0;bottom:0;
  border-right:6px solid rgba(0,0,0,0.35);
  border-bottom:6px solid rgba(0,0,0,0.35);
}
.voice-main{white-space:pre-line;line-height:2.05;color:#222;}

.voice-sign{
  margin-top:18px;
  text-align:right;
  color:#222;
  font-weight:500;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}
.voice-sign .line{white-space:pre-line;}

.fade{opacity:0;transition:opacity .6s ease;}
.fade.show{opacity:1;}

/* VOICE Slider */
.voice-slider{
  max-width:1100px;
  margin:20px auto 0;
}
.voice-viewport{
  overflow:hidden;
}
.voice-track{
  display:flex;
  transition: transform 700ms ease;
  will-change: transform;
}
.voice-slide{
  flex:0 0 100%;
}
.voice-slide .voice-card{
  margin:0;
}

/* Dots */
.voice-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:18px;
}
.voice-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(0,0,0,0.25);
  border:none;
  padding:0;
  cursor:pointer;
}
.voice-dot.is-active{
  background:rgba(0,0,0,0.55);
}
.voice-dot:focus-visible{
  outline:2px solid rgba(0,0,0,0.45);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  .voice-track{ transition:none; }
}

/* Company Table */
.company-title{
  margin-top:40px;
  font-size:20px;
  font-weight:600;
}

.company-table-wrap{
  margin-top:18px;
}

.company-table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}

.company-table th,
.company-table td{
  padding:10px 12px;
  border-bottom:1px solid #dcdcdc; /* ★ 行下線 */
  vertical-align:top;
}

/* QUALITY award image */
.award-image{
  float:left;
  width:240px;
  margin:6px 0 14px 28px;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

/* QUALITY award */
.award-block{
  margin-top:28px;
}

.award-block img{
  width:240px;
  display:block;
  margin:0;   /* ←中央寄せを解除 */
  border-radius:8px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.award-block p{
  margin-top:8px;
  font-size:13px;
  color:#666;
}

/* 左列 */
.company-table th{
  width:160px;
  background:#fff;
  color:#2ca6e0;             /* ★ フッターと同色 */
  font-weight:600;
  text-align:left;
}

/* 右列 */
.company-table td{
  background:#fff;
  color:#222;
}

/* Mobile */
@media(max-width:980px){
  /* FARM STORY (Mobile) */
  .farm-body{padding:52px 6% 6px;}
  .farm-visual img{height:min(46vh,520px);}
  
  /* FOOTER (Mobile) */
  .footer-inner{flex-direction:column;gap:34px;padding:60px 6% 42px;}
  .footer-info{text-align:left;}
  .footer-logo{width:160px;}

  .company-table th{
    width:110px;
  }
}

@media(max-width:980px){

  .award-image{
    float:none;
    display:block;
    margin:0 auto 20px;
    width:70%;
    max-width:240px;
  }

}

/* FARM STORY */
.farm-story{
  padding:0;
  margin:0px 0 0;
}
.farm-visual{
  width:100%;
}
.farm-visual img{
  width:100%;
  height:min(30vh, 640px);
  object-fit:cover;
  display:block;
}
.farm-body{
  padding:70px 8% 10px;
  text-align:center;
}
.farm-body .section-title{
  margin-bottom:18px;
}
.farm-lead{
  max-width:760px;
  margin:0 auto;
  line-height:1.95;
  white-space:pre-line;
  color:#333;
}

/* FOOTER (brand) */
.site-footer{
  position:relative;
  color:#000;
  margin-top:110px;
  background-image:
    linear-gradient(rgb(160 210 230 / 88%), rgb(160 210 230 / 88%)),
    url('../img/footer-bg.jpeg');
  background-size:cover;
  background-position:center;
}
.site-footer a{ color:#fff; }
.site-footer a:hover{ text-decoration:underline; }

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:72px 8% 52px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:70px;
}

.footer-brand{ max-width:420px; }
.footer-logo{ width:180px; height:auto; margin-bottom:18px; }
.footer-tagline{ font-size:15px; line-height:1.8; opacity:0.92; }

.footer-info{
  font-style:normal;
  line-height:1.9;
  font-size:14px;
  text-align:right;
}
.footer-company{
  font-weight:600;
  font-size:15px;
  margin-bottom:10px;
}
.footer-mail{ margin-top:10px; opacity:0.92; }

.footer-copy{
  border-top:1px solid rgba(255,255,255,0.25);
  text-align:center;
  padding:16px 20px;
  opacity:0.86;
}

/* RESPONSIVE */
@media(max-width:980px){
  section{padding:90px 6%;}
  .hero h1{font-size:30px;}
  .two-col{grid-template-columns:1fr;grid-template-areas:"media" "text";gap:28px;}
  .two-col.right{grid-template-areas:"media" "text";}
  .contact-fab{right:6%;}
  .voice-band{padding:55px 6%;}
  .voice-card{grid-template-columns:1fr;gap:18px;align-items:start;}
  .voice-avatar{margin:0 auto;width:220px;height:220px;}
  .voice-right{margin:0 auto;}
  .voice-quote{padding:22px 44px;}
  .voice-quote::before,.voice-quote::after{width:30px;height:30px;border-width:5px;}
    .contact-fab{display:none;}
}

/* Scroll reveal (Concept / Service / Quality) */
.reveal-section{
  opacity:0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal-section.is-visible{
  opacity:1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal-section{
    opacity:1;
    transform:none;
    transition:none;
  }
}
