@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@300;400;500;600;700&Barlow&display=swap");
.development {
  padding: 60px 0;
}
.development__heading {
  margin-bottom: 30px;
  color: #26408d;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.development__content {
  margin-bottom: 60px;
}
.development__content:last-child {
  margin-bottom: 0;
}
.development__title {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.development__function {
  margin-bottom: 20px;
  padding: 15px 20px;
  background-color: #f6f7f9;
}
.development__function_name {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 90px;
  height: 32px;
  margin-bottom: 5px;
  background-color: #26408d;
  font-weight: 500;
  color: #fff;
}
.development__function_text {
  margin-top: 2px;
  font-weight: 500;
}
.development__box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.development__box_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.development__btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.development__btn_item {
  width: 100%;
}
.development__btn_link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 20px 10px 45px;
  background-color: #26408d;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  transition: all 0.5s;
}
.development__btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  height: 22px;
}
.development__btn_link.type01::before {
  width: 24px;
  background: url(../images/development/icon_catalog.svg) no-repeat center/contain;
}
.development__btn_link.type02::before {
  width: 30px;
  background: url(../images/development/icon_video.svg) no-repeat center/contain;
}
.development__btn_link.type03::before {
  width: 27px;
  background: url(../images/development/icon_intro.svg) no-repeat center/contain;
}
.development__btn_link.type04::before {
  width: 37px;
  background: url(../images/development/icon_function.svg) no-repeat center/contain;
}
.development__accordion {
  max-width: 1020px;
  margin: 0 auto;
}
.development__accordion_title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #798cc1;
  color: #26408d;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}
.development__accordion_title::before, .development__accordion_title::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 18px;
  width: 16px;
  height: 2px;
  background-color: #26408d;
  z-index: 1;
  transition: all 0.5s;
}
.development__accordion_title::after {
  transform: rotate(90deg);
}
.development__accordion_content {
  display: none;
  padding: 30px;
  background-color: #f6f7f9;
}
.development__accordion.active .development__accordion_title::after {
  transform: rotate(0);
  opacity: 0;
}
.development__table {
  border: 1px solid #cdd2d7;
}
.development__table_tr {
  border-bottom: 1px solid #cdd2d7;
}
.development__table_tr:last-child {
  border-bottom: none;
}
.development__table_th {
  background-color: #e0e2ef;
  border-bottom: 1px solid #cdd2d7;
  font-weight: 400;
}
.development__table_td {
  width: 100%;
  background-color: #fff;
}
.development__table_th, .development__table_td {
  padding: 10px 15px;
  line-height: 1.5;
}
@media screen and (min-width: 576px){
  .development__function {
    display: flex;
  }
  .development__function_name {
    margin: 0 20px 0 0;
  }
  .development__btn {
    flex-direction: row;
  }
  .development__btn_item {
    width: 260px;
  }
  .development__table_tr {
    display: flex;
  }
  .development__table_th {
    border-right: 1px solid #cdd2d7;
    border-bottom: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 190px;
  }
}
@media screen and (min-width: 768px){
  .development__box {
    flex-direction: row;
  }
  .development__box_image, .development__box_text {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 992px){
  .development {
    padding: 92px 0 160px;
  }
  .development__heading {
    margin-bottom: 68px;
    font-size: 2rem;
  }
  .development__content {
    margin-bottom: 115px;
  }
  .development__title {
    font-size: 1.5rem;
    margin-bottom: 26px;
  }
  .development__function {
    margin-bottom: 40px;
    padding: 20px 30px;
  }
  .development__function_name {
    width: 115px;
    height: 40px;
  }
  .development__function_text {
    margin-top: 5px;
  }
  .development__box {
    margin-bottom: 60px;
  }
  .development__btn {
    margin-bottom: 60px;
    gap: 40px;
  }
  .development__btn_item {
    width: 360px;
    height: 70px;
  }
  .development__btn_link {
    padding: 10px 20px;
  }
  .development__btn_link:hover {
    opacity: 0.7;
  }
  .development__btn_link::before {
    height: 32px;
    left: 25px;
  }
  .development__accordion_title {
    padding: 15px 40px;
    min-height: 70px;
    font-size: 1.125rem;
  }
  .development__accordion_title:hover {
    opacity: 0.7;
  }
  .development__accordion_title::before, .development__accordion_title::after {
    top: 34px;
    right: 40px;
    width: 29px;
  }
  .development__accordion_content {
    padding: 58px 60px 58px;
  }
  .development__table_th {
    width: 280px;
  }
  .development__table_th, .development__table_td {
    padding: 13px 30px;
  }
}
/*# sourceMappingURL=maps/development.css.map */
