@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: 2rem;
    line-height: 1.4;
  }
}

.br-sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }
}

#subNavi ul li a.farmer-btn {
  display: inline-flex;
  width: 23rem;
  height: 48px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2b8e2b;
  text-decoration: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  background: #e2eec5;
}

#subNavi ul li a.farmer-btn:hover {
  opacity: 0.7;
  color: #2b8e2b;
  background: #fff;
}

#subNavi ul li a.download-btn {
  display: inline-flex;
  width: 23rem;
  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;
}

#subNavi ul li a.download-btn:hover {
  opacity: 0.7;
  color: #e37c21;
  background: #fff;
}

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

#subNavi ul li a.contact-btn:hover {
  opacity: 0.7;
  color: #2d689e;
  background: #fff;
}

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

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

.simple-header > h1 {
  margin-left: 30px;
  color: #fff;
  font-size: 2.6rem;
  margin-block-end: 0;
  width: 100%;
}

#subNavi {
  width: auto;
}

#subNavi ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

#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(--brand-green);
}

#subNavi ul li.cur a::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--brand-green);
  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(--brand-green);
}

#subNavi ul li a:hover svg path {
  fill: var(--brand-green);
}

#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;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
  }

  .simple-header > h1 {
    margin-left: 10px;
    color: #fff;
    font-size: 1.6rem;
    margin-block-end: 0;
    width: 100%;
  }

  .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;
        gap: 1rem;
  }

  .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.farmer-btn {
  display: inline-flex;
  width: 100%;
  height: 48px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2b8e2b;
  text-decoration: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  background: #e2eec5;
  border: 1px solid #2b8e2b;
}

  .g_navi ul li a.contact-btn {
  display: inline-flex;
  width: 100%;
  height: 48px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2d689e;
  text-decoration: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  background: #dfeaf8;
  border: 1px solid #2d689e;
}

  .g_navi ul li a.download-btn {
  display: inline-flex;
  width: 100%;
  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;
}
}

/**************************************************
 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: #2b8e2b;
    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: #2b8e2b;
  }

  #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%;
  min-height: 55rem;
  height: 70rem;
  margin: 0 auto;
  overflow: hidden;
  background-image: url(https://agritrio.co.jp/images/trial-kv_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

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

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

.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;
  }
}

.cta-wrap {
  max-width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.cta-wrap li {
  width: 50%;
}

.eyecatch-img {
  width: 120rem;
  max-width: 100%;
  height: 70rem;
  position: absolute;
  object-fit: cover;
  object-position: center center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: block;
  margin: 0 auto;
}

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

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

@media screen and (max-width: 767px) {
  .eyecatch-img {
    width: 37rem;
    height: 38rem;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    object-position: bottom center;
    max-width: 100%;
    top: auto;
  }
}

.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;
  }
}

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

.about {
  position: relative;
  width: 100%;
  height: 48rem;
  padding-block: 8rem 8rem;
  margin: 0 auto;
  overflow: hidden;
  background: #fffcdb;
}

/* 背景色の上にPNGを重ねる */
.about::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 136rem;
  inset: 0;
  background-image: url(https://agritrio.co.jp/images/about-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about__ttl {
  font-size: 2.8rem;
  display: block;
  text-align: center;
  margin-block-end: 3rem;
  color: #5f4330;
}

.about__text {
  width: 86%;
  max-width: 70rem;
  margin-inline: auto;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  color: #5f4330;
  font-weight: bold;
  margin-block-end: 3rem;
}

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

.about-note {
  width: 86%;
  max-width: 70rem;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .about {
    width: 100%;
    height: 53rem;
    padding-block: 6rem 6rem;
  }
  .about::before {
    background-image: url(https://agritrio.co.jp/images/about-bg.png);
  }
  .about__ttl {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .about__text {
    width: 86%;
    margin-inline: auto;
    font-size: 1.5rem;
    line-height: 2;
    text-align: center;
  }

  .about-note {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.7;
    width: 86%;
    margin-inline: auto;
  }
}

/**************************************************
.recommend
**************************************************/
.recommend {
  background: #e4e9eb;
  text-align: center;
  padding-block: 6rem;
}

.recommend-inner {
  max-width: 72rem;
  text-align: center;
  margin-inline: auto;
}

.recommend__ttl {
  font-size: 2.8rem;
  display: block;
  text-align: center;
  margin-block-end: 3rem;
  color: #5f4330;
}

@media screen and (max-width: 768px) {
  .recommend-inner {
    max-width: 90%;
    text-align: center;
    margin-inline: auto;
  }
  .recommend__ttl {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}

/**************************************************
.features
**************************************************/
.features {
  padding-block: 8rem;
  margin-inline: auto;
  text-align: center;
  background: #fffcdb;
}

.features__ttl {
  font-size: 2.8rem;
  display: block;
  text-align: center;
  margin-block-end: 3rem;
  color: #5f4330;
}

.features__scheme {
  margin-inline: auto;
  padding-inline: 3rem;
  max-width: 72rem;
}

.features__list {
  max-width: 100rem;
  margin-inline: auto;
  display: flex;
  gap: 3rem;
  box-sizing: border-box;
  margin-block-start: 5rem;
}

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

.features__body {
  text-align: left;
  border: 2px solid #2b8e2b;
  height: 100%;
}
.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: center;
  display: block;
  margin-block-start: 0;
  color: #fff;
  background: #2b8e2b;
  line-height: 2;
  letter-spacing: 0.1rem;
  margin-block-end: 0;
}

.features__text {
  font-size: 1.4rem;
  line-height: 1.75;
  text-align: center;
  padding: 1.5rem 2rem;
}

@media screen and (max-width: 768px) {
  .features {
    padding-block: 6rem;
  }
  .features__ttl {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-block-end: 0;
  }
  .features__scheme {
        max-width: 90%;
        margin-inline: auto;
        margin-block-start: 3rem;
        padding-inline: 0;
  }
  .features__list {
    width: 90%;
    margin-inline: auto;
    display: flex;
    gap: 2.5rem;
    flex-direction: column;
    margin-block-start: 3rem;
  }
  .features__list li {
    width: 100%;
  }

  .features__img {
    width: 100%;
    height: auto;
  }
  .features__list li h3 {
    text-align: center;
    display: block;
    margin-block-end: 0;
    font-size: 1.8rem;
    line-height: 2.2;
  }
}

/**************************************************
.overview
**************************************************/
.overview {
  background-color: #e4e9eb;
  padding-block: 8rem;
  margin-inline: auto;
  text-align: center;
}

.overview__ttl {
  font-size: 2.8rem;
  display: block;
  text-align: center;
  margin-block-end: 3rem;
  color: #5f4330;
}

.overview__wrap {
  max-width: 72rem;
  margin: auto;
  background-color: #ffffff;
}

.overview__wrap > dl {
  border-bottom: 10px solid #e4e9eb;
  display: flex;
}

.overview__wrap > dl > dt {
  width: 27%;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #2d689d;
  color: #ffffff;
  padding-block: 1.5rem;
}

.overview__wrap > dl > dd {
  width: 73%;
  text-align: left;
  font-size: 1.6rem;
  padding-left: 1.6rem;
  padding-block: 1.5rem;
}

.overview__note {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .overview {
    padding-block: 6rem;
  }
  .overview__ttl {
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .overview__wrap {
    width: 90%;
    margin: auto;
  }
  .overview__wrap > dl {
    display: flex;
    flex-direction: column;
  }
  .overview__wrap > dl > dt {
    width: 100%;
    font-size: 1.5rem;
    padding-block: 1rem;
  }
  .overview__wrap > dl > dd {
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.5;
    padding-inline: 2rem;
    padding-block: 1rem;
  }
}

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

.step {
  width: 100%;
  padding-block: 8rem 10rem;
  background: #2b8e2b;
}

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

.step__list {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  flex-direction: column;
}

.step__list li {
  width: 100%;
  background: #fff;
  padding: 3rem 3rem 4rem;
  border-radius: 12px;
  position: relative;
}
/* ドットライン */
.step li::after {
  content: "";
  position: absolute;
  left: 6.5rem;
  top: 10.8rem;
  width: 0;
  height: 12rem;
  border-left: 4px dotted #3d8533;
  z-index: 1;
}
/* 最後は非表示 */
.step li:last-child::after {
  display: none;
}

.step__list li .step__icon {
  position: absolute;
  margin-inline: auto;
  margin-block-end: 1.5rem;
  z-index: 5;
}

.step__list li .step__icon img {
  width: 72px;
  height: 72px;
}

.step__body {
  width: 100%;
  padding-inline-start: 10rem;
  text-align: justify;
}

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

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

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

  .step__ttl {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .step__list {
    width: 90%;
    gap: 3rem;
  }

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

  .step li::after {
    content: "";
    position: absolute;
    left: 4rem;
    top: 8.5rem;
    width: 0;
    height: 15rem;
    border-left: 4px dotted #3d8533;
    z-index: 1;
  }

  .step__list li .step__icon {
    position: absolute;
    margin-inline: auto;
    top: 2.5rem;
    left: 1.5rem;
    z-index: 5;
  }

  .step__list li .step__icon img {
    width: 56px;
    height: 56px;
  }

  .step__body {
    width: 100%;
    padding-inline-start: 0;
    text-align: justify;
  }
  .step__list li span {
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    display: block;
    margin-block-end: 1rem;
    padding-inline-start: 7rem;
  }
  .step__list li p {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: left;
    padding-inline-start: 7rem;
  }
}

/**************************************************
.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: 3rem;
    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;
  }
}

/**************************************************
.floating-banner 
**************************************************/
@media screen and (min-width: 1080px) {
  .floating-banner {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .floating-banner > a {
    color: #fff;
    background-color: #e37c21;
    width: 30px;
    height: auto;
    padding: 1.5rem 2.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    white-space: nowrap;
    border-radius: 12px 0 0 12px;
    border: 4px solid;
    border-right: 0;
    align-items: center;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.08);
  }

  .floating-banner > a:hover {
    opacity: 0.7;
  }
}

/**************************************************
.footer
**************************************************/
.footer {
  background-color: #474d4f;
  padding: 5rem 1rem;
  color: #fff;
  text-align: center;
}

.footer__inner {
  max-width: 100rem;
  margin: 0 auto;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}

.footer__info {
  text-align: center;
}

.footer__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
}

.footer__organizer {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  margin-block-end: 2rem;
}

.footer__contact {
  text-align: center;
  margin-block: 3rem;
}

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

.footer__address,
.footer__company,
.footer__tel,
.footer__mail {
  width: 100%;
  font-size: 1.4rem;
  font-weight: normal;
}

.footer__tel > a,
.footer__mail > a {
  width: 100%;
  font-size: 1.5rem;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
}

.footer__tel a:hover,
.footer__mail a:hover {
  text-decoration: none;
}
.footer__time {
  font-size: 1rem;
}

.footer__note {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .footer__inner {
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.7;
    display: flex;
    gap: 0;
    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 > a,
  .footer__mail > a {
    width: 100%;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
  }

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