/* =========================================
   ペットホテル＆ショートステイ LP (page-id:1742)
   ※ h1 全消しは絶対にしない！
   ========================================= */

/* --- HERO --------------------------------------- */

body.page-id-1742 .onecl-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #fff;
}

/* PC の背景写真 */
body.page-id-1742 .onecl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("https://dog-behavioronecl.com/wlp/wp-content/uploads/6583514c1407491ad1b7519f4abc77b7.jpeg")
    center right / cover no-repeat;
}

/* 左側の白グラデーション */
body.page-id-1742 .onecl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255,255,255,.95) 40%,
    rgba(255,255,255,.6) 60%,
    rgba(255,255,255,0) 100%
  );
}

body.page-id-1742 .onecl-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 60px);
}

body.page-id-1742 .onecl-hero-content {
  max-width: 560px;
  color: #1a1a1a;
}

/* 小さなラベル */
body.page-id-1742 .onecl-hero-label {
  display: inline-block;
  font-size: .9rem;
  font-weight: 700;
  padding: .25em .9em;
  border-radius: 999px;
  background: #f0f6ff;
  color: #4a94d4;
  margin-bottom: .75rem;
}

/* メイン見出し */
body.page-id-1742 .onecl-hero-title {
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.3;
  margin: 0 0 1rem;
  color: #4a94d4;
}

/* 説明文 */
body.page-id-1742 .onecl-hero-text {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

/* 強調マーカー（運動不足〜の黄色線） */
body.page-id-1742 .onecl-hero-text .mark {
  background: linear-gradient(transparent 60%, #fff1a8 60%);
}

/* CTA ボタンまわり */
body.page-id-1742 .onecl-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-id-1742 .onecl-btn {
  display: inline-block;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

body.page-id-1742 .onecl-btn-primary {
  background: #4a94d4;
  color: #fff;
  box-shadow: 0 6px 16px rgba(74,148,212,0.35);
}

body.page-id-1742 .onecl-btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 6px 16px rgba(6,199,85,0.35);
}

body.page-id-1742 .onecl-btn:hover {
  transform: translateY(-1px);
  opacity: .94;
}

/* --- スマホ調整 --- */
@media (max-width: 768px) {
  body.page-id-1742 .onecl-hero {
    min-height: 75vh;
    align-items: flex-end;
  }

  /* SP は別画像にしてもOK（必要なければ同じで良い） */
  body.page-id-1742 .onecl-hero::before {
    background-image:
      url("https://dog-behavioronecl.com/wlp/wp-content/uploads/44E86F48-1034-42B7-87DB-E850E846D34A-1.jpeg");
    background-position: center;
  }

  body.page-id-1742 .onecl-hero::after {
    background: linear-gradient(
      0deg,
      rgba(255,255,255,0.9) 0%,
      rgba(255,255,255,0.4) 40%,
      rgba(255,255,255,0) 100%
    );
  }

  body.page-id-1742 .onecl-hero-inner {
    padding: 32px 20px 40px;
  }

  body.page-id-1742 .onecl-hero-content {
    max-width: 100%;
  }

  body.page-id-1742 .onecl-hero-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  body.page-id-1742 .onecl-hero-text {
    font-size: clamp(14px, 4vw, 17px);
  }

  body.page-id-1742 .onecl-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-id-1742 .onecl-btn {
    text-align: center;
    width: 100%;
  }
}

/* --- 「ワンクルが選ばれる理由」ヘッダー ---------------------- */

body.page-id-1742 .onecl-reason-head {
  position: relative;
  padding: 80px 0 40px;
  text-align: center;
  overflow: hidden;
}

body.page-id-1742 .onecl-reason-head .en-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-size: min(18vw, 140px);
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.03);
  white-space: nowrap;
  pointer-events: none;
}

body.page-id-1742 .onecl-reason-head .jp-title {
  position: relative;
  display: inline-block;
  padding: .4em 1.1em;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  font-size: clamp(22px, 4.2vw, 40px);
  font-weight: 900;
  color: #0f1a2b;
}

body.page-id-1742 .onecl-reason-head .jp-title .em {
  background: linear-gradient(90deg,#ff6b8b 0%,#ff8fb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  body.page-id-1742 .onecl-reason-head {
    padding: 60px 0 24px;
  }

  body.page-id-1742 .onecl-reason-head .en-ghost {
    font-size: 22vw;
  }
}