@charset "utf-8";

:root {
  --ink: #171717;
  --muted: #666;
  --line: #eee;
  --indigoblue: #00819d;
  --chip: #f6f6f6;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(0, 0, 0, .06)
}

.container {
  /* width: min(1120px, 92vw); */
  margin-inline: auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 16px)
}

.row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  flex-wrap: wrap
}

.muted {
  color: var(--muted)
}

/* =========================================
  page-concept 
========================================= */

/* ====   CONCEPT ファーストビュー ==== */

.conceptFV {
  min-height: 100svh;
  /* スマホ安定版100vh */
  display: flex;
  flex-direction: column;
}

/* ====   ここまで ==== */

.newsHero {
  position: relative;
  width: 100%;
  min-height: 180px;
  /* 高さ調整：PC */
  /* ここに背景を設定（パスはあなたの環境に合わせて） */
  background-image: url("../image/AdobeStock_312034945.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 文字を読みやすくする暗幕（不要なら削除） */
.newsHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
}

.newsHero__inner {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
  min-height: inherit;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* ←下寄せ */
  padding: 0 0 42px;
  /* ←左下の余白 */
}

.newsHero__en {
  margin: 0 0 8px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.newsHero__jp {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.newsHero__catch {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  max-width: 46em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}


/* （旧）右の120px画像枠は使わないので非表示 */
.newsHero__right,
.newsHero__img {
  display: none !important;
}

@media (max-width: 768px) {
  .newsHero {
    min-height: 200px;
  }

  .newsHero__inner {
    padding-bottom: 0;
  }

  .newsCard {
    grid-template-columns: 1fr;
  }

  .newsCard__thumb {
    aspect-ratio: 16 / 9;
  }
}


/* =========================================
  初めの見出しの部分
========================================= */

.conceptLead {
  padding: 80px 0 160px;
}

.conceptLead__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出し */
.conceptLead__headline {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.5;
  margin: 100px 0;
}

/* 2カラム */
.conceptLead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.conceptLead__media {
  /* 画面左端まで広げつつ、右側にも少し食い込ませる */
  margin-left: calc(50% - 50vw);
  margin-right: -80px;
  /* ←ここで右へ拡張量を調整 */
}


.conceptLead__media img {
  width: 100%;
  height: 450px;
  /* 高さを低く */
  object-fit: cover;
  /* トリミング */
  border-radius: 0 6px 6px 0;
}

/* 問いかけ（縦書き・中央配置） */
.conceptLead__ask {
  display: flex;
  align-items: center;
  /* 縦方向中央 */
  justify-content: center;
  /* 横方向中央 */
}

.conceptLead__question {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0;
}

.conceptLead__answer {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0 0px 24px 0;
}


/* 下部 */
.conceptLead__body {
  margin-top: 60px;
}

/* 不安の流れ：ひとつの文章で見せる */
.conceptLead__storyBox {
  border-radius: 10px;
  padding: 16px 0;
  background: #fff;
}

.conceptLead__story {
  margin: 0;
  font-size: 16px;
  line-height: 1.9rem;
  color: #222;
}

/* 体験談：引用風のボックス */
.conceptLead__voiceBox {
  border-right: 5px solid #198bb2;
  border-bottom: 5px solid #198bb2;
  background: rgba(34, 34, 34, .04);
  border-radius: 10px;
  padding: 16px 18px;
}

.conceptLead__voiceLabel {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: .08em;
  color: #444;
  font-weight: 700;
}

.conceptLead__voiceText {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

/* SP */
@media (max-width:768px) {
  .conceptLead {
    padding: 56px 0;
  }

  .conceptLead__ask {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .conceptLead__body {
    margin-top: 12px;
  }

  .conceptLead__headline {
    font-size: 26px;
    margin-bottom: 56px;
    font-weight: 700;
  }

  .conceptLead__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* SPでは横書きに戻す */
  .conceptLead__question {
    writing-mode: horizontal-tb;
    font-size: 24px;
    letter-spacing: 0;
  }

  .conceptLead__media img {
    height: 250px;
  }

  .conceptLead__answer {
    font-size: 24px;
    margin: 38px 0px 24px 0;
  }

  .conceptLead__voiceText {
    font-size: 14px;
    padding: 0;
  }

  .conceptLead__voiceLabel {
    padding: 0 0 5px;
  }


}


/* =========================================
  conceptLead 逆配置専用（文字→画像）
========================================= */

.hk-heroKV-scope {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 520px;
}

/* 左：文字 */
.hk-heroKV-scope .hero-split__text {
  width: 40%;
  padding: 0 5%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hk-heroKV-scope .hero-catch {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0;
}

/* 右：画像 */
.hk-heroKV-scope .hero-split__image {
  width: 60%;
  height: 100%;
}

.hk-heroKV-scope .hero-split__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 6px 0px 0px 6px;
}

/* SP */
@media screen and (max-width: 768px) {
  .hk-heroKV-scope {
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }

  .hk-heroKV-scope .hero-split__text,
  .hk-heroKV-scope .hero-split__image {
    width: 100%;
  }

  .hk-heroKV-scope .hero-split__text {
    padding: 24px 16px;
    justify-content: flex-start;
  }

  .hk-heroKV-scope .hero-catch {
    writing-mode: horizontal-tb;
    font-size: 24px;
    letter-spacing: 0;
  }

  .hk-heroKV-scope .hero-split__image img {
    height: 250px;
  }
}


/* =========================================
  
4ポイントの指示内容

========================================= */
section.concept-point {
  background: #00819d;
  color: #fff;
}

.concept-point-midashi {
  text-align: center;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0;
}

/* 4つの並び */
.concept-point .hkPoints {
  margin: 70px auto 0;
  display: grid;
  gap: 40px;
}

/* 1行：左（テキスト塊）＋右（画像） */
.concept-point .hkPoints__item {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 80px;
  align-items: center;
}

/* 左塊 */
.concept-point .hkPoints__content {
  min-width: 0;
}

/* 上段：01 と タイトルを同じ上位置で揃える */
.concept-point .hkPoints__head {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  /* ← center から変更（上端揃え） */
  gap: 10px;
}

/* POINT（斜めラベルは01の上に乗せる） */
.concept-point .hkPoints__no {
  position: relative;
  line-height: 1;
  padding-top: 14px;
  /* ← POINTぶんの余白。タイトルと揃える */
}

.concept-point .hkPoints__noLabel {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 12px;
  letter-spacing: .02em;
  transform-origin: left bottom;
  opacity: .95;
  white-space: nowrap;
}

.concept-point .hkPoints__noNum {
  display: block;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-top: 0;
  /* ← 8px を消す（ズレの原因） */
}

/* タイトル：01と同じ上位置にする */
.concept-point .hkPoints__title {
  margin: 0;
  padding-top: 14px;
  /* ← hkPoints__no の padding-top と同じ値 */
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .02em;
}

/* 説明文 */
.concept-point .hkPoints__desc {
  margin: 12px 0 0;
  /* 14px→少し詰めてもOK */
  font-size: 14px;
  line-height: 2;
  opacity: .95;
}

/* 右の画像 */
.concept-point .hkPoints__media {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.concept-point .hkPoints__img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

.concept-point .hkPoints__img--big {
  max-width: 420px;
}

/* SP：縦積み */
@media (max-width: 768px) {
  section.concept-point {
    padding: 40px 0;
  }

  .concept-point .hkPoints__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .concept-point .hkPoints__head {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .concept-point .hkPoints__media {
    justify-content: flex-start;
  }

  .concept-point .hkPoints__img {
    max-width: 230px;
    margin: auto;
  }

  .concept-point-midashi {
    font-size: 22px;
  }

  .concept-point .hkPoints__noLabel {
    font-size: 9px;
  }

  .concept-point .hkPoints__noNum {
    font-size: 32px;
  }

  .concept-point .hkPoints__title {
    font-size: 18px;
  }
}



/* =========================
  concept.php - プラン例 slider（画像4枚）
  すべて hk-conceptPlan 配下（TOPと被らない）
========================= */
.hk-conceptPlan .conceptLead__answer {
  text-align: center;
}

.hk-conceptPlan__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  position: relative;
}

.hk-conceptPlan__lead {
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 26px;
}

/* スライダー */
.hk-conceptPlan__wrap {
  position: relative;
  padding-bottom: 40px;
  /* ドット分 */
}

.hk-conceptPlan__slider {
  overflow: visible;
  /* 外側に矢印があってもOK */
}

.hk-conceptPlan__slide {
  height: auto;
}

/* 白いカード（画像を置く枠） */
.hk-conceptPlan__panel {
  margin: 0 auto;
  width: min(900px, 100%);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid rgb(0 129 157);
  padding: 40px 10px;
  /* 白い余白 */
}

/* 画像は「切らずに」全体を見せる */
.hk-conceptPlan__panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* 高さが暴れないように上限を設定（適宜調整OK） */
  max-height: 620px;
}

/* 左右矢印（緑背景の上に白っぽい矢印） */
.hk-conceptPlan__nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: #00819d;
  cursor: pointer;
  z-index: 5;
}

.hk-conceptPlan__prev {
  left: 2%;
}

.hk-conceptPlan__next {
  right: 2%;
}

.hk-conceptPlan__nav::before {
  content: "";
  width: 22px;
  height: 22px;
  border-top: 6px solid rgb(255 255 255);
  border-right: 6px solid rgb(255 255 255);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hk-conceptPlan__prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

/* ドット（中央下） */
.hk-conceptPlan__pagination {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(0%);
  margin: auto;
  text-align: center;
}

.hk-conceptPlan .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: .55;
  background: rgba(0, 129, 157, .9);
}

.hk-conceptPlan .swiper-pagination-bullet-active {
  opacity: 1;
}

.otoiawase-title {
  padding-top: 5px;
  margin: 0;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}

.sp-img { display: none; }

@media (max-width: 768px) {
  .pc-img { display: none; }
  .sp-img { display: block; }
}

/* SP */
@media (max-width: 767px) {
  .hk-conceptPlan__slider {
    width: 100%;
  }

  .hk-conceptPlan {
    padding: 44px 0 82px;
  }

  .hk-conceptPlan__panel {
    padding: 5px;
  }

  .hk-conceptPlan__panel img {
    max-height: 520px;
  }

  .hk-conceptPlan__nav {
    top: 97%;
  }

  .hk-conceptPlan__nav {
    width: 35px;
    height: 35px;
  }

  .hk-conceptPlan__nav::before {
    width: 14px;
    height: 14px;
    border-top: 2px solid rgb(255 255 255);
    border-right: 2px solid rgb(255 255 255);
  }

  .otoiawase-title {
    padding-top: 25px;
    font-size: 14px;
  }
}


/* =========================
  CTAの指示内容
========================= */
.hk-cta {
  display: flex;
  width: 100%;
  min-height: 240px;
  padding: 0;
}

.hk-cta__item {
  flex: 1;
  text-align: center;
  padding: 48px 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hk-cta__item:hover {
  opacity: 0.85;
}

/* 左：お問い合わせ */
.hk-cta__item--contact {
  background-color: #00819d;
  color: #f7f7f7;
}

/* 右：無料相談会 */
.hk-cta__item--consult {
  background-color: #f7f7f7;
  color: #00819d;
  border-left: 1px solid #e5e5e5;
}

.hk-cta__icon {
  display: inline-block;
  font-size: 32px;
  margin-bottom: 12px;
}

.hk-cta__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hk-cta__text {
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* SP */
@media (max-width: 768px) {
  .hk-cta {
    flex-direction: column;
  }

  .hk-cta__item--consult {
    border-left: none;
    border-top: 1px solid #e5e5e5;
  }
}