/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 07 2026 | 04:18:49 */
/* ==============================
   ポイントボックス
============================== */

.point-box {
  margin: 48px 0;
}

.point-title {
  position: relative;
  text-align: center;
  margin: 0 0 28px;
  padding: 0;
  border: none;
  background: none;
}

.point-title span {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  padding: 0 56px;
}

.point-title span::before,
.point-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 4px;
  background: #2f8fd3;
  border-radius: 2px;
}

.point-title span::before {
  left: 8px;
  transform: translateY(-50%) rotate(58deg);
}

.point-title span::after {
  right: 8px;
  transform: translateY(-50%) rotate(-58deg);
}

.point-content {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #eef6ff;
  padding: 32px 36px;
  box-sizing: border-box;
}

.point-icon {
  flex: 0 0 96px;
  width: 96px;
}

.point-icon img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.point-text {
  flex: 1;
  color: #263547;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}

.point-text p {
  margin: 0 0 1em;
}

.point-text p:last-child {
  margin-bottom: 0;
}

.point-text a {
  color: #2675bd;
  text-decoration: underline;
  font-weight: 700;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .point-box {
    margin: 36px 0;
  }

  .point-title {
    margin-bottom: 22px;
  }

  .point-title span {
    font-size: 22px;
    padding: 0 42px;
  }

  .point-title span::before,
  .point-title span::after {
    width: 26px;
    height: 3px;
  }

  .point-content {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }

  .point-icon {
    flex: none;
    width: 78px;
    margin: 0 auto;
  }

  .point-icon img {
    width: 78px;
    height: 78px;
  }

  .point-text {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
  }
}

/* ==============================
   ベルソムラのポイント見出し
============================== */

.point-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 40px 0 26px;
  padding: 0;
  border: none;
  background: none;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

.point-heading::before,
.point-heading::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 42px;
  background: #2f8fd3;
  border-radius: 3px;
}

.point-heading::before {
  transform: rotate(-34deg);
}

.point-heading::after {
  transform: rotate(34deg);
}

.point-heading span {
  display: inline-block;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .point-heading {
    gap: 18px;
    margin: 32px 0 22px;
    font-size: 20px;
    line-height: 1.4;
  }

  .point-heading::before,
  .point-heading::after {
    width: 4px;
    height: 34px;
  }
}