@charset "UTF-8";
	
/* 横並びの安定化 */
.caho-highlight {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  box-sizing: border-box;
  background-color: rgba(240, 116, 99, 0.10); /* ピンク背景 */
  padding: 20px;
  border-radius: 8px;  /* 左ライン削除 */
  margin: 0 0 20px 0;
  line-height: 1.7;

  gap: 35px; /* 画像とテキスト間の余白 */
}

/* 画像 */
.caho-highlight__image {
  flex: 0 0 35%;    
  max-width: 200px;  /* 表示幅固定 */
}

.caho-highlight__image img {
  width: 100%;       
  height: auto;
  display: block;
  image-rendering: auto; /* 滑らか縮小 */
}

/* テキスト */
.caho-highlight__text {
  flex: 1;           
  min-width: 200px;  
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .caho-highlight {
    flex-direction: column !important; 
  }
  .caho-highlight__image,
  .caho-highlight__text {
    flex: 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px; /* スマホ時の余白確保 */
  }
}