.elementor-1546 .elementor-element.elementor-element-d7ddb60{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1546 .elementor-element.elementor-element-0a80cd1{--display:flex;--padding-top:100px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-1546 .elementor-element.elementor-element-0a80cd1{--padding-top:40px;--padding-bottom:40px;--padding-left:40px;--padding-right:40px;}}/* Start custom CSS for html, class: .elementor-element-0b6f097 *//* グリッド設定 */
.qc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 00px;
}

/* カード全体のスタイル */
.qc-feature-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* 画像の角丸を維持 */
}

.qc-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: #0066ff;
}

/* 画像エリアの設定 */
.qc-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.qc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.qc-feature-card:hover .qc-card-image img {
  transform: scale(1.05); /* ホバーで画像が少し拡大 */
}

/* テキストと矢印の配置 */
.qc-card-content {
  padding: 25px;
  padding-bottom: 60px; /* 下部の矢印用の余白 */
  flex-grow: 1;
}

.qc-h3-small { font-size: 1.25rem; font-weight: bold; margin-bottom: 15px; color: #222; position: relative; padding-bottom: 10px; }
.qc-h3-small::after { content: ""; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background-color: #0066ff; }
.qc-card-content p { font-size: 0.95rem; color: #555; line-height: 1.6; margin: 0; }

/* 矢印アイコン */
.qc-arrow-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f8f8f8;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.qc-feature-card:hover .qc-arrow-icon {
  background: #0066ff;
  color: #fff;
}

/* レスポンシブ */
@media (max-width: 992px) { .qc-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .qc-feature-grid { grid-template-columns: 1fr; } }
/* --- テキストエリアの調整 --- */
.qc-card-content p {
  font-size: 14px;      /* 指定の14px */
  color: #555;
  line-height: 1.7;    /* 14pxの場合、行間を広げると読みやすくなります */
  margin: 0;
  word-break: break-all; /* スマホで単語が変な場所で切れるのを防ぐ */
}

/* --- レスポンシブ調整 --- */
@media (max-width: 600px) {
  .qc-card-content p {
    font-size: 14px;    /* スマホでも14pxを維持 */
    line-height: 1.6;   /* スマホでは少し行間を抑えてもOK */
  }
}/* End custom CSS */