* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.8;
}
  
  .p-page_content__inner {
    max-width: 900px!important;
    width: 100%;
    padding: 0!important;
  }

  .l-container {
    padding-top: 60px!important;
  }
  
  html {
      scroll-behavior: smooth;
    }
  
    a {
      transition: all 0.3s ease;
      text-decoration: none!important;
    }
    a:hover {
      opacity: 0.5;
    }
  
    .breadcrumb {
      background-color: #ebedeb;
      padding: 5px 0 10px;
    }

    h1 {
        margin: 0!important;
    }

/* ここまでLP共通 */





hr {
  border: 0.5px solid #696b71;
}

.electorefarm {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  color: #696b71;
  background-color: #ebedeb;

  align-items: center;
  justify-content: center;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* 最初は下に隠しておく */
.element-to-animate {
  opacity: 0; /* 初期状態は透明 */
  transform: translateY(50px); /* 初期状態は50px下に移動 */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* アニメーションの指定 */
}

/* 要素がアクティブになったときのアニメーション */
.element-to-animate.show {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に戻す */
}

.electorefarm_comment {
  font-size: 0.8rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  /* top挨拶 */
  .electorefarm_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }

  .electorefarm h2 {
    font-family: "zen-old-mincho", serif;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .electorefarm_top_greeting {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin: 100px auto 80px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .electorefarm_top p {
    font-size: 1rem;
    margin: 2rem 0;
  }

  .electorefarm_top_set {
    width: 700px;
    height: auto;
  }
  .electorefarm_top_set img {
    width: 100%;
    height: auto;
    box-shadow: #696b7155 0px 0px 10px;
    transition: opacity 0.3s ease-in-out;
  }

  .electorefarm_top_set img:hover {
    opacity: 0.7;
  }

  /* products */

  .electorefarm_products {
    padding: 0 0 100px;
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
  }

  .electorefarm_products_info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: stretch; /* 子要素の高さを揃える */
    text-align: center;
  }

  .electorefarm_products_DeliverySchedule {
    display: block;
    border: 1px solid #696b71;
    text-align: center;
    padding: 10px 50px;
    margin: 0px auto;
  }

  /* set list */
  .electorefarm_setlist {
    width: 100%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .electorefarm_setlist h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }

  .electorefarm_setlist h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background-color: #696b71;
  }

  /* 内容例の親コンテナ */
  .electorefarm_setlist_wrapper {
    width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .electorefarm_setlist_inner {
    width: 100%;
    display: flex; /* 横並び */
    align-items: flex-start; /* 上揃え */
    gap: 30px; /* 画像とテキストの間に隙間 */
    background-color: #696b71;
    padding: 20px;
    height: 300px;
  }

  .electorefarm_setlist_inner:nth-of-type(1) {
    margin-bottom: 2rem;
  }
  /* スライド部分は別のCSS */

  /* テキスト部分 */
  .electorefarm_setlist_inner_text {
    flex-grow: 1; /* テキスト部分が残りのスペースを占める */
    width: 60%;
  }

  /* テキストタイトル */
  .electorefarm_setlist_inner_text_title {
    width: 100%;
    font-size: 16px;
    color: #696b71; /* グレー */
    font-weight: bold;
    text-align: center;
    background-color: white;
    padding: 2px 10px;
    display: inline-block;
  }

  /* 野菜名のテキスト部分 */
  .electorefarm_setlist_inner_text_content {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6; /* 行間を広げる */
    color: #fff; /* テキストカラー */
    height: auto; /* divの成り行きで高さを調整 */
    text-align: left;
    padding: 5px;
  }

  /* 定期便について */
  .electorefarm_about_products {
    width: 900px;
    background-color: #696b71;
    color: #fff;
    padding: 80px;
    margin: 100px auto;
  }

  .electorefarm_about_products h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }

  .electorefarm_about_products h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background-color: #fff;
  }

  .electorefarm_about_products_comment {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 50px;
  }

  .electorefarm_about_products_comment li {
    position: relative; /* 位置を相対的に設定 */
    padding-left: 18px; /* ここでインデントを追加 */
    margin-bottom: 1rem;
    list-style: none;
  }

  .electorefarm_about_products_comment li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
  }

  /* aboutファームについて */
  .electorefarm_about {
    margin: 100px auto;
    padding: 80px 80px 50px;
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    background-color: #696b71;
    color: #fff;
  }

  .electorefarm_about h2 {
    position: relative;
  }

  .electorefarm_about h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background-color: #fff;
  }

  /* ファームポイントのリスト */
  .electorefarm_list {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
  }

  .electorefarm_list_item {
    padding: 10px 0;
  }

  .electorefarm_list_title {
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between; /* タイトル画像と罫線の間隔調整 */
    position: relative;
  }

  .electorefarm_list_title img {
    width: 740px;
    display: block;
  }

  .electorefarm_list_content {
    display: none; /* 最初はすべて閉じる */
    padding: 20px 30px;
  }

  .electorefarm_list_content b {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  /* 罫線のスタイル */
  .accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 縦線 */
  .accordion-icon .line1 {
    position: absolute;
    width: 2px;
    height: 12px;
    left: -25px;
    background-color: #333;
    transition: transform 0.3s;
  }

  /* 横線 */
  .accordion-icon .line2 {
    position: absolute;
    width: 12px;
    height: 2px;
    left: -30px;
    background-color: #333;
    transition: transform 0.3s;
  }

  /* 開いた時の状態（縦線を横に回転して消す） */
  .electorefarm_list_item.active .accordion-icon .line1 {
    transform: rotate(90deg);
    opacity: 0;
  }

  /* 横線はそのまま（＝ ー の形） */

  /* conceptについて */
  .electorefarm_concept {
    display: block;
    width: 100%;
    min-width: 900px;
    margin: 20px auto 0;
  }

  .electorefarm_concept h2 {
    font-size: 1.5rem;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
  }

  .electorefarm_concept h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background-color: #696b71;
  }

.electorefarm_concept_img {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 900px;
  height: auto;
  gap: 1rem;
  margin: 0 auto;
}

.electorefarm_concept_img img {
  width: 100%;
  height: auto;
}


  .electorefarm_concept_wrapperR {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
  }

  .electorefarm_concept_wrapperR_inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 2em;
    margin-bottom: 0.8rem;
  }

  .electorefarm_concept_wrapperR_inner img {
    width: 49%;
    height: auto;
  }

  .electorefarm_concept_comment {
    display: flex;
    background-color: #fff;
    padding: 20px;
    position: relative;
    align-items: center;
  }

  .electorefarm_concept_comment.matsumura::after {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #fff; /* ← ここが三角の色＆方向（左向き） */
  }

  .electorefarm_concept_profile {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .electorefarm_concept_wrapperO {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 900px;
    border: 1px solid #696b71;
    padding: 20px;
    gap: 2em;
    margin: 50px auto;
  }

  .electorefarm_concept_wrapperO h3 {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
  }

  .electorefarm_concept_wrapperO img {
    width: 30%;
    height: auto;
  }

  .electorefarm_concept_wrapperO_inner {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }



  .electorefarm_concept_comment.okuzono::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff; /* ← ここが三角の色＆方向（左向き） */
  }




  /* ファームについてリンク */
  .electorefarm_about_link {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .electorefarm_about_link a {
    display: inline-block;
    position: relative;
    margin-left: 50px;
    text-decoration: none;
    color: #696b71;
  }

  .electorefarm_about_link a::before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 15px;
    background-image: url("../img/darkgray_arrow.svg");
    background-repeat: no-repeat;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .electorefarm_about_link a::after {
    content: ""; /* 疑似要素を生成 */
    position: absolute;
    left: 0;
    bottom: -2px; /* 文字の下に配置 */
    width: 100%;
    height: 1px; /* 下線の太さ */
    background-color: #696b71; /* 下線の色 */
    transform: scaleX(0); /* 初期状態で非表示 */
    transform-origin: left;
    transition: transform 0.3s ease-in-out; /* ふわっと表示 */
  }

  .electorefarm_about_link a:hover::after {
    transform: scaleX(1); /* マウスオーバーで下線を表示 */
  }

  /* PCの場合の購入ボタン */
  .electorefarm_buy_link {
    display: block;
    padding: 10px 10px 20px;
    position: fixed;
    top: 50%;
    right: 0;
    writing-mode: vertical-rl;
    background: #fff;
    text-decoration: none;
    color: #696b71;
    border: 1px solid #696b71;
    border-right: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: #696b7148 0px 0px 20px;
    transition: 0.3s ease;
  }

  .electorefarm_buy_link:hover {
    background: #696b71;
    color: #fff;
  }

  .sp_only {
    display: none;
  }
}

.electorefarm_setlist_comment {
  font-size: 0.8rem;
  text-align: center;
}
