@charset "utf-8";


.lensGuideInfo {
  margin: 24px 0;
  padding: 18px 20px;
 font-family: 'Noto Sans JP', sans-serif;
}

.lensGuideInfoTitle {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1f5fae;
  border-bottom: 1px dashed #cfdce7;
  padding-bottom: 6px;
}

.lensGuideInfoText {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.lensGuideInfoImage img {
  width: 100%;
  height: auto;
  display: block;
}

/* UV説明ブロック追加 */
.lensGuideUVList {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.uvItem {
  flex: 1;
  padding: 12px;
  background: #fff;
  border: 1px dashed #dcdcdc;
  border-radius: 6px;
  text-align: center; /* PCも左 */
}

.uvItem strong {
  display: block;
  margin-bottom: 6px;
  color: #e60012;
  font-size: 14px;
}

.uvItem p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {

  .lensGuideUVList {
    flex-direction: column;
    gap: 10px;
  }

  .uvItem {
    text-align: left; /* ←ここ重要 */
    padding: 16px 14px;
  }

  .uvItem strong {
    text-align: center; /* タイトルだけ中央 */
    font-size: 13px;
    margin-bottom: 8px;
  }

  .uvItem p {
    text-align: left;
    font-size: 12px;
    line-height: 1.7; /* 読みやすく */
  }
}
.uvItem:nth-child(1) strong { color: #999; }     /* UV-C */
.uvItem:nth-child(2) strong { color: #f39c12; }  /* UV-B */
.uvItem:nth-child(3) strong { color: #e60012; }  /* UV-A */
