@charset "utf-8";
/* ==========================================================================
   JA むかわ - style.css
   ========================================================================== */

/* Google Fonts
---------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");

/* ==========================================================================
   1. BASE
   ========================================================================== */
body,
html {
  color: #333;
  letter-spacing: 0.05rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 1.5rem;
  line-height: 1.8;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.65;
  text-decoration: none;
}

p {
  font-size: 1.5rem;
  line-height: 2;
  text-align: justify;
}

/* ==========================================================================
   2. COLORS
   ========================================================================== */
.c-green {
  color: #2c4f21;
}
.c-green-dark {
  color: #1a6b2a;
}
.c-orange {
  color: #e88b00;
}
.c-brown {
  color: #503a19;
}
.c-beige {
  color: #f5f0e1;
}
.c-white {
  color: #fff;
}
.c-gray {
  color: #999;
}
.bg-green {
  background-color: #2c4f21;
}
.bg-green-light {
  background-color: #e8f5e9;
}
.bg-beige {
  background-color: #f5f0e1;
}
.bg-beige-light {
  background-color: #faf8f0;
}
.bg-orange {
  background-color: #e88b00;
}
.bg-gray-light {
  background-color: #f7f7f7;
}
.bg-yellow {
  background-color: #fcfae2;
  z-index: 1;
  position: relative;
}
.bg-white {
  background-color: #fff;
}
.bg-off-white {
  background-color: #fdfff9;
}

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.inner-narrow {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.inner-wide {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.inner--wide {
  max-width: 1366px;
}

.inner-920 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* ==========================================================================
   4. UTILITY CLASSES
   ========================================================================== */
.flex-gap-15 {
  gap: 15px;
}
.flex-gap-20 {
  gap: 20px;
}
.flex-gap-30 {
  gap: 30px;
}
.w-half {
  width: calc(50% - 8px);
}
.w-half-lg {
  width: 50%;
}
.img-rounded {
  width: 100%;
  border-radius: 8px;
}
.overflow-rounded {
  overflow: hidden;
  border-radius: 8px;
}
.flex-1 {
  flex: 1;
}
.w-200-shrink {
  width: 200px;
  flex-shrink: 0;
}
.intro-flex--reverse {
  flex-direction: row-reverse;
}
.mt-neg-20 {
  margin-top: -20px;
}
.map-embed {
  border: 0;
  border-radius: 8px;
}
.director-card {
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
}
.align-start {
  align-items: flex-start;
}
.img-full {
  max-width: 100%;
  width: 100%;
}
.single-article-img {
  width: 100%;
  border-radius: 8px;
}
.lead-img {
  max-width: 100%;
}
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.flex-row.reverse {
  flex-direction: row-reverse;
}
.flex-row.align-start {
  align-items: flex-start;
}

/* ==========================================================================
   5. COMMON COMPONENTS
   ========================================================================== */

/* Animations (keyframes)
---------------------------------------- */
@keyframes kvZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes marqueeRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeLTR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes sliderRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes sliderLTR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Section Title
---------------------------------------- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .en {
  display: block;
  font-size: 1.8rem;
  color: #2c4f21;
  letter-spacing: 0.2rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.section-title .jp {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.section-title--left {
  text-align: left;
}

.section-title--left .section-title-border {
  display: inline-block;
}

.section-title-border {
  display: block;
  width: 74px;
  height: 0;
  border-bottom: dashed 1px #503a19;
  margin: 20px auto;
}

.section-title-border--left {
  margin-left: 0;
}

.section-title-green {
  font-size: 2.8rem;
  line-height: 1.4;
  background-color: #008d36;
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  text-align: center;
  margin: 40px 0 40px;
}

/* Common Section Heading with green border */
.sec-heading-green {
  text-align: center;
  padding: 15px 30px;
  border: 2px solid #2c4f21;
  border-radius: 40px;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c4f21;
}

/* Sub Section Title */
.sub-section-title {
  position: relative;
  padding: 12px 20px;
  background: #2c4f21;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 0 30px 30px 0;
  margin-bottom: 30px;
  display: inline-block;
  padding-right: 60px;
}

.sub-section-title-center {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 3px solid #2c4f21;
}

/* Content with left green border */
.content-green-border {
  border-left: 4px solid #2c4f21;
  padding-left: 20px;
  margin-bottom: 30px;
}

/* Buttons
---------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  padding: 8px 10px 8px 10px;
  background: none;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  position: relative;
}

.btn-primary::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #46983a;
  transition: width 0.3s ease;
}

.btn-primary:hover {
  opacity: 1;
  color: #46983a;
}

.btn-primary:hover::after {
  width: 100%;
}

.btn-primary .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2c4f21;
  border-radius: 50%;
}

.btn-primary .btn-arrow img {
  width: 40px;
}

.btn-primary:hover .btn-arrow img {
  animation: spin-once 0.25s ease-in-out;
}

@keyframes spin-once {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn-primary.btn-white {
  color: #fff;
  border-bottom-color: #fff;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 40px;
  background: #d07634;
  border: none;
  border-radius: 60px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-orange .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.btn-orange:hover {
  opacity: 1;
  background: #c06a2a;
}

.btn-orange:hover .btn-arrow {
  transform: translateX(10px);
}

.btn-green-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 40px;
  background: #fff;
  border: 2px solid #2c4f21;
  border-radius: 60px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c4f21;
  transition: all 0.3s ease;
}

.btn-green-outline .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #2c4f21;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.btn-green-outline:hover .btn-arrow {
  transform: translateX(10px);
}

.btn-footer-link {
  max-width: 464px;
  justify-content: center;
}

.btn-arrow {
  margin-left: 10px;
}

/* Breadcrumb (Breadcrumb NavXT)
---------------------------------------- */
.breadcrumb {
  padding: 15px 0;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb > span {
  color: #2c4f21;
  font-size: 1.4rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.breadcrumb > span a {
  color: #2c4f21;
  display: flex;
  align-items: center;
}

.breadcrumb > span + span::before {
  content: "／";
  margin: 0 10px;
  color: #2c4f21;
}

.breadcrumb .icon-home {
  width: 14px;
  margin-right: 4px;
  margin-top: 4px;
}

/* Anchor Navigation
---------------------------------------- */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.anchor-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1px solid #2c4f21;
  border-radius: 30px;
  font-size: 1.3rem;
  color: #2c4f21;
  font-weight: 500;
  transition: all 0.3s ease;
}

.anchor-nav a:hover {
  background: #2c4f21;
  color: #fff;
  opacity: 1;
}

.anchor-nav a .triangle {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #e88b00;
}

/* Content Wave
---------------------------------------- */
.content-wave {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}
.content-wave + div {
  margin-top: -1px;
}

.page-kv + .content-wave {
  margin-top: -90px;
}
.content-wave img {
  width: 100%;
  display: block;
}
.content-wave + .inner {
  background: #fff;
}

/* Content Body */
.content-body {
  background: url("../images/home/bg.png") repeat;
  border-radius: 0 0 60px 60px;
}
.content-body--flat {
  border-radius: 0;
}

/* Anchor Target */
.anchor-target {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}

/* Page Top Button
---------------------------------------- */
.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 90;
  width: 50px;
  height: 50px;
  background: #2c4f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.page-top:hover {
  background: #1a6b2a;
  opacity: 1;
}

.page-top::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 3px;
}

/* WP-PageNavi
---------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 20px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 30px;
  padding: 0 6px;
  border: none;
  font-size: 1.4rem;
  color: #4d3b1e;
  background: #fff;
  font-weight: 900;
  transition: all 0.3s ease;
}

.wp-pagenavi span.current {
  background: #fff;
  border-color: #4d3b1e;
}

.wp-pagenavi span.pages {
  font-weight: 500;
}

.wp-pagenavi a:hover {
  opacity: 0.7;
}

.wp-pagenavi .nextpostslink {
  border-left: 1px solid #4d3b1e;
  font-size: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: none;
}
.wp-pagenavi .nextpostslink::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("../images/category/arrow-r.svg") no-repeat center;
  background-size: contain;
}

.wp-pagenavi .previouspostslink {
  border-right: 1px solid #4d3b1e;
  font-size: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: none;
}
.wp-pagenavi .previouspostslink::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("../images/category/arrow-l.svg") no-repeat center;
  background-size: contain;
}

/* Modal
---------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  max-width: 1100px;
  max-height: 70vh;
  padding: 50px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.modal-body {
  overflow-y: auto;
  padding-right: 10px;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-thumb {
  background-color: #e66b2e;
  border-radius: 10px;
}
.modal-body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.modal-close-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: none;
  border: none;
  font-size: 60px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.modal-close-btn:hover {
  color: #333;
}

.modal-body img {
  float: left;
  border: 4px solid #fff;
  border-radius: 5px;
  padding-right: 10px;
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 106;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 140px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding: 0 20px;
  border: 2px solid #408b26;
  border-radius: 60px;
  background: #fff;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: block;
  padding: 20px 20px 20px 60px;
}

.header-logo img {
  height: 43px;
  width: auto;
}

/* PC Navigation */
.header-nav {
  padding: 8px 20px;
  width: 70%;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav ul li {
  text-align: center;
  width: calc(100% / 7);
}

.header-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  width: 100%;
  font-size: clamp(1rem, 0.9vw, 1.8rem);
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  white-space: nowrap;
}

.header-nav ul li a .nav-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}

.header-nav ul li a .nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* SP Toggle Menu (default hidden) */
.menu-button {
  display: none;
}

.toggle-menu {
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.footer {
  position: relative;
  z-index: 0;
  color: #fff;
  background: #3a2b17 url("../images/home/footer-bg_260514.jpg") no-repeat
    bottom left;
  margin-top: -60px;
  background-size: 100% auto;
}

.footer-overlay {
  background: rgba(58, 43, 23, 0.6);
  padding: 160px 0 0;
  box-sizing: border-box;
}

.sp-br {
  display: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1366px;
  margin: 0 auto 150px;
  padding: 0 20px;
}

.footer-logo-area {
  width: 440px;
  flex-shrink: 0;
}

.footer-logo-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-logo-top > a {
  display: block;
}

.footer-logo-top > a img {
  width: 180px;
  display: block;
}

.footer-popo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: -100px;
}

.footer-popo img {
  width: 185px;
  display: block;
}

.footer-popo-caption {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  margin-top: 4px;
}

.footer-logo-area p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.footer-nav {
  display: flex;
  gap: 40px;
  flex-grow: 1;
  margin-left: auto;
}

.footer-nav .nav-col {
  padding-left: 20px;
  border-left: 1px solid #fff;
  margin-left: auto;
}

.footer-nav .nav-col ul li {
  margin-bottom: 15px;
  line-height: 1.2;
}

.footer-nav .nav-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  line-height: 1.4;
}

.footer-nav .nav-col ul li a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  padding: 15px 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
}

/* ==========================================================================
   8. TOP PAGE
   ========================================================================== */
body.home {
  background: #aaa;
}
.home .header {
  background: transparent;
  box-shadow: none;
}

/* KV (Key Visual)
---------------------------------------- */
.kv-wrapper {
  position: relative;
  width: 100%;
  height: calc(100dvh - 60px);
  min-height: 600px;
  overflow: hidden;
}

.kv-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.kv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.kv-slide.active {
  opacity: 1;
}

.kv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.kv-slide.active img {
  animation: kvZoom 8s ease forwards;
}

.kv-slide.prev img {
  transform: scale(1.1);
}

.kv-text {
  position: absolute;
  top: 50%;
  left: 5%;
  padding-right: 400px;
  transform: translateY(-50%);
  z-index: 2;
}

.kv-text img {
  width: 100%;
  max-width: 720px;
  position: relative;
  left: 10%;
}

.kv-scroll {
  position: absolute;
  bottom: 30px;
  right: 440px;
  z-index: 2;
}

.kv-scroll img {
  width: 20px;
}

/* KV News Ticker */
.kv-news {
  position: absolute;
  bottom: 110px;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 20px 10px 80px;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 600px;
}

.kv-news .news-date {
  font-size: 1.2rem;
  color: #999;
  white-space: nowrap;
}

.kv-news .news-title {
  font-size: 1.3rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kv-news .news-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.kv-news a:hover .news-arrow {
  transform: translateX(5px);
}

.kv-news .news-arrow img {
  width: 10px;
}

.kv-news-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* KV Right Side Buttons */
.kv-side-buttons {
  position: absolute;
  bottom: 320px;
  right: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  width: 300px;
}

.kv-side-buttons .side-btn {
  display: block;
}

.kv-side-buttons .side-btn-recruit {
  background: #fff;
  border: 2px solid #2c4f21;
  border-radius: 30px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.kv-side-buttons .side-btn-recruit img {
  height: 24px;
}

.kv-side-buttons .side-btn-staff {
  background: #e88b00;
  border-radius: 30px;
  padding: 12px 24px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kv-side-buttons .side-btn-staff .btn-arrow {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-side-buttons .side-btn-member {
  background: #fff;
  border: 2px solid #2c4f21;
  border-radius: 30px;
  padding: 12px 24px;
  color: #2c4f21;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kv-side-buttons .side-btn-member .btn-arrow {
  width: 20px;
  height: 20px;
  background: #2c4f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-side-banners {
  position: absolute;
  bottom: 100px;
  right: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kv-side-banners a {
  display: block;
  width: 300px;
}

.kv-side-banners a img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* About Section
---------------------------------------- */
.sec-about {
  position: relative;
  z-index: 1;
}

.sec-about .about-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.sec-about .about-img {
  width: 50%;
  flex-shrink: 0;
}

.sec-about .about-text {
  width: 50%;
}

.about-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.about-flex .about-img {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}
.img-border {
  border-radius: 20px !important;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.img-shadow {
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.about-flex .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-flex .about-text {
  width: 55%;
}
.about-flex .about-text h3 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #433822;
}
.about-flex .about-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.about-banners {
  display: flex;
  gap: 15px;
}
.about-banners a {
  flex: 1;
}
.about-banners a img {
  width: 100%;
  display: block;
}

/* Specialty Products
---------------------------------------- */
.sec-specialty {
  position: relative;
  z-index: 1;
}

.specialty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.specialty-grid .item {
  width: calc(25% - 15px);
  overflow: hidden;
  border-radius: 8px;
}

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

.specialty-grid .item:hover img {
  transform: scale(1.05);
}

.specialty-title-area {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 20px 0 40px;
}
.specialty-title-area .title-main-img {
  width: 570px;
  max-width: 90%;
  display: block;
  margin: 0 auto;
}
.specialty-decor {
  width: 100%;
  display: block;
}
.specialty-decor--bottom {
  margin-bottom: -1px;
}

.specialty-intro {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.specialty-intro p {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
}
.specialty-intro .specialty-quote {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-top: 30px;
  text-align: center;
}
.specialty-grid .specialty-item {
  width: calc(33.333% - 20px);
  margin-bottom: 10px;
  text-align: center;
}
.specialty-grid .specialty-item .specialty-item-img {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}
.specialty-grid .specialty-item .specialty-item-img img {
  width: 100%;
  display: block;
}
.specialty-grid .specialty-item h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c4f22;
  padding-left: 12px;
  border-left: 3px solid #2c4f21;
  margin-bottom: 8px;
  text-align: left;
}
.specialty-grid .specialty-item p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-left: 18px;
}
.sec-subpage .specialty-grid .specialty-item p {
  font-size: 1.6rem;
}
.specialty-grid .specialty-item .btn-primary {
  margin-left: auto;
  margin-right: auto;
}

/* Marquee / Infinite Scroll Band
---------------------------------------- */
.marquee-band {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  background: #2c4f21;
  padding: 15px 0;
}

.marquee-band .marquee-track {
  display: inline-flex;
  animation: marqueeRTL 30s linear infinite;
}

.marquee-band .marquee-track span {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 0 40px;
  letter-spacing: 0.3rem;
}

/* Vegetable Illustration Band */
.vegetable-band {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  padding: 10px 0;
}

.vegetable-band .veg-track {
  display: inline-flex;
  animation: marqueeLTR 40s linear infinite;
}

/* Slider Bands */
.slider-band {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.slider-band .slider-track {
  display: inline-flex;
  will-change: transform;
}
.slider-band .slider-track img {
  display: block;
  width: auto;
  max-width: max-content;
  flex-shrink: 0;
}
.slider-band--large .slider-track img {
  height: 330px;
}
.slider-band--small .slider-track img {
  height: 130px;
}
.slider-track--rtl {
  animation: sliderRTL 80s linear infinite;
}
.slider-track--ltr {
  animation: sliderLTR 40s linear infinite;
}

/* News Section
---------------------------------------- */
.sec-news {
  position: relative;
  z-index: 1;
  background: #fff;
}
.sec-news .inner {
  max-width: 1000px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.news-header .news-title-area {
  text-align: left;
}
.news-header .news-title-area .en {
  display: block;
  font-size: 1.8rem;
  color: #2c4f21;
  letter-spacing: 0.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.news-header .news-title-area .jp {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.news-list .news-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px solid #979d97;
  text-decoration: none;
}
.news-list .news-item .news-thumb {
  width: 164px;
  aspect-ratio: 1 / 1; /* 正方形コンテナ（縦横どちらの画像も中に収める） */
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
  margin-right: 20px;
  margin-left: 20px;
  background: #f0f0f0; /* 薄いグレー背景 */
}
.news-list .news-item .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 縦横比を保ったまま正方形内に収める・中央 */
  object-position: center;
  display: block;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
.news-list .news-item .news-content {
  flex-grow: 1;
}
.news-list .news-item .news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.news-list .news-item .date {
  font-size: 1.3rem;
  color: #999;
  min-width: 90px;
}
.news-list .news-item .cat {
  display: inline-block;
  font-size: 1.1rem;
  color: #fff;
  background: #2c4f21;
  padding: 4px 20px;
  border-radius: 20px;
}
.news-list .news-item .news-text {
  font-size: 1.4rem;
  color: #433822;
  line-height: 1.6;
}
.news-list .news-item .news-arrow {
  margin-left: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.news-list .news-item a:hover .news-arrow {
  transform: translateX(5px);
}
.news-list .news-item .news-arrow img {
  width: 33px;
}

/* Recruit Section (TOP)
---------------------------------------- */
.sec-recruit {
  position: relative;
  z-index: 1;
  background: url("../images/home/bg-recruit.png") no-repeat center;
  background-size: cover;
  background-position: center;
}

.sec-recruit .recruit-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row;
}

.sec-recruit .recruit-text {
  width: 50%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec-recruit .recruit-img {
  width: 50%;
}
.sec-recruit .recruit-img img {
  width: 100%;
  border-radius: 8px;
}
.recruit-text .section-title {
  margin-bottom: 0;
}

/* Work Section (事業紹介)
---------------------------------------- */
.sec-work .inner {
  max-width: 1360px;
}

.work-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.work-grid .work-item {
  width: calc(33.333% - 14px);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.work-grid .work-item img {
  width: 100%;
  height: auto;
}

.work-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 50px;
  border-bottom: 2px solid #2c4f21;
}
.work-flex .work-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work-flex .work-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.work-flex .work-img {
  width: 55%;
  overflow: hidden;
  border-radius: 8px;
}
.work-flex .work-img img {
  width: 100%;
  display: block;
}
.work-banners {
  display: flex;
  gap: 15px;
}
.work-banner-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #2c4f21;
  height: 160px;
  text-decoration: none;
}
.work-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.work-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}
.work-banner-card:hover {
  opacity: 1;
}
.work-banner-card:hover .work-banner-bg {
  transform: scale(1.08);
}
.work-banner-label {
  position: relative;
  z-index: 1;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2c4f21;
  font-family: "Zen Maru Gothic", sans-serif;
}

/* Banner Slider
---------------------------------------- */
.sec-footer-banners {
  position: relative;
  z-index: 1;
  background: #fff;
}

.banner-slider-wrap {
  position: relative;
  padding: 50px 40px;
  border-bottom: 2px solid #2c4f21;
}

.banner-slider .swiper-slide {
  width: auto;
}

.banner-slider .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* 一番縦長のバナー比率に揃え、全ブロックの高さを統一 */
  aspect-ratio: 556 / 280;
  background: #fff;
  overflow: hidden;
}

.banner-slider .swiper-slide img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  /* 画像をブロック内に収め、縦中央に配置（余白は白背景） */
  object-fit: contain;
}

.banner-slider .swiper-button-prev,
.banner-slider .swiper-button-next,
.banner-slider .swiper-pagination {
  display: none !important;
}

.banner-slider-prev,
.banner-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 15px;
  height: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.banner-slider-prev {
  left: 0;
}
.banner-slider-next {
  right: 0;
}

.banner-slider-prev img,
.banner-slider-next img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   9. SUB PAGES - COMMON
   ========================================================================== */

/* Page KV for sub pages */
.page-kv {
  position: relative;
  padding-top: 80px;
  background: linear-gradient(180deg, #e8f5e9 0%, #fff 100%);
  text-align: center;
  overflow: hidden;
  min-height: 420px;
}

.page-kv .page-kv-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background: url("../images/page/kv.svg") no-repeat center top;
  background-size: cover;
  min-height: 420px;
}

.page-kv-content {
  position: relative;
  z-index: 1;
  padding: 50px 20px 40px;
}

.page-kv .page-en {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: 700;
  margin-top: 70px;
}

.page-kv .page-title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-top: 5px;
}

.sec-subpage {
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
  background: #fdfffa;
}
.sec-subpage a {
  color: #3d8b41;
}
.sec-subpage .btn-primary {
  color: #333;
}
.sec-subpage .btn-message {
  color: #333;
}
.sec-subpage .intro {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.sec-subpage .news-list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Links Section (sub pages)
---------------------------------------- */
.sec-footer-links {
  background: url("../images/home/link-bg.png") no-repeat center;
  background-size: cover;
  padding: 50px 0 140px;
  position: relative;
  z-index: 1;
  border-radius: 0 0 60px 60px;
}

.footer-links-title {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #2c4f21;
  letter-spacing: 0.2rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-links-heading {
  display: block;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin-bottom: 25px;
}

.footer-link-btns {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 50px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.footer-link-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-link-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  background: #fff;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  min-width: 200px;
  text-align: center;
}

.footer-banner-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-bottom: 40px;
  border-bottom: 2px solid #2c4f21;
  flex-wrap: wrap;
}

.footer-banner-grid .work-banner-card {
  width: calc(30% - 8px);
  flex: none;
}

/* SP Menu Button Styles */
.sp-menu-buttons .btn-recruit {
  background: #2d8c3c;
}
.sp-menu-buttons .btn-staff {
  background: #e88b00;
}
.sp-menu-buttons .btn-members {
  background: #2d8c3c;
  border: 1px solid #fff;
}
.sp-menu-buttons .btn-contact-sp {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   10. OVERVIEW PAGE (JAの概要)
   ========================================================================== */
.overview-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.overview-table th,
.overview-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}

.overview-table th {
  width: 180px;
  font-weight: 700;
  background: #faf8f0;
  white-space: nowrap;
}

/* Overview Page (.inner-overview) */
.sub-nav {
  margin-top: 50px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.sub-nav a {
  flex: 1 1 calc(33.3% - 16px);
  max-width: calc(33.3% - 16px);
  text-decoration: none;
  color: #503a19;
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  opacity: 1;
}
.sub-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fffdcb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: 10px;
}
.sub-nav a:hover::before {
  transform: scaleX(1);
}
.sub-nav a:hover {
  opacity: 1;
}
.sub-nav a .sub-nav-ja {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
}
.sub-nav a .sub-nav-en {
  font-size: 1.3rem;
  line-height: 1.4;
}

.anc-wrap {
  display: block;
}
.anc-wrap span {
  scroll-margin-top: 150px;
}

.inner-overview .intro {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.orange-border {
  position: relative;
  padding-left: 22px;
  font-size: 2.2rem;
  margin: 25px 0 15px;
  line-height: 1.7;
}
.orange-border::before {
  content: "▶︎";
  font-size: 1.4rem;
  position: absolute;
  top: 8px;
  left: 0;
  color: #de6f1a;
}
.access-table {
  max-width: 560px;
}

.inner-overview .text-content {
  flex: 1;
}
.inner-overview .image-content {
  flex: 1;
}
.inner-overview .image-content img,
.inner-overview .full-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.inner-overview .logo-area {
  flex: 1;
}
.inner-overview .logo-img {
  max-width: 200px;
  margin-bottom: 15px;
}
.inner-overview .contact-table {
  flex: 1;
}

.inner-overview table {
  width: 100%;
  border-collapse: collapse;
}
.inner-overview th,
.inner-overview td {
  padding: 12px;
  font-size: 14px;
}
.inner-overview th {
  width: 140px;
  text-align: left;
  border-bottom: 1px solid #1f5019;
}
.inner-overview td {
  border-bottom: 1px solid #1f5019;
}
.inner-overview .data-table thead th {
  background-color: #eee;
  text-align: center;
}
.inner-overview .date-caption {
  text-align: right;
  font-size: 12px;
  margin-top: 5px;
}

.overview-sec-2 {
  z-index: 1;
}

.inner-overview .map-container iframe {
  border: 0;
  border-radius: 10px;
}

.inner-overview .representative {
  text-align: center;
}
.inner-overview .rep-card {
  display: inline-block;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.inner-overview .rep-card img {
  width: 150px;
  margin-bottom: 10px;
}

.btn-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  padding: 16px 30px 16px 10px;
  border: 2px solid #d1d1d1;
  border-radius: 50px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  background: #fff url("../images/page/icon-new-tab.svg") no-repeat right 30px
    center;
  background-size: 16px 16px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}
.btn-message::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #d07533;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s ease,
    height 0.4s ease;
  z-index: -1;
}
.btn-message.free {
  width: auto;
  padding: 16px 60px 16px 20px;
}
.btn-message .icon-link {
  width: 20px;
  height: 20px;
  color: #3c1c0b;
}
.btn-message:hover {
  opacity: 1;
  color: #fff;
  border-color: #d07533;
}
.btn-message:hover::before {
  width: 400px;
  height: 400px;
}

/* Overview Tables */
.table-container-wrap {
  max-width: 920px;
  margin: 50px auto;
}

.table-responsive-2 {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table-responsive-2 thead th {
  background-color: #fdfde3;
  border: 1px solid #3a2b17;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  width: 30%;
}

.table-responsive-2 thead th:last-child {
  width: 70%;
}

/* yakkan.html のみ：見出し列の幅を自動に */
.yakkan .table-responsive-2 thead th {
  width: auto;
}

/* yakkan.html のみ：最終列を固定幅・中央寄せ */
.yakkan .table-responsive-2 thead th:last-child {
  width: 180px;
  text-align: center;
}

.yakkan .table-responsive-2 td:last-child {
  text-align: center;
}

.table-responsive-2 td {
  border: 1px solid #3a2b17;
  padding: 12px 15px;
  background-color: #fff;
  color: #333;
  vertical-align: middle;
}

.table-date {
  text-align: right;
  font-size: 14px;
  margin-top: 10px;
  color: #333;
}

/* Regulations TOC (staff.php) — grouped category cards, 3 columns per category on PC */
.reg-toc {
  margin: 30px auto 50px;
  max-width: 1100px;
}
.reg-cat {
  margin-bottom: 30px;
  border: 1px solid #c9beae;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.reg-cat-title {
  background: #fdfde3;
  border-bottom: 1px solid #c9beae;
  padding: 12px 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3a2b17;
  margin: 0;
}
.reg-cat-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}
.reg-col {
  padding: 16px 18px;
  border-right: 1px dashed #d8cfbf;
  min-width: 0;
}
.reg-col:last-child {
  border-right: none;
}
.reg-col-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #008d36;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #008d36;
  letter-spacing: 0.02em;
}
.reg-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.reg-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px dashed #ebe3d3;
  font-size: 1.35rem;
  line-height: 1.55;
  color: #333;
}
.reg-list li:last-child {
  border-bottom: none;
}
.reg-name {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
}
.reg-date {
  flex: 0 0 auto;
  color: #777;
  font-size: 1.2rem;
  white-space: nowrap;
}
.reg-list-empty li {
  color: #aaa;
  justify-content: center;
}

.shikyo-link {
  text-align: center;
  font-size: 1.6rem;
  margin: 20px 0 40px;
  word-break: break-all;
}
.shikyo-link a {
  color: #008d36;
  text-decoration: underline;
}
.shikyo-link a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .reg-cat-body {
    grid-template-columns: 1fr;
  }
  .reg-col {
    border-right: none;
    border-bottom: 1px dashed #d8cfbf;
  }
  .reg-col:last-child {
    border-bottom: none;
  }
  .reg-cat-title {
    font-size: 1.6rem;
    padding: 10px 14px;
  }
}

.table-container-wrap-3 {
  max-width: 920px;
  margin: 30px auto;
}
.table-responsive-3 {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  min-width: 850px;
}
.table-responsive-3 thead th {
  background-color: #fdfde3;
  border: 1px solid #ccc;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
}
.table-responsive-3 td {
  border: 1px solid #ccc;
  padding: 15px 10px;
  text-align: center;
  background-color: #fff;
  vertical-align: middle;
}
.office-name {
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
}
.col-name {
  width: 25%;
}

.btn-map-capsule {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0px 12px;
  border: 1px solid #6f4e37;
  border-radius: 50px;
  text-decoration: none;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.btn-map-capsule .text {
  color: #6f4e37;
  font-size: 14px;
  font-weight: bold;
}
.btn-map-capsule .arrow {
  color: #e66b2e;
  font-size: 16px;
  font-weight: bold;
}
.btn-map-capsule:hover {
  border-color: #e66b2e;
  background-color: #fffaf8;
}
.btn-map-capsule:hover .text {
  color: #e66b2e;
}

.table-responsive-4 {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #3a2b17;
  margin-bottom: 10px;
}
.table-responsive-4 th {
  background-color: #fdfde3;
  border: 1px solid #3a2b17;
  padding: 15px 20px;
  text-align: left;
  width: 30%;
  color: #3a2b17;
  font-weight: bold;
}
.table-responsive-4 td {
  background-color: #fff;
  border: 1px solid #3a2b17;
  padding: 15px 20px;
  text-align: left;
  color: #333;
}
.table-date-4 {
  text-align: right;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 30px;
}

.banner-grid-container {
  margin: 40px auto;
}
.banner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.banner-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 10px 20px;
  background-color: #fff;
  border: 2px solid #d1d1d1;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.banner-list li a:hover {
  border-color: #618e33;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.banner-text {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}
.banner-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 10px;
}

.table-responsive-5 {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #3a2b17;
  margin-bottom: 30px;
}
.table-responsive-5 thead th {
  background-color: #fdfde3;
  border: 1px solid #3a2b17;
  padding: 12px;
  text-align: center;
  color: #3a2b17;
  font-weight: bold;
  font-size: 16px;
}
.table-responsive-5 td {
  border: 1px solid #3a2b17;
  padding: 15px 20px;
  background-color: #fff;
  color: #333;
  vertical-align: middle;
  line-height: 1.6;
}
.table-responsive-5 td.col-title {
  width: 35%;
  font-weight: bold;
}
.table-responsive-5 a {
  color: #333;
  text-decoration: underline;
}
.table-responsive-5 a:hover {
  text-decoration: none;
}

.table-responsive-6 {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #3a2b17;
  margin-bottom: 30px;
}
.table-responsive-6 th.col-title {
  border: 1px solid #3a2b17;
  padding: 15px 20px;
  text-align: left;
  width: 30%;
  color: #3a2b17;
  font-weight: bold;
  vertical-align: middle;
}
.table-responsive-6 td {
  background-color: #fff;
  border: 1px solid #3a2b17;
  padding: 15px 20px;
  text-align: left;
  color: #333;
  line-height: 1.6;
  vertical-align: middle;
}

.inner-overview .table-responsive {
  overflow-x: auto;
}

/* ==========================================================================
   11. INTRODUCTION PAGE (事業紹介)
   ========================================================================== */
.intro-section {
  margin-bottom: 60px;
}

.intro-section .intro-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.intro-section .intro-img {
  width: 50%;
  flex-shrink: 0;
}

.intro-section .intro-img img {
  width: 100%;
  border-radius: 8px;
}

.intro-section .intro-text {
  width: 50%;
}

.introduction-grid {
  margin: 60px auto;
}

.intro-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
  margin-bottom: 80px;
}

.intro-image img {
  width: 100%;
  height: auto;
}

.intro-title {
  font-size: 22px;
  color: #3a2b17;
  margin-bottom: 20px;
  font-weight: bold;
}

.intro-description {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.item-right {
  flex-direction: row-reverse;
}

/* ==========================================================================
   12. AGRICULTURAL PAGE (むかわの農畜産物)
   ========================================================================== */
.agri-section {
  margin-bottom: 60px;
}

.agri-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.agri-grid .agri-item {
  width: calc(25% - 15px);
  text-align: center;
}

.agri-grid .agri-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

.agri-grid .agri-item p {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}

/* ==========================================================================
   13. STORE LIST PAGE
   ========================================================================== */
.shop-list-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 15px 0;
}

.shop-list-container {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.shop-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.shop-image {
  flex: 0 0 45%;
}

.shop-image img {
  width: 100%;
}

.shop-info {
  flex: 1;
}

.shop-name {
  font-size: 22px;
  line-height: 1.4;
  color: #3a2b17;
  margin-bottom: 20px;
  font-weight: bold;
}

.shop-details {
  margin-bottom: 30px;
}

.shop-details > div {
  padding: 10px 10px;
  border-bottom: 1px dashed #ccc;
}

.shop-details dt {
  font-size: 15px;
  line-height: 1.4;
  color: #618e33;
  font-weight: bold;
  margin-bottom: 4px;
}

.shop-details dd {
  font-size: 15px;
  line-height: 1.4;
  margin-left: 0;
  color: #333;
}

.shop-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 40px 0;
}

/* ==========================================================================
   14. CATEGORY PAGE (Topics / JA Dayori)
   ========================================================================== */
.cat-list-title {
  color: #4d3b1f;
  border-bottom: 1px solid #4d3b1f;
  max-width: 1000px;
  margin-top: 50px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.cat-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.cat-filter-bar a {
  display: inline-block;
  padding: 2px 18px;
  border: 1px solid #4d3b1f;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4d3b1f;
  text-decoration: none;
  transition: all 0.3s ease;
  /* margin-top: 15px; */
}
.cat-filter-bar a:hover,
.cat-filter-bar a.is-active {
  background: #4d3b1f;
  color: #fff;
}

.category-list .cat-item {
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  gap: 20px;
}

.category-list .cat-item .cat-thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
}

.category-list .cat-item .cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-list .cat-item .cat-info {
  flex-grow: 1;
}

.category-list .cat-item .cat-date {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 5px;
}

.category-list .cat-item .cat-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

/* ==========================================================================
   15. SINGLE POST PAGE
   ========================================================================== */
.single-article {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  color: #333;
}

.category-tag {
  display: inline-block;
  background: #9ab48a;
  color: #fff;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}
.article-header h1 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.article-header time {
  font-size: 14px;
  color: #888;
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px dotted #ccc;
}

/* Article Slider */
.article-slider-container {
  margin: 30px 0;
}

/* メインスライダー：最も高さの低い画像の高さに統一（高い画像は中央でフィット）
   実際の高さは js/function.js が画像読み込み後に算出して付与 */
.article-slider-container .main-slider {
  background: #f0f0f0; /* 薄いグレー */
}
.article-slider-container .main-slider .swiper-wrapper,
.article-slider-container .main-slider .swiper-slide {
  height: 100%;
}
.article-slider-container .main-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* サムネイルスライダー */
.article-slider-container .thumb-slider-wrap {
  position: relative;
  margin-top: 10px;
  padding: 0 40px;
}
.article-slider-container .thumb-slider .swiper-slide {
  cursor: pointer;
  height: 120px; /* PC：固定高さ */
  background: #f0f0f0; /* 薄いグレー */
  overflow: hidden;
}
.article-slider-container .thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}
.article-slider-container .thumb-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 高さにフィット・中央 */
  object-position: center;
  display: block;
}

/* 左右矢印：黒い縦長ボックス＋白い三角（サムネイルスライダーの高さに合わせる） */
.article-slider-container .swiper-button-next,
.article-slider-container .swiper-button-prev {
  position: absolute;
  top: 0;
  width: 30px;
  height: 120px;
  margin-top: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}
.article-slider-container .swiper-button-prev {
  left: 0;
  right: auto;
}
.article-slider-container .swiper-button-next {
  right: 0;
  left: auto;
}
/* swiperデフォルトの絵文字アイコンを無効化し、CSSの白三角に置換 */
.article-slider-container .swiper-button-next::after,
.article-slider-container .swiper-button-prev::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.article-slider-container .swiper-button-prev::after {
  border-right: 10px solid #fff; /* 左向き三角 */
}
.article-slider-container .swiper-button-next::after {
  border-left: 10px solid #fff; /* 右向き三角 */
}
/* 押せない（端）状態はかなり薄く */
.article-slider-container .swiper-button-disabled {
  opacity: 0.07;
}

/* SP：サムネイル高さ60px・矢印幅15px */
@media only screen and (max-width: 767px) {
  .article-slider-container .thumb-slider-wrap {
    padding: 0 20px;
  }
  .article-slider-container .thumb-slider .swiper-slide {
    height: 60px;
  }
  .article-slider-container .swiper-button-next,
  .article-slider-container .swiper-button-prev {
    width: 15px;
    height: 60px;
  }
  .article-slider-container .swiper-button-prev::after {
    border-width: 5px 0 5px 0;
    border-right-width: 7px;
  }
  .article-slider-container .swiper-button-next::after {
    border-width: 5px 0 5px 0;
    border-left-width: 7px;
  }
}

/* Article Content */
.article-content {
  line-height: 1.8;
  font-size: 16px;
}
.single-article h2 {
  font-size: 24px;
  line-height: 1.2;
  background: #e9efe0;
  border-left: 5px solid #1f5019;
  padding: 10px 15px;
  margin: 40px 0 20px;
}
.single-article h3 {
  font-size: 18px;
  line-height: 1.2;
  border-left: 5px solid #1f5019;
  border-bottom: 1px solid #1f5019;
  padding: 5px 15px;
  margin: 30px 0 15px;
}
.text-decorate-1 {
  color: #d9534f;
}
.text-decorate-2 {
  background: #fffacd;
}

.content-image {
  margin: 30px 0;
}
.content-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* Post Navigation */
.post-navigation {
  margin: 30px auto 100px;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-archive {
  font-size: 15px;
  font-weight: bold;
  color: #3a2b17;
  padding: 0 20px;
  letter-spacing: 0.05em;
}

.nav-divider {
  width: 1px;
  height: 30px;
  background-color: #3a2b17;
}

.nav-prev,
.nav-next {
  position: relative;
}

.arrow-left,
.arrow-right {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 13px;
}

.arrow-left::before,
.arrow-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #3a2b17;
  transform: translateY(-50%);
}

.arrow-left::after,
.arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #3a2b17;
  border-left: 2px solid #3a2b17;
}

.arrow-left::after {
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.arrow-right::after {
  right: 0;
  transform: translateY(-50%) rotate(135deg);
}

.nav-disabled {
  opacity: 0.15;
  pointer-events: none;
}

/* ==========================================================================
   16. RECRUIT PAGE
   ========================================================================== */
.recruit-hero {
  display: flex;
  gap: 0;
  margin-bottom: 50px;
}

.recruit-hero .hero-img {
  width: 50%;
  overflow: hidden;
}

.recruit-hero .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-hero .hero-text {
  width: 50%;
  padding: 40px;
  background: #f5f0e1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.recruit-step .step-num {
  width: 60px;
  flex-shrink: 0;
}

.recruit-step .step-content {
  flex-grow: 1;
}

/* Charm Section (Recruit) */
.charm-section .image-content {
  flex: 0 0 300px;
  width: 300px;
}
.charm-heading {
  position: relative;
  padding-left: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.charm-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #2c4f21;
}

/* Interview Section */
.interview-container {
  margin: 60px auto;
  padding: 0 20px;
  color: #333;
}

.interview-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.profile-image img {
  width: 100%;
  height: auto;
}

.name-en {
  display: block;
  font-size: 24px;
  color: #1f5019;
  font-weight: bold;
}
.name-jp {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

.profile-details {
  font-size: 1.7rem;
  line-height: 1.7;
}

.profile-details dt {
  float: left;
  width: 4em;
  font-weight: bold;
  color: #333;
}
.profile-details dd {
  margin-left: 5em;
  margin-bottom: 10px;
}

.interview-main {
  margin-top: 40px;
}

.q-and-a {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px dotted #1f5019;
}

.q-number {
  background-color: #1f5019;
  font-size: 2rem;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.q-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 1.4;
  color: #1f5019;
  font-weight: bold;
  margin-bottom: 15px;
}

.a-content p {
  line-height: 1.8;
  font-size: 17px;
  margin-left: 50px;
}

/* Daily Flow Section */
.daily-flow-container {
  max-width: 1110px;
  margin: 60px auto;
  padding: 0 15px;
}

.flow-header {
  text-align: center;
  margin-bottom: 60px;
}
.flow-en {
  display: block;
  font-size: 20px;
  color: #005a54;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.flow-title {
  font-size: 34px;
  color: #333;
  margin: 0px 0 10px;
  font-weight: bold;
}
.flow-title-line {
  width: 70px;
  height: 1px;
  border-bottom: 1px dashed #005a54;
  margin-left: auto;
  margin-right: auto;
}

.flow-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0 40px 20px;
  border-bottom: 3px solid #16a466;
}

.flow-image-box {
  flex: 0 0 40%;
  position: relative;
}
.flow-image-box img {
  width: 100%;
  height: auto;
  border: 3px solid #16a466;
  display: block;
}
.flow-time {
  position: absolute;
  left: -30px;
  bottom: 0;
  transform: translateY(-50%);
  background-color: #025b5b;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  border: 2px solid #fff;
  z-index: 10;
}

.flow-info {
  flex: 1;
}
.flow-item-title {
  font-size: 22px;
  line-height: 1.4;
  color: #503a19;
  margin-bottom: 20px;
  font-weight: bold;
}
.flow-item-text {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  padding-top: 15px;
  border-top: 2px dashed #16a466;
}

/* ==========================================================================
   17. CONTACT PAGE (Form)
   ========================================================================== */
.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-title {
  font-size: 20px;
  font-weight: bold;
  color: #5c4021;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 2px;
  background-color: #e67e22;
}

.form-group {
  background-color: #f1f4e7;
  padding: 24px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.form-group label {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}

.label-tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 99px;
  font-size: 12px;
  color: #fff;
  margin-right: 12px;
  font-weight: normal;
}
.label-tag.required {
  background-color: #e54d4d;
}
.label-tag.optional {
  background-color: #888;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #fff;
  outline: none;
}

.form-group textarea {
  height: 240px;
  resize: vertical;
}

::placeholder {
  color: #ccc;
}

.form-footer {
  text-align: center;
  margin-top: 50px;
}

.privacy-policy-wrap {
  margin-bottom: 40px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.privacy-policy-wrap a {
  color: #5c4021;
  text-decoration: underline;
}

.privacy-policy-wrap input[type="checkbox"] {
  transform: scale(1.5);
  cursor: pointer;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  border: 1px solid #333;
  color: #333;
  padding: 18px 20px;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  width: 320px;
}

.submit-btn::after {
  content: "›";
  font-size: 24px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.submit-btn:hover {
  background-color: #eee;
}

/* Contact Form 7 の送信／戻るボタンに .submit-btn と同じ見た目を適用。
   CF7 は <input type="submit" class="wpcf7-submit"> を出力し .submit-btn が
   付かないため、assets.css の appearance:none と相まって見えなくなるのを防ぐ。 */
.wpcf7-form .form-footer input[type="submit"],
.wpcf7-form .form-footer .wpcf7-submit,
.wpcf7-form .form-footer .wpcf7-previous {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  border: 1px solid #333;
  color: #333;
  padding: 18px 20px;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  text-decoration: none;
  width: 320px;
  max-width: 100%;
}

.wpcf7-form .form-footer input[type="submit"]:hover,
.wpcf7-form .form-footer .wpcf7-submit:hover,
.wpcf7-form .form-footer .wpcf7-previous:hover {
  background-color: #eee;
}

/* 確認画面：戻る／送信するの2ボタンを横並び中央に */
.form-footer--confirm {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 「確認画面へ」ボタンを中央寄せ。
   cf7msm は [multistep] を [submit] の直後（フォーム末尾）に置く必要があり、
   その結果 wpautop が両タグを1つの <p> で包む。その <p> を中央寄せする。
   .submit-btn は display:inline-flex なので text-align:center で中央に来る。 */
.wpcf7-form .form-footer p:has(input[type="submit"]) {
  text-align: center;
  margin: 0;
}

/* 確認画面：入力内容の確認テーブル（ラベル｜値の2カラム） */
.confirm-table {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}

.confirm-table .form-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e0e0e0;
}

.confirm-table .form-row:last-child {
  border-bottom: none;
}

.confirm-table .form-label {
  flex: 0 0 240px;
  width: 240px;
  box-sizing: border-box;
  padding: 18px 20px;
  background-color: #f1f4e7;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.confirm-table .form-value {
  flex: 1 1 auto;
  min-width: 0;
  padding: 18px 20px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  word-break: break-word;
}

/* セル内の wpautop <p> の余白を除去 */
.confirm-table .form-label p,
.confirm-table .form-value p {
  margin: 0;
}

/* ==========================================================================
   18. TROUBLE PAGE (困った時は)
   ========================================================================== */
.trouble-section {
  margin-bottom: 40px;
  padding: 30px;
  background: #faf8f0;
  border-radius: 8px;
}

.trouble-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c4f21;
  margin-bottom: 15px;
}

/* ==========================================================================
   19. MEMBERS / STAFF PAGE
   ========================================================================== */
.download-section {
  margin-bottom: 30px;
}

.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.download-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 1.3rem;
  color: #333;
  transition: all 0.3s ease;
}

.download-grid a:hover {
  border-color: #2c4f21;
  opacity: 1;
}

.download-grid a .icon-pdf {
  width: 18px;
  height: 18px;
}

/* Members Page */
.top-banner {
  text-align: center;
  margin-bottom: 50px;
}
.top-banner img {
  max-width: 100%;
  height: auto;
}

.lead-text {
  max-width: 800px;
  font-size: 15px;
  margin-bottom: 80px;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: grid;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-group .btn-message {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.btn-group.single {
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.update-info,
.contact-info {
  font-size: 15px;
  text-align: center;
  margin: 5px 0;
}

.contact-info {
  margin-bottom: 20px;
}

/* Staff Page */
.section {
  margin-bottom: 60px;
}

.grid-3-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* ==========================================================================
   20. PRIVACY / MANAGEMENT POLICY
   ========================================================================== */
.policy-content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.policy-content h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 30px 0 10px;
}

.policy-box {
  margin-left: 28px;
  margin-bottom: 40px;
}

.policy-content p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.policy-content ol {
  counter-reset: policy-counter;
  padding-left: 0;
  list-style: none;
}

.policy-content ol li {
  counter-increment: policy-counter;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 20px;
}

.policy-content ol li::before {
  content: counter(policy-counter) ". ";
  font-weight: 700;
}

/* Policy PDF Download */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  margin-top: 30px;
}

.pdf-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pdf-item .orange-border {
  justify-content: flex-start;
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #5d4037;
}

.pdf-item .btn-message {
  min-width: 240px;
  max-width: 100%;
}

/* ==========================================================================
   21. 404 PAGE
   ========================================================================== */
.page-404 {
  text-align: center;
  padding: 40px 20px 120px;
}

.page-404 .error-label {
  font-size: 1.4rem;
  color: #999;
  letter-spacing: 0.2rem;
}

.page-404 .error-num {
  font-size: 8rem;
  font-weight: 900;
  color: #2c4f21;
  line-height: 1.2;
}

.page-404 p {
  font-size: 1.4rem;
  color: #666;
  margin: 20px 0 30px;
  text-align: center;
}

/*
==========================================================================
   22. RESPONSIVE - ALL MEDIA QUERIES
   ========================================================================== */
/* --- max-width: 767px (SP) --- */
@media only screen and (max-width: 767px) {
  .anc-wrap span {
    scroll-margin-top: 80px;
  }
  /* Store List */
  .shop-item {
    flex-direction: column;
    gap: 20px;
  }
  .shop-image {
    width: 100%;
  }
  .shop-name {
    font-size: 20px;
  }

  /* Banner List */
  .banner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Introduction */
  .intro-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
  }
  .intro-image,
  .intro-text {
    flex: 0 0 100%;
    width: 100%;
  }
  .intro-image {
    order: 1;
  }
  .intro-text {
    order: 2;
  }
  .intro-title {
    text-align: left;
    font-size: 20px;
  }

  /* Overview */
  .flex-row,
  .flex-row.reverse {
    flex-direction: column;
  }
  .sub-nav a {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  .sub-nav a .sub-nav-ja {
    font-size: 1.8rem;
  }
  .sub-nav a .sub-nav-en {
    font-size: 1.1rem;
  }
  table {
    width: 100%;
  }
  .inner-overview .table-responsive {
    display: block;
  }
  .inner-overview th {
    min-width: 100px;
  }

  .modal-body {
    overflow-x: hidden;
  }

  .modal-content {
    padding: 10px;
    max-height: 80vh;
  }

  .modal-content .section-title-green {
    width: 100%;
    margin-left: 0;
  }

  .modal-content .img-profile {
    width: 55%;
  }

  /* Interview */
  .interview-profile {
    flex-direction: column;
    text-align: left;
  }
  .profile-image {
    width: 100%;
  }
  .a-content p {
    margin-left: 0;
  }
  .q-title {
    font-size: 18px;
  }

  /* Daily Flow */
  .flow-item {
    flex-direction: column;
    gap: 20px;
    flex: 0 0 20%;
    padding: 40px 0 40px 0px;
  }
  .flow-image-box {
    width: 100%;
    margin-left: auto;
  }
  .flow-time {
    left: -20px;
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }

  /* Toggle Menu */
  .menu-button {
    display: block;
    position: fixed;
    top: 0%;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 100;
    cursor: pointer;
    background: #008d36;
    border: none;
  }

  .menu-button span {
    display: block;
    background: #fff;
    width: 26px;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }

  .menu-button span:first-child {
    top: 16px;
  }
  .menu-button span:nth-child(2) {
    top: 24px;
  }
  .menu-button span:last-child {
    top: 32px;
  }

  .menu-button.active span {
    background: #fff;
  }
  .menu-button.active span:first-child {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
  }
  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-button.active span:last-child {
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .toggle-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 105;
    background: rgba(45, 140, 60, 0.97);
    overflow-y: auto;
    padding: 60px 10px 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s;
  }

  .toggle-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .toggle-menu .sp-menu-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .toggle-menu .sp-menu-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 5px);
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
  }

  .toggle-menu .sp-menu-buttons .sp-btn-recruit {
    background: #2c4f21;
  }
  .toggle-menu .sp-menu-buttons .sp-btn-staff {
    background: #e88b00;
  }
  .toggle-menu .sp-menu-buttons .sp-btn-member {
    background: #2c4f21;
    border: 1px solid #fff;
  }
  .toggle-menu .sp-menu-buttons .sp-btn-contact {
    background: rgba(255, 255, 255, 0.2);
  }

  .toggle-menu .sp-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .toggle-menu .sp-nav-list li {
    width: calc(50% - 4px);
  }

  .toggle-menu .sp-nav-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 10px;
    background: #fff;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
  }

  .toggle-menu .sp-nav-list li a .nav-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0px;
  }

  .toggle-menu .sp-nav-list li a .nav-icon img {
    width: 100%;
  }

  .sp-kv-side-buttons a {
    width: 49%;
    margin-bottom: 8px;
  }

  .toggle-menu .sp-kv-banners {
    margin-top: 10px;
  }

  .toggle-menu .sp-kv-banners a {
    width: 49%;
    display: block;
    margin-bottom: 10px;
  }

  .toggle-menu .sp-kv-banners a img {
    width: 100%;
    border-radius: 8px;
  }

  /* Header SP */
  .header-inner {
    padding: 8px 15px;
    top: 0;
    position: fixed;
    left: 0;
    width: calc(100% - 50px);
    max-width: 100%;
    margin-top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .header-logo a {
    padding: 0px 0;
  }

  .header-logo img {
    height: 32px;
  }

  .header-nav {
    display: none;
  }

  /* KV SP */
  .kv-wrapper {
    min-height: auto;
  }

  .kv-slider {
    position: fixed;
    height: 100dvh;
  }

  .kv-text {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    padding-right: 0;
  }

  .kv-text img {
    left: 15px;
    max-width: calc(100% - 30px);
  }

  .kv-side-buttons,
  .kv-side-banners {
    display: none;
  }

  .kv-news {
    bottom: 50px;
    left: 0;
    right: 15px;
    max-width: none;
    padding: 10px 20px 10px 20px;
  }

  .content-wave {
    margin-top: -20px;
  }

  /* Section Titles SP */
  .section-title {
    margin-bottom: 10px;
  }
  .section-title .jp {
    font-size: 2.2rem;
  }

  .section-title--left {
    text-align: center;
  }

  .section-title-green {
    font-size: 2.2rem;
    text-align: left;
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  .page-kv .page-title {
    font-size: 2.4rem;
  }

  .slider-band--large .slider-track img {
    height: 200px;
  }

  /* About Section SP */
  .sec-about .about-content {
    flex-direction: column;
    gap: 20px;
  }

  .sec-about .about-img,
  .sec-about .about-text {
    width: 100%;
  }

  /* Specialty Grid SP */
  .specialty-grid .item {
    width: calc(50% - 10px);
  }

  /* Work Grid SP */
  .work-grid .work-item {
    width: calc(50% - 10px);
  }

  /* Intro Section SP */
  .intro-section .intro-flex {
    flex-direction: column;
    gap: 20px;
  }

  .intro-section .intro-img,
  .intro-section .intro-text {
    width: 100%;
  }

  /* Agricultural Grid SP */
  .agri-grid .agri-item {
    width: calc(50% - 10px);
  }

  /* Store List SP */
  .store-list .store-item {
    flex-direction: column;
  }

  .store-list .store-item .store-img {
    width: 100%;
  }

  /* Recruit SP */
  .recruit-hero {
    flex-direction: column;
  }

  .recruit-hero .hero-img,
  .recruit-hero .hero-text {
    width: 100%;
  }

  .recruit-hero .hero-text {
    padding: 30px 20px;
  }

  .recruit-step {
    flex-direction: column;
    gap: 15px;
  }

  /* Category List SP */
  .category-list .cat-item {
    flex-direction: column;
    gap: 10px;
  }

  .category-list .cat-item .cat-thumb {
    width: 100%;
    height: 180px;
  }

  /* Anchor Nav SP */
  .anchor-nav {
    gap: 8px;
  }

  .anchor-nav a {
    width: calc(50% - 4px);
    justify-content: center;
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  /* Footer SP */
  .footer-content {
    flex-direction: column;
    gap: 30px;
    margin: 0 auto 50px;
  }

  .sec-footer-links {
    border-radius: 0 0 20px 20px;
    padding: 50px 0 80px;
  }

  .footer-logo-area {
    width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-nav .nav-col {
    width: calc(50% - 10px);
    margin-left: 0;
  }

  .toggle-menu .footer-nav {
    gap: 0;
    margin-top: 10px;
  }

  .toggle-menu .footer-nav .nav-col {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .toggle-menu .footer-nav .nav-col li a {
    font-size: 1.5rem;
  }

  /* Footer Links SP */
  .footer-links-heading {
    font-size: 2.2rem;
  }

  .footer-link-btns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-link-grid a {
    min-width: 100%;
  }

  .btn-orange {
    font-size: 2rem;
    width: 100%;
    padding: 16px 40px;
  }

  .btn-green-outline {
    font-size: 2rem;
    width: 100%;
    padding: 16px 40px;
  }

  .footer-banner-grid .work-banner-card {
    width: 100%;
  }

  .banner-slider-wrap {
    padding: 20px 40px;
  }

  /* Confirm Buttons SP */
  .confirm-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Confirm Table SP */
  .confirm-table .form-row {
    flex-direction: column;
  }

  .confirm-table .form-label {
    flex-basis: auto;
    width: 100%;
    padding: 12px 16px;
  }

  .confirm-table .form-value {
    padding: 12px 16px;
  }

  /* Overview Table SP */
  .overview-table th {
    width: 120px;
  }

  /* Download Grid SP */
  .download-grid a {
    width: calc(50% - 8px);
    justify-content: center;
  }

  /* Page Top SP */
  .page-top {
    right: 15px;
    bottom: 15px;
    width: 44px;
    height: 44px;
  }

  /* TOP SP Overrides */
  .about-flex {
    flex-direction: column;
  }
  .about-flex .about-img,
  .about-flex .about-text {
    width: 100%;
  }
  .about-banners {
    flex-direction: column;
  }
  .work-flex {
    flex-direction: column;
  }
  .work-flex .work-text,
  .work-flex .work-img {
    width: 100%;
  }
  .work-banners {
    flex-wrap: wrap;
    /* flex-direction: column; */
  }
  .work-banner-card {
    flex: unset;
    width: 46%;
    border: 2px solid #2c4f21;
    height: 120px;
  }
  .news-list .news-item .news-thumb {
    width: 130px;
  }
  .work-banner-label {
    font-size: 2.2rem;
  }
  .specialty-grid .specialty-item {
    width: calc(50% - 15px);
  }
  .specialty-title-area {
    padding: 10px 0 20px;
  }
  .specialty-title-area .title-main-img {
    width: 80%;
  }
  .specialty-grid {
    gap: 10px;
  }
  .specialty-grid .specialty-item {
    width: calc(50% - 5px);
  }
  .sec-recruit .recruit-inner {
    flex-direction: column;
  }
  .sec-recruit .recruit-text,
  .sec-recruit .recruit-img {
    width: 100%;
    padding-right: 0;
  }
  .sec-recruit .recruit-text {
    order: 1;
    margin-bottom: 20px;
  }
  .sec-recruit .recruit-img {
    order: 2;
  }
  .news-header {
    flex-direction: column;
    gap: 0;
  }
  .btn-primary {
    font-size: 1.5rem;
    width: 180px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-primary .btn-arrow img {
    width: 30px;
  }
  .news-header .btn-primary {
    margin-left: auto;
  }

  .news-list .news-item {
    align-items: start;
  }

  .news-list .news-item .news-meta {
    display: block;
  }
  .cat-filter-bar {
    flex-wrap: wrap;
  }

  .table-responsive-2 thead th,
  .table-responsive-2 td {
    padding: 10px;
    font-size: 14px;
  }

  .table-responsive-2 thead th {
    width: 140px;
  }

  /* yakkan.html のみ：最終列を固定幅・中央寄せ */
  .yakkan .table-responsive-2 thead th:last-child {
    width: 96px;
    text-align: center;
  }

  .table-container-wrap {
    width: 100%;
    min-width: 100%;
    overflow-x: scroll;
  }

  .table-container-wrap .table-responsive-3 {
    min-width: 80px;
  }

  .table-responsive-4 th {
    width: 40%;
    padding: 12px 10px;
    font-size: 14px;
  }
  .table-responsive-4 td {
    padding: 12px 10px;
    font-size: 14px;
  }

  .table-responsive-5 td {
    padding: 10px;
    font-size: 14px;
  }
  .table-responsive-5 td.col-title {
    width: 40%;
  }

  .table-responsive-6 th.col-title {
    width: 40%;
    padding: 12px 10px;
    font-size: 14px;
  }
  .table-responsive-6 td {
    padding: 12px 10px;
    font-size: 14px;
  }

  .nav-archive {
    font-size: 13px;
    padding: 0 20px;
  }
  .nav-prev,
  .nav-next {
    width: 60px;
  }

  /* Banner */
  .banner-text {
    font-size: 14px;
  }
  .banner-list li a {
    min-height: 80px;
    padding: 10px 15px;
  }

  /* Members / Staff SP */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-3-2 {
    grid-template-columns: 1fr;
  }

  /* Policy SP */
  .pdf-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pdf-item .btn-message {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .specialty-grid .specialty-item h4 {
    font-size: 1.8rem;
  }

  .sec-subpage .specialty-grid .specialty-item p {
    font-size: 1.4rem;
  }

  .page-kv-content {
    padding: 0px 20px 40px;
  }

  .intro-description {
    font-size: 1.4rem;
  }

  .name-en {
    font-size: 1.8rem;
  }

  .name-jp {
    font-size: 2rem;
  }

  .profile-details {
    font-size: 1.4rem;
  }

  .a-content p {
    font-size: 1.4rem;
  }

  .flow-header {
    margin-bottom: 10px;
  }

  .flow-en {
    font-size: 1.8rem;
  }

  .flow-title {
    font-size: 2.8rem;
  }

  .flow-item-title {
    font-size: 2rem;
  }

  .flow-item-text {
    font-size: 1.4rem;
  }

  .page-404 p {
    text-align: left;
  }

  .btn-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 0;
  }

  .btn-message {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 16px 30px 16px 15px;
    background: #fff url(../images/page/icon-new-tab.svg) no-repeat right 15px
      center;
  }

  .btn-group .btn-message {
    width: 48%;
  }

  .sp-br {
    display: inline;
  }

  .footer {
    background: #3a2b17 url(../images/home/footer-bg_260514.jpg) no-repeat
      bottom center;
    background-size: cover;
  }

  .footer-popo img {
    width: 113px;
  }
}

/* h3 standard */
.heading-h3 {
  font-size: 1.6rem;
  line-height: 2;
  color: #503a19;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .heading-h3 {
    font-size: 2.2rem;
  }

  .footer-banner-grid {
    gap: 90px;
  }
}
