
/* 特徴 */
.merits {
    background-color: #FFF9E8;
    border-left: 5px solid #9B7E34;
}

.merits h2 {    
    color: #9B7E34;
}

.important-text {
  border-top: 3px solid #9B7E34;   /* 緑のライン（上） */
  border-bottom: 3px solid #9B7E34; /* 緑のライン（下） */
  background-color: #FFF9E8;  /* 背景色（緑っぽい淡い色） */
}

.important-text .bold {
  color: #9B7E34;      /* 緑色 */
}


.photo-text-container.mainphoto .photo-item {
    text-align: center;
    max-width: 300px; /* 全体的に小さめに */
    flex: 1 1 auto;
  }
  
  .photo-text-container.mainphoto .photo-item img {
    width: auto;
    height: 220px; /* 高さでそろえる！ */
    object-fit: cover; /* はみ出しカット */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .photo-text-container.mainphoto .photo-text {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
  }




/* 写真・矢印 */
/* 写真と矢印のコンテナ */
.photo-text-container {
    display: flex;
    /* justify-content: center; */
    align-items: center; /* 矢印を写真の中央に揃える */
    gap: 20px;
    margin-bottom: 40px; /* 下の余白 */
}

.photo-item {
    width: 48%;
    text-align: center;
}

.photo-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.photo-text {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    padding: 0 10px;
}

.arrow-container{
    display: flex;
}

  
  /* 👇 スマホ（768px以下）では縦並びに切り替え */
  @media (max-width: 768px) {
    .photo-text-container {
      flex-direction: column;
      align-items: center;
    }
  
    .photo-item {
      width: 100%;
      margin-bottom: 20px;
    }

    .arrow-container{
        display: block;
    }
  }
  .process-section {
    padding: 60px 20px;
    background-color: #FFF9E8;
    text-align: center;
  }
  
  .process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }
  
  .process-step {
    background-color: #ffffff;
    border: 2px solid #9B7E34;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 180px;
    flex: 0 0 auto;
  }
  
  .step-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
  }

  
  
  /* 矢印（三角形） */
  .process-arrow {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #9B7E34;
  }
  
  /* 📱 レスポンシブ（縦並び＋下向き矢印に切替） */
  @media (max-width: 768px) {
    .process-flow {
      flex-direction: column;
      gap: 15px;
    }
  
    .process-step {
      width: 100%;
      max-width: 400px;
    }
  
    .process-arrow {
      border-left: none;
      border-top: 20px solid #9B7E34;
      border-right: 15px solid transparent;
      border-left: 15px solid transparent;
      border-bottom: none;
      transform: rotate(0deg);
    }
  }
  