@charset "utf-8";

:root {
  /* =========================
     Brand Colors
     ========================= */

  /* メインブランドグリーン */
  --brand-green: #2f9c7a;

  /* 見出し・強調用（ダーク） */
  --brand-green-dark: #237a5f;

  /* 背景・ハイライト用（ライト） */
  --brand-green-light: #e6f3ee;

  /* =========================
     Neutral Colors
     ========================= */

  /* ベースホワイト */
  --white: #ffffff;

  /* 薄グレー（汎用・比較表・補足） */
  --gray-light: #f5f6f7;

  /* 薄グレー（共感・課題提起用） */
  --gray-soft: #f7f7f7;

  /* =========================
     Text Colors
     ========================= */

  /* 本文テキスト */
  --text-main: #333333;

  /* 補足・注釈テキスト */
  --text-sub: #666666;

  /* =========================
     UI Colors
     ========================= */

  /* ボーダー・区切り線 */
  --border-light: #dddddd;

  /* 非アクティブ要素 */
  --disabled: #cccccc;
}

h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: bold;
}

h3 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
    line-height: 1.4;
  }

  h2 {
    font-size: 2.6rem;
    line-height: 1.4;
  }
  h3 {
    font-size: 1.9rem;
    line-height: 1.4;
  }
}

.cta-wrap {
  max-width: 40rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-wrap li a.contact-btn,
#subNavi ul li a.contact-btn {
  display: inline-flex;
  width: 15rem;
  height: 48px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  background: #e37c21;
}

.cta-wrap li a.contact-btn:hover,
#subNavi ul li a.contact-btn:hover {
  opacity: 0.7;
  color: #fff;
}

.cta-wrap li a.download-btn,
#subNavi ul li a.download-btn {
  display: inline-flex;
  width: 15rem;
  height: 48px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #e37c21;
  text-decoration: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  background: #fff;
  border: 2px solid #e37c21;
}

.cta-wrap li a.download-btn:hover,
#subNavi ul li a.download-btn:hover {
  opacity: 0.7;
  color: #e37c21;
}

/**************************************************
 header
**************************************************/

.simple-header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  align-items: center;
  padding-inline: 3rem;
  z-index: 1000;
  background-color: #fff;
  box-sizing: border-box;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.farmcare__logo {
  width: 140px;
  display: block;
  margin-left: 30px;
}

#subNavi {
  width: calc(100% - 5rem);
}

#subNavi ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#subNavi ul li {
  margin-inline-end: 2rem;
}

#subNavi ul li:last-of-type {
  margin-inline-end: 0;
}

#subNavi ul li a {
  font-size: 1.6rem;
  padding-block: 2.2rem;
  display: block;
  color: var(--nav-color);
  font-weight: 700;
}

#subNavi ul li.cur a {
  position: relative;
  pointer-events: none;
  color: var(--main-color);
}

#subNavi ul li.cur a::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -1.1rem;
}

#subNavi ul li a:first-of-type svg {
  margin-inline-start: 0.8rem;
}

#subNavi ul li a:hover {
  color: var(--main-color);
}

#subNavi ul li a:hover svg path {
  fill: #2e926e;
}

#globalNavi {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  width: 80%;
  max-width: 400px;
  right: 0;
  background-color: #fff;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.4s ease-in-out;
  overflow-y: auto;
}

#globalNavi.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.g_naviInner {
  width: 100%;
  height: 100%;
}

/******simpleheader************/
@media screen and (max-width: 1080px) {
  .simple-header {
    height: 6rem;
    padding-inline: 1rem;
    padding-block-start: 0rem;
    box-sizing: border-box;
  }

  .farmcare__logo {
    width: 120px;
    display: block;
    margin-left: 0;
  }

  .g_naviInner {
    height: auto;
  }

  #subNavi,
  .h_left {
    display: none;
  }

  #globalNavi.active {
    opacity: 1;
    visibility: visible;
  }

  .g_navi {
    width: 100%;
    padding-inline: 1.6rem;
    margin-block-start: 10rem;
  }

  .g_navi ul {
    width: 100%;
    padding: 0;
  }

  .g_navi ul li {
    margin-block-start: 0.8rem;
    width: 100%;
  }

  .g_navi ul li a {
    font-size: 1.6rem;
    font-weight: var(--font-bold);
    display: block;
    text-align: center;
    line-height: 3;
  }

  .g_navi ul li a:hover {
    color: var(--text-color);
  }
}

/**************************************************
 menu
**************************************************/
#menu {
  display: none;
}

@media screen and (max-width: 1080px) {
  #menu {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    text-align: center;
    z-index: 9998;
    background-color: var(--brand-green);
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    pointer-events: auto;
    flex-direction: column;
    align-items: center;
  }

  .menu-label {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-top: 3rem;
  }

  #menu:hover,
  #menu.active {
    background-color: var(--brand-green);
  }

  #menu.close {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
    pointer-events: none;
  }

  .menu-btn,
  .menu-btn span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  /* ハンバーガーボタン変形 */
  .menu-btn {
    position: relative;
    width: 3rem;
    height: 0.9rem;
    cursor: pointer;
    margin-inline: auto;
  }

  .menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.4s;
  }

  .menu-btn span:nth-of-type(1) {
    top: 1.6rem;
  }

  .menu-btn span:nth-of-type(2) {
    top: 2.4rem;
  }

  .menu-btn span:nth-of-type(3) {
    top: 3.2rem;
  }

  #menu.active .menu-btn span:nth-of-type(1) {
    transform: translateY(0.4rem) rotate(-45deg);
  }

  #menu.active .menu-btn span:nth-of-type(2) {
    transform: translateY(-0.4rem) rotate(45deg);
  }

  #menu.active .menu-btn span:nth-of-type(3) {
    display: none;
  }
}

.l-content {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 0px;
  padding-top: 0px;
}
@media screen and (max-width: 767px) {
  .l-content {
    max-width: 100%;
    margin: 0 auto;
  }
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.cta-section._bg {
  /*全幅背景*/
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  color: #fff;
  padding: 8rem 0rem;
  text-align: center;
  background: linear-gradient(to bottom, #208e73, #00765c);
}

.cta-title {
  width: 90%;
  display: block;
  margin: auto;
  text-align: center;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  margin-block-end: 2rem;
}

.cta-boxes {
  width: 100%;
  max-width: 100rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline: auto;
}

.cta-item {
  width: calc(100% / 3 - 2rem);
  background: #fff;
  color: #000;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-inline-end: 3rem;
}

.cta-item:last-child {
  margin-inline-end: 0rem;
}

.cta-item h3 {
  font-size: 1.8rem;
  margin-block-start: 1rem;
  margin-block-end: 1.6rem;
}

.cta-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0rem 5rem 0rem 4rem;
  font-size: 1.6rem;
  border-radius: 28px;
  font-weight: bold;
  line-height: 56px;
  text-decoration: none;
}

.cta-btn .arrow-icon-wrapper {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.cta-btn:hover .arrow-icon-wrapper {
  transform: translateY(-50%) translateX(4px);
}

.cta-btn .arrow-icon {
  width: 100%;
  height: 100%;
}

.cta-btn.primary {
  background-color: #e37c21;
  color: #ffffff;
}

.cta-btn.farmer {
  background-color: #068b42;
  color: #ffffff;
}

.cta-btn.secondary {
  background-color: #1958b7;
  color: #ffffff;
}

.cta-link {
  display: block;
  margin-block-start: 2rem;
  font-size: 1.5rem;
  color: #0073e6;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .content-inner {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-top: 80px;
  }

  .cta-boxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-inline: auto;
  }

  .cta-item {
    background: #fff;
    color: #000;
    padding: 3rem 2rem;
    border-radius: 1rem;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-inline: auto;
    margin-block-end: 3rem;
  }
  .cta-item:last-child {
    margin-inline: auto;
  }
}

/**************************************************
eyecatch
**************************************************/
.eyecatch {
  position: relative;
  width: 100%;
  height: 48rem;
  margin: 0 auto;
  overflow: hidden;
  margin-block-start: 8rem;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .eyecatch {
    width: 100%;
    height: 48rem;
    margin-block-start: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .eyecatch {
    width: 100%;
    height: 55rem;
  }
}

.eyecatch .eyecatch-inner {
  position: relative;
  max-width: 120rem;
  height: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .eyecatch .eyecatch-inner {
    width: 100%;
    height: 100%;
    margin-inline: auto;
  }
}

.eyecatch .eyecatch-textbox {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  background: #fff;
  text-align: center;
  padding: 3.5rem 3.5rem 4rem;
  background-color: #ffffffd6;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff;
}

@media screen and (max-width: 767px) {
  .eyecatch .eyecatch-textbox {
    width: 92%;
    margin-inline: auto;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2.5rem 1.5rem 3rem;
    bottom: auto;
  }
}

.heading-lv1 {
  display: block;
  color: #2f9c7a;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  width: 100%;
  margin-block-end: 1rem;
}

@media screen and (max-width: 767px) {
  .heading-lv1 {
    width: 100%;
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.4;
    text-align: center;
  }
}

.eyecatch .eyecatch-text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  width: 100%;
  display: block;
  margin-block-start: 0.5rem;
  margin-block-end: 2rem;
}

@media screen and (max-width: 767px) {
  .eyecatch .eyecatch-text {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
    padding-block: 0;
    margin-block-end: 1rem;
  }
}

.eyecatch-cta {
  display: flex;
  width: 100%;
  margin-block: 0;
  margin-inline: auto;
}

.eyecatch-img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .eyecatch-img {
    width: 100%;
    height: 55rem;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.heading--level1 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #208e73;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .heading--level1 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #208e73;
    text-align: center;
    display: block;
    margin-bottom: 8px;
  }
}

.heading--level2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #208e73;
}

@media screen and (max-width: 768px) {
  .heading--level2 {
    width: 90%;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #208e73;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

/**************************************************
.problem 
**************************************************/

.problem {
  padding-block: 8rem;
  text-align: center;
  position: relative;
  background-color: #f5f6f7;
}

.problem::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 35px solid #f5f6f7;
  border-left: 7rem solid transparent;
  border-right: 7rem solid transparent;
}

.problem__ttl {
  color: var(--brand-green);
  margin-block: 1rem 4rem;
}

.problem__ttl span {
  color: var(--c-black);
  font-size: 1.8rem;
  margin-block-end: 1rem;
  display: block;
  font-weight: bold;
}

.problem__ttl h2 {
  color: var(--brand-green);
  display: block;
}

.problem__list {
  max-width: 74rem;
  background-color: #fff;
  border-radius: 8px;
  padding: 3rem 5rem 5rem;
  margin-inline: auto;
  box-sizing: border-box;
  border: 1px solid var(--c_light-gray);
}

.problem__list li {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: bold;
  position: relative;
  text-align: left;
  padding: 1.6rem 0 1.6rem 4rem;
  border-bottom: 1px dashed #cbcbcb;
}

.problem__list li::before {
  content: "";
  width: 26px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMDhFNzMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cG9seWxpbmUgcG9pbnRzPSI5IDExIDEyIDE0IDIyIDQiPjwvcG9seWxpbmU+PHBhdGggZD0iTTIxIDEydjdhMiAyIDAgMCAxLTIgMkg1YTIgMiAwIDAgMS0yLTJWNWEyIDIgMCAwIDEgMi0yaDExIj48L3BhdGg+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 20px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .problem__list {
    width: 90%;
    margin-inline: auto;
    display: block;
    padding: 2rem 2rem 3rem 2rem;
  }
  .problem__list li {
    position: relative;
    padding: 1.5rem 0rem 1rem 4rem;
    border-bottom: 1px dashed #cbcbcb;
  }

  .problem__list li p {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0;
  }

  .problem__list li::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMDhFNzMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cG9seWxpbmUgcG9pbnRzPSI5IDExIDEyIDE0IDIyIDQiPjwvcG9seWxpbmU+PHBhdGggZD0iTTIxIDEydjdhMiAyIDAgMCAxLTIgMkg1YTIgMiAwIDAgMS0yLTJWNWEyIDIgMCAwIDEgMi0yaDExIj48L3BhdGg+PC9zdmc+");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 20px;
    left: 8px;
  }
}

.problem__action {
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-block-start: 3rem;
  z-index: 5;
}

.problem__action span {
  font-size: 2.8rem;
  font-weight: bold;
}

.problem__action p {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .problem {
    padding-block: 6rem;
    text-align: center;
    position: relative;
  }

  .problem__ttl {
    margin-block: 1rem 3rem;
    width: 95%;
    margin-inline: auto;
  }

  .problem__ttl span {
    font-size: 1.6rem;
    margin-block-end: 1rem;
    display: block;
  }

  .problem__ttl h2 {
    display: block;
    margin-block-end: 2rem;
  }
  .problem__action p {
    font-size: 1.5rem;
  }
}

/**************************************************
.about 
**************************************************/

.about {
  padding-block: 8rem 8rem;
  text-align: center;
  margin-inline: auto;
  background: var(--brand-green-light);
}

.about__ttl {
  text-align: center;
}

.about__ttl p {
  font-size: 1.6rem;
  line-height: 1.75;
}

.about__ttl span {
  margin-block-start: 1rem;
  color: var(--brand-green);
  font-size: 2.8rem;
  display: block;
}

.about__text {
  max-width: 74rem;
  margin-inline: auto;
  font-size: 1.6rem;
  line-height: 2;
}

.about__text span {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
  color: var(--brand-green);
}

.about__scheme {
  max-width: 90rem;
  margin-inline: auto;
  margin-block: 4rem;
  padding-inline: 3rem;
}

@media screen and (max-width: 768px) {
  .about__ttl p {
    font-size: 1.5rem;
    line-height: 1.75;
  }
  .about__ttl span {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .about__text {
    width: 90%;
    margin-inline: auto;
    font-size: 1.5rem;
    line-height: 2;
  }

  .about__scheme {
    max-width: 84%;
    margin-inline: auto;
    margin-block-start: 4rem;
    padding-inline: 0;
  }
}

/**************************************************
.about-space
**************************************************/
.about-space {
  padding-block: 8rem;
  margin-inline: auto;
  text-align: center;
  background: #fff;
}
.about-space__ttl {
  margin-block-start: 1rem;
  color: var(--brand-green);
}

.about-space__list {
  max-width: 110rem;
  margin-inline: auto;
  padding-inline: 3rem;
  display: flex;
  gap: 2rem;
}

.about-space__list li {
  position: relative;
  overflow: hidden;
}

.hoverMask {
  opacity: 0;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 5rem;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: all 0.6s ease;
}

.hoverMask:hover {
  opacity: 1;
}

.about-space__body {
  text-align: left;
  width: calc(100% - 33%);
  padding-left: 4rem;
}

.about-space__flex {
  max-width: 110rem;
  margin-inline: auto;
  display: flex;
  margin-block: 3rem;
  padding-inline: 3rem;
}

.about-space__body h3 {
  font-size: 2.4rem;
  margin-block-start: 0;
  margin-block-end: 1.5rem;
  color: var(--brand-green);
  line-height: 1.3;
}

.about-space__body span {
  font-size: 1.6rem;
  font-weight: bold;
  background: var(--brand-green);
  padding: 1rem 2rem 1rem 2rem;
  color: #fff;
  display: block;
}

.about-space__body p {
  font-size: 1.6rem;
  margin-block: 1rem 3rem;
  line-height: 1.75;
}

.about-space__img {
  width: 35rem;
}

@media screen and (max-width: 768px) {
  .about-space {
    width: 100%;
    padding-block: 6rem;
    margin-inline: auto;
  }

  .about-space__ttl {
    font-size: 2.6rem;
    margin-block-end: 2rem;
  }

  .about-space__flex {
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    margin-block-start: 3rem;
    margin-block-end: 0;
    padding-inline: 3rem;
    flex-direction: column;
  }

  .about-space__img {
    width: 100%;
  }

  .about-space__body {
    width: 100%;
    padding: 2rem 0rem 0rem;
    text-align: left;
  }

  .about-space__body h3 {
    font-size: 2rem;
    margin-block-start: 1.5rem;
  }

  .about-space__text {
    width: 80%;
    margin-inline: auto;
  }

  .about-space__body span {
    font-size: 1.5rem;
  }
  .about-space__body p {
    font-size: 1.5rem;
    margin-block: 1rem 3rem;
  }
}

.swiper-wrap {
  position: relative;
}

.swiper-container {
  max-width: 110rem;
  margin-inline: auto;
  padding-inline: 3rem;
}

.swiper-wrapper {
  padding: 30px 0;
  display: flex;
  gap: 1rem;
}

.swiper-slide {
  width: calc(100% / 3 - 2rem);
  height: auto;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hoverMask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;

  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  text-align: center;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.hoverMask:hover {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
  display: none;
}

@media screen and (max-width: 768px) {
  .swiper-slide {
    width: 90%;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 50;
    bottom: 0;
  }

  .swiper-button-prev {
    left: 10px;
    background-image: url("https://agritrio.co.jp/images/arrow_left.svg");
    width: 40px;
    height: 40px;
  }

  .swiper-button-next {
    right: 10px;
    background-image: url(https://agritrio.co.jp/images/arrow_right.svg);
    width: 40px;
    height: 40px;
  }
}

/**************************************************
.features
**************************************************/
.features {
  padding-block: 8rem;
  margin-inline: auto;
  text-align: center;
  background: var(--bg-light-green);
}

.features__ttl {
  margin-block-start: 1rem;
  color: var(--brand-green);
}

.features__list {
  max-width: 110rem;
  margin-inline: auto;
  display: flex;
  gap: 3rem;
  padding-inline: 3rem;
  box-sizing: border-box;
}

.features__list li {
  width: calc(100% / 3);
  background: #fff;
}

.features__img {
  width: 100%;
}

.features__body {
  text-align: left;
  padding: 2rem 2.5rem 3rem;
}
.features__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features__head p {
  font-weight: bold;
  color: var(--brand-green);
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}

.features__number {
  font-size: 4rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  -webkit-text-stroke: 1px var(--brand-green);
}

.features__list li h3 {
  text-align: left;
  display: block;
  margin-block-end: 1rem;
  margin-block-start: 0;
}

.features__text {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .features__list {
    width: 100%;
    margin-inline: auto;
    display: flex;
    gap: 3rem;
    flex-direction: column;
  }
  .features__list li {
    width: 100%;
  }

  .features__img {
    width: 100%;
    height: auto;
  }
  .features__list li h3 {
    text-align: left;
    display: block;
    margin-block-end: 1rem;
  }
}

/**************************************************
.comparison
**************************************************/

.comparison {
  padding-block: 8rem;
  background-color: var(--gray-light);
}

.comparison__ttl {
  color: var(--brand-green);
  text-align: center;
}

.comparison-table {
  border: 1px solid #ddd;
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  overflow: hidden;
}

.comparison-table__inner {
  width: 100%;
  text-align: center;
  table-layout: fixed; /* ← 列幅を固定的に計算 */
  border-collapse: separate;
  border-spacing: 0;
}

/* colgroup で列幅を定義 */
.comparison-col--feature {
  width: 17rem;
} /* 1列目固定 */
.comparison-col--even {
  width: calc((100% - 17rem) / 2);
} /* 2,3列目同幅 */

.comparison-table__header {
  background-color: #999;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-weight: bold;
  vertical-align: middle;
  color: #fff;
  padding: 1.7rem;
}

.comparison-table__header.comparison-table__header--md-sticky {
  position: static;
  background: var(--brand-green);
  z-index: 2;
}

.comparison-table__text {
  padding: 15px;
  border-right: 2px solid #edf4ef;
  border-bottom: 2px solid #edf4ef;
  vertical-align: middle;
  background: #fff;
  overflow-wrap: anywhere;
  font-size: 1.5rem;
}

.comparison-table__text:nth-child(2) {
  background-color: #fff;
  border-bottom: 2px solid var(--gray-light);
}

.comparison-table__text:nth-child(3) {
  background-color: var(--brand-green-light);
  border-bottom: 2px solid var(--white);
}

.comparison-table__header:nth-child(3) {
  background-color: var(--brand-green);
}

.comparison-table__header:last-child,
.comparison-table__text:last-child {
  border-right-width: 0;
}

.comparison-table__body-row:last-child .comparison-table__header,
.comparison-table__body-row:last-child .comparison-table__text {
  border-bottom-width: 0;
}

/* スマホ：横スクロール＋1列目をstickyに */
@media screen and (max-width: 1060px) {
  .comparison {
    padding-block: 6rem;
  }

  .comparison__ttl {
    margin-block-start: 0;
    margin-block-end: 2rem;
  }

  .comparison-table {
    border-right-width: 0;
    overflow-x: auto;
    width: 90%;
    margin-inline: auto;
  }

  .comparison-table__inner {
    width: auto;
    min-width: 100%;
  }

  .comparison-table__header,
  .comparison-table__text {
    white-space: nowrap; /* 可読性重視。必要なら normal に */
  }

  .comparison-table__header:last-child,
  .comparison-table__text:last-child {
    border-right-width: 1px;
  }

  .comparison-table__header {
    padding: 1.5rem;
  }

  /* 1列目（thead th と tbody th）をstickyに */
  .comparison-table__header--md-sticky {
    left: 0;
  }
  /* tbody 側の1列目セルもsticky背景を指定（見出しセルの色と合わせるなら変更） */
  .comparison-table__body
    .comparison-table__header.comparison-table__header--md-sticky {
    background: #efefef;
    color: #111;
    font-weight: normal;
    font-size: 1.4rem;
  }
}

/**************************************************
.step 
**************************************************/

.step {
  width: 100%;
  padding-block: 8rem 10rem;
  background: var(--brand-green);
}

.step__ttl {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-block-start: 1rem;
  color: #fff;
  text-align: center;
}

.step__list {
  display: flex;
  gap: 5rem;
  width: 100%;
  max-width: 110rem;
  margin-inline: auto;
  padding-inline: 3rem;
}

.step__list li {
  width: calc(100% / 3);
  background: #fff;
  padding: 3rem 3rem 4rem;
  border-radius: 12px;
  position: relative;
}

.step__list li .step__icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin-inline: auto;
  border-radius: 50%;
  background: #efefef;
  margin-block-end: 1.5rem;
}

.step__list li .step__icon img {
  position: absolute;
  width: 60px;
  height: 120px;
  left: 50%;
  transform: translateX(-50%);
}

.step__list li span {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-block-end: 1rem;
}

.step__list li p {
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: justify;
}

/* ===== 矢印（Font Awesome） =====
   PC：各 li の右側中央に ＞ を表示。最後の要素は非表示。 */
.step__list li:not(:last-child)::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

/* ===== スマホ：縦並びにして下向き矢印に ===== */
@media (max-width: 768px) {
  .step {
    width: 100%;
    padding-block: 6rem;
    background: var(--brand-green);
  }

  .step__list {
    flex-direction: column;
    width: 100%;
    gap: 4rem;
  }

  .step__list li {
    width: 100%;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    position: relative;
  }

  /* 右矢印→下向き矢印に切り替え */
  .step__list li:not(:last-child)::after {
    content: "";
    margin: auto;
    position: absolute;
    bottom: -25px;
    right: 50%;
    width: 25px;
    height: 25px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    top: auto;
    transform: rotate(135deg);
    margin-right: -10px;
  }
}

/**************************************************
.faq
**************************************************/

.faq {
  width: 100%;
  max-width: 110rem;
  margin-inline: auto;
  padding-inline: 3rem;
  padding-block: 8rem;
}

.faq__ttl {
  color: var(--brand-green);
  text-align: center;
}

.faq__list {
  margin-inline: 4rem;
}

.faq__item {
  background: #edf4ef;
  padding: 3.5rem 4.5rem;
  margin-block-end: 3rem;
  border-radius: 12px;
}

.faq__question {
  display: flex;
  align-items: center;
  line-height: 1.7;
  margin-block-start: 0;
  margin-block-end: 2rem;
}

.faq-icon {
  background-color: var(--brand-green);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  line-height: 1;
  display: flex;
  font-size: 2.1rem;
}

.faq__answer {
  display: block;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq {
    width: 90%;
    margin-inline: auto;
    padding-block: 6rem;
    padding-inline: 0;
  }
  .faq__list {
    margin-inline: 0;
  }

  .faq__item {
    background: #edf4ef;
    padding: 2.5rem 2.5rem;
    margin-block-end: 3rem;
    border-radius: 12px;
  }

  .faq__question {
    display: flex;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .faq-icon {
    background-color: var(--brand-green);
    color: #fff;
    text-align: center;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
    margin-right: 10px;
    line-height: 1;
    display: flex;
    font-size: 2.1rem;
  }
  .faq__answer {
    display: block;
    font-size: 15px;
  }
}

/**************************************************
.pre-cta
*************************************************/
.pre-cta {
  position: relative;
  background: url(https://agritrio.co.jp/lp/nouhow-lp08-2_mv.jpg) no-repeat
    center center;
  background-size: cover;
  padding: 8rem 0 8rem 0;
}

.pre-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  opacity: 0.8;
}

.pre-cta__wrap {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  color: #fff;
  padding-inline: 4rem;
}

.pre-cta__title {
  color: #fff;
  text-align: center;
}

.pre-cta__text {
  max-width: 74rem;
  text-align: center;
  margin-inline: auto;
  line-height: 2;
}

.pre-cta__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32rem;
  height: 56px;
  margin-block-start: 4rem;
  margin-inline: auto;
  border-radius: 8px;
  background-color: #e37c21;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.8rem;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px #c26218;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.pre-cta__link:hover {
  transform: translateY(2px);
  box-shadow: 0 2px #c26218;
  opacity: 0.9;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .pre-cta {
    position: relative;
    background: url(https://agritrio.co.jp/lp/nouhow-lp08-2_mv.jpg) no-repeat
      center center;
    background-size: cover;
    padding: 8rem 0 8rem 0;
  }

  .pre-cta__wrap {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 3rem;
  }

  .pre-cta__title {
    font-size: 2.1rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
  }
  .pre-cta__text {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
    line-height: 2;
    font-size: 1.5rem;
  }
  .pre-cta__link {
    width: 32rem;
    height: 56px;
    margin-block-start: 3rem;
    border-radius: 4px;
    font-size: 1.6rem;
  }
}

/**************************************************
.contact
*************************************************/
.contact {
  padding-block: 10rem;
  background: var(--brand-green);
}

.contact__inner {
  width: 100%;
  max-width: 110rem;
  margin-inline: auto;
  padding-inline: 3rem;
}

.contact__title {
  color: #fff;
  margin-block-end: 2rem;
  text-align: center;
}

.contact__txt {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
  color: #ffffff;
}

.contact__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 4rem 6rem;
  box-shadow: 7px 7px 6px -1px rgba(19, 71, 52, 0.1);
  margin-block-start: 3rem;
  justify-content: space-between;
}

.contact__tel,
.contact__mail {
  flex: 1 1 calc(50% - 1rem);
  box-sizing: border-box;
  padding: 0 2rem;
  min-width: 280px;
  text-align: center;
  border-right: none;
}

.contact__tel {
  border-right: 2px dotted #2e926e;
  padding-inline-end: 2rem;
}

.contact__head {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-block-end: 2rem;
  margin-block-start: 0;
}

.contact__tel-num {
  position: relative;
  font-size: 4.6rem;
  font-weight: 700;
  color: #2e926e;
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
}

.contact__tel-num::before {
  content: "";
  width: 35px;
  height: 35px;
  background: url(https://agritrio.co.jp/images/icon-tel.svg) no-repeat center
    center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-40px, -40%);
}

.contact__tel-txt {
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
  margin-block-start: 1rem;
  text-align: center;
}

.contact-btn__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32rem;
  height: 56px;
  margin-block-start: 1.6rem;
  margin-inline: auto;
  border-radius: 28px;
  background-color: #e37c21;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.8rem;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px #c26218;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.contact-btn__link:hover {
  transform: translateY(2px);
  box-shadow: 0 2px #c26218;
  opacity: 0.9;
  color: #ffffff;
}

.contact-btn__link span {
  display: block;
  text-align: center;
  line-height: 56px;
  padding-inline-start: 1rem;
}

.contact-btn__link::before {
  content: "";
  width: 18px;
  height: 14px;
  background: url(https://agritrio.co.jp/images/icon-mail.svg) no-repeat center
    center;
  position: absolute;
  top: 50%;
  left: 4rem;
  transform: translateY(-50%);
}

.contact-btn__link::after {
  content: "";
  width: 9px;
  height: 15px;
  background: url(https://agritrio.co.jp/images/icon-arrow.svg) no-repeat center
    center;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}

.contact__note {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  margin-block-start: 1.5rem;
}

@media screen and (max-width: 768px) {
  .contact {
    padding-block: 6rem;
    background: var(--brand-green);
  }

    .contact__inner {
        width: 100%;
        padding-inline: 1rem;
        margin-inline: auto;
    }

  .contact__title {
    color: #fff;
    margin-block-end: 2rem;
    text-align: center;
    font-size: 2.6rem;
  }

  .contact__txt {
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        color: #ffffff;
        width: 90%;
        margin-inline: auto;
    }

    .contact__wrap {
        display: flex;
        justify-content: center;
        width: 90%;
        margin-inline: auto;
        padding: 3rem 3rem 4rem;
    }

  .contact__head {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-block-end: 1rem;
  }

  .contact__tel,
  .contact__mail {
    flex: 1 1 100%;
    padding: 0;
    border-right: none;
  }

  .contact__tel {
    border-bottom: 2px dotted #2e926e;
    padding-inline-end: 0;
    padding-block-end: 3rem;
  }

  .contact__tel-num {
        position: relative;
        font-size: 2.6rem;
        font-weight: 800;
        color: #2e926e;
        margin-inline-end: -3rem;
  }

  .contact-btn__link {
    width: 90%;
    height: 48px;
    margin-inline: auto;
    border-radius: 24px;
    font-size: 1.6rem;
  }

  .contact-btn__link::before {
    content: "";
    width: 18px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
  }

  .contact__tel-num::before {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-31px, -40%);
  }

  .contact__note {
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    margin-block-start: 1.5rem;
  }
}

/**************************************************
.footer
**************************************************/
.footer {
  background-color: #f5f5f5;
  padding: 5rem 1rem;
  color: var(--text-color);
  text-align: center;
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  line-height: 1.7;
  display: flex;
  gap: 3rem;
  justify-content: space-around;
  align-items: center;
}

.footer__info {
  text-align: left;
}
.footer__contact {
  text-align: left;
}
.footer__logo {
  display: block;
  font-weight: bold;
  text-decoration: none;
}

.footer__logo img {
  width: 140px;
}

.footer__office {
  width: 100%;
  font-size: 1.5rem;
  font-weight: normal;
}

.footer__address {
  width: 100%;
  font-size: 1.5rem;
  font-weight: normal;
}

.footer__tel,
.footer__mail {
  width: 100%;
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: normal;
  text-decoration: none;
}

.footer__tel a:hover,
.footer__mail a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer {
  }

  .footer__inner {
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.7;
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }

  .footer__contact {
    text-align: center;
  }

  .footer__info {
    text-align: center;
  }

  .footer__logo {
    display: block;
    margin-block-end: 1rem;
  }

  .footer__office,
  .footer__address,
  .footer__tel,
  .footer__mail {
    width: 100%;
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: normal;
    text-decoration: none;
    text-align: center;
  }

  .footer__time {
    font-size: 1.2rem;
  }
}
