@charset "UTF-8";

.mod_section {
  margin-bottom: 120px;
}

.mod_intro {
  text-align: center;
  padding: 80px 0 100px;
}

.mod_intro .intro_subtitle {
  font-size: 16px;
  color: #2e3d85;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.mod_intro .intro_title {
  font-size: 42px;
  color: #222;
  line-height: 1.3;
  font-weight: 800;
}

.mod_intro .intro_title span {
  color: #2e3d85;
}

.mod_intro .intro_bar {
  width: 40px;
  height: 3px;
  background-color: #2e3d85;
  margin: 35px auto;
}

.mod_intro .intro_desc {
  font-size: 19px;
  color: #666;
  line-height: 1.8;
  word-break: keep-all;
}

.mod_principle {
  display: flex;
  background-color: #f8faff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04);
}

.mod_principle .visual_img_box {
  flex: 1.2;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.mod_principle .img_placeholder {
  width: 100%;
  height: auto;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  color: #999;
}

.mod_principle .img_placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.mod_principle .visual_info_box {
  flex: 1;
  padding: 70px 60px;
}

.mod_principle .info_title {
  font-size: 28px;
  color: #222;
  margin-bottom: 40px;
  font-weight: 700;
}

.mod_principle .info_list {
  list-style: none;
  padding: 0;
}

.mod_principle .info_list li {
  margin-bottom: 35px;
}

.mod_principle .info_list li:last-child {
  margin-bottom: 0;
}

.mod_principle .info_list li strong {
  display: block;
  font-size: 19px;
  color: #2e3d85;
  margin-bottom: 10px;
}

.mod_principle .info_list li span {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.mod_features .feature_row {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 120px;
}

.mod_features .feature_row:last-child {
  margin-bottom: 0;
}

.mod_features .feature_row.is_reverse {
  flex-direction: row-reverse;
}

.mod_features .text_side {
  flex: 1;
}

.mod_features .num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(46, 61, 133, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.mod_features .text_side h4 {
  font-size: 32px;
  color: #222;
  margin-bottom: 25px;
  font-weight: 700;
}

.mod_features .text_side p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  word-break: keep-all;
}

.mod_features .img_side {
  flex: 1;
}

.mod_features .img_side img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mod_target {
  background-color: #2e3d85;
  border-radius: 50px;
  padding: 80px 0;
  color: #fff;
}

.mod_target .target_inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.mod_target .target_title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.mod_target .target_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mod_target .target_item {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px 35px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.mod_target .target_item:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.mod_target .check_icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #2e3d85;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mod_target .target_item p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  word-break: keep-all;
}