@charset "UTF-8";

.p-concern-fv__title{
  font-size: 2.8rem;
  color: #000;
}

/* FV外枠（必要なら） */
.p-concern-fv{
  margin-top: 24px;
}

/* FVの中身：縦積みで余白を揃える */
.p-concern-fv__inner{
  padding: 28px 32px;
  text-align: center;
}

/* タイトル */
.p-concern-fv__title{
  margin: 0 0 12px;
  font-size: 2.2rem;
  line-height: 1.3;
}

/* サマリー */
.p-concern-fv__summary{
  margin: 0 0 16px;
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: .9;
}

/* CTA（ボタンの親p） */
.p-concern-fv__cta{
  margin: 0;
}

/* CTAボタンが既存の .c-btn を使ってる想定 */
.p-concern-fv__cta .c-btn{
  display: inline-block;
}


/* ▼ おすすめ施術（カード）一覧：グリッドレイアウト */
.p-concern-treatments{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 40px;
  margin-top: 24px;
  align-items: stretch;
}

/* タブレット：2列 */
@media (max-width: 1024px){
  .p-concern-treatments{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* SPは1列 */
@media (max-width: 767px){
  .p-concern-treatments{
    grid-template-columns: 1fr;
  }
}

/* ▼ カード本体 */
.p-concern-treatments__card{
  margin: 0;
  display: flex;
  box-shadow: 0 6px 11px 0px rgba(0, 0, 0, 0.12);
}

/* ▼ カード全体リンクをカード化 */
.p-concern-treatments__card > a{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: 20px 48px 20px 24px;
  border: 1px solid #998679;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition-property: opacity;
  transition-duration: 0.5s;
  position: relative;
  min-height: 80px;
  flex: 1;
  box-sizing: border-box;
}

/* ホバー効果 */
.p-concern-treatments__card > a:hover{
  opacity: 0.6;
}

/* 右矢印アイコン */
.p-concern-treatments__card > a::after{
  content: "→";
  font-size: 18px;
  color: #998679;
  position: absolute;
  top: 25%;
  right: 17px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* ホバー時に矢印が5px右へ移動 */
.p-concern-treatments__card > a:hover::after{
  transform: translateY(-50%) translateX(5px);
}

/* タイトル */
.p-concern-treatments__title{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  padding-right: 20px;
  color: #998679;
  height: 50px;
}

/* 抜粋：行数制限で高さブレ防止 */
.p-concern-treatments__excerpt{
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #888;
  width: 100%;
  padding-right: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-concern-bottom-cta{
  clear: both;
  width: 100%;
  margin-top: 32px;
  text-align: center;
  display: block;
}

