/* ------------------------------
 機能一覧 */

#add_customizer_3_wrapper .sub_title {
  width: 100%;
  text-align: center;
}
#add_customizer_3_wrapper .sub_title > .point_1 {
  margin-top: 6%;
  margin-bottom: 4%;
  position: relative;
}
#add_customizer_3_wrapper .sub_title > .point_1 > .text_2::before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #47926f;
  transform: rotate(-25deg);
  position: absolute;
  top: 0px;
  left: 39%; /* 調整が必要 */
}
#add_customizer_3_wrapper .sub_title > .point_1 > .text_2::after {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #47926f;
  transform: rotate(25deg);
  position: absolute;
  top: 0px;
  right: 39%; /* 調整が必要 */
}

/* 機能の一つずつのカード */
#add_customizer_3_wrapper > .content > .functions > .function_card_wrap {
  margin-top: 2%;
}
#add_customizer_3_wrapper
  > .content
  > .functions
  > .function_card_wrap
  .function_card {
  /* background-color: rgba(55, 182, 128, 0.3); */
  max-height: 100%;
  min-height: 400px;
  padding: 6%;
  box-shadow: 0 2px 8px 4px #f2f2f2;
}
#add_customizer_3_wrapper
  > .content
  > .functions
  > .function_card_wrap
  .function_card
  > .function_img {
  width: 100%;
  text-align: center;
}
/* 画像ある時 */
#add_customizer_3_wrapper
  > .content
  > .functions
  > .function_card_wrap
  .function_card
  > .function_img
  > img {
  min-height: 220px;
  max-height: 220px;
  align-content: center;
  object-fit: fill;
}
/* 画像ない時 */
#add_customizer_3_wrapper
  > .content
  > .functions
  > .function_card_wrap
  .function_card
  > .function_img
  > .no_img {
  min-height: 220px;
  max-height: 220px;
  align-content: center;
  background-color: #e0e0e0;
  font-size: 12px;
  color: #a6a6a6;
}
/* 機能名 */
#add_customizer_3_wrapper
  > .content
  > .functions
  > .function_card_wrap
  .function_card
  > .title {
  text-align: center;
  margin-top: 4%;
  margin-bottom: 2%;
  color: #47926f;
  text-decoration: underline dotted;
  text-decoration-color: #a7a7a7;
}

/* 機能の一つずつのカード（a） */
#add_customizer_3_wrapper > .content > .functions > .function_card_wrap > a {
  color: #333333;
}
#add_customizer_3_wrapper
  > .content
  > .functions
  > .function_card_wrap
  > a:hover
  .function_card {
  transform: translate(0, -8px);
  transition: all 0.3s;
}
