/* =========================
   Base
========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #333333;
  line-height: 1.8;
}

section {
  padding: 100px 20px;
}

h1, h2 {
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* =========================
   Header
========================= */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #eef3f8;
}

.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-nav-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.lp-nav-button {
  background: #ff9500;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(79,182,232,0.35);
}

/* =========================
   FV（完全固定）
========================= */
.lp-fv {
  background: #f8fbfe;
  text-align: center;
  padding: 64px 20px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-fv-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #4FB6E8;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.lp-crown {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  position: relative;
  top: 1px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 16L3 6l6 5 3-7 3 7 6-5-2 10H5z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 16L3 6l6 5 3-7 3 7 6-5-2 10H5z'/></svg>") no-repeat center / contain;
}

/* ===== FVタイトル（PC基準：触らない） ===== */
.lp-fv h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #333;
}

.lp-fv h1 span {
  display: inline-block;
  margin-top: 8px;
  color: #4FB6E8;
  font-size: 42px;
  font-weight: 800;
}

/* ===== リード ===== */
.lp-fv-lead {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
}

/* ===== モック ===== */
.lp-fv-phone {
  width: 240px;
  height: 460px;
  margin: 0 auto 24px;
  border-radius: 34px;
  background: #111;
  padding: 10px;
  box-shadow: 0 26px 54px rgba(0,0,0,0.16);
}

/* ===== スライダー ===== */
.lp-fv-feed {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.lp-fv-feed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.lp-fv-feed img.is-active {
  opacity: 1;
}

/* 不要要素 */
.lp-fv-play,
.lp-fv-card {
  display: none;
}

/* ===== CTA ===== */
.lp-fv-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lp-fv-primary {
  background: #ff9500;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.lp-fv-secondary {
  color: #4FB6E8;
  padding: 12px 34px;
  border-radius: 999px;
  border: 2px solid #4FB6E8;
  text-decoration: none;
}

/* =========================
   SPのみサイズダウン（最終妥協）
========================= */
@media (max-width: 768px) {
  .lp-fv {
    padding: 56px 16px 64px;
  }

  .lp-fv h1 {
    font-size: 26px;      /* ← SNS型動画求人プラットフォーム */
    line-height: 1.35;
  }

  .lp-fv h1 span {
    font-size: 34px;      /* ← Linxyだけ少し目立たせる */
    margin-top: 6px;
  }

  .lp-fv-lead {
    font-size: 14px;
  }
}

/* =========================
   Problems
========================= */
.lp-problems {
  background: #ffffff;
}

.lp-problems h2 {
  text-align: center;
}

/* PC：3カラム */
.lp-problem-list {
  max-width: 1200px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lp-problem-card {
  background: linear-gradient(135deg, #ffffff 80%, #e3ecf3 100%);
  border: 1px solid #dde6ee;
  border-radius: 28px;
  padding: 48px 32px;
  text-align: center;
}

.lp-problem-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.lp-problem-card:nth-child(1) .lp-problem-icon::before {
  content: "🔍";
}

.lp-problem-card:nth-child(2) .lp-problem-icon::before {
  content: "⏰";
}

.lp-problem-card:nth-child(3) .lp-problem-icon::before {
  content: "👥";
}

.lp-problem-card p {
  font-size: 16px;
  font-weight: 600;
}


/* =========================
   Problems pagination dots
========================= */
.lp-problem-dots {
  display: none; /* PCでは非表示 */
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.lp-problem-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d8e0;
  transition: background 0.3s, transform 0.3s;
}

.lp-problem-dots span.is-active {
  background: #4FB6E8;
  transform: scale(1.2);
}


/* =========================
   SP：横スライド
========================= */
@media (max-width: 768px) {
  .lp-problem-list {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 6px;
  }

  .lp-problem-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .lp-problem-list::-webkit-scrollbar {
    display: none;
  }

  /* dots は SP のみ表示 */
  .lp-problem-dots {
    display: flex;
  }
}



/* =========================
   Compare（基本）
========================= */
.lp-compare {
  background: #f8fbfe;
}

.lp-compare h2 {
  text-align: center;
}

.lp-compare-inner {
  max-width: 1100px;
  margin: 64px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.lp-compare-card {
  flex: 1;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
}

/* 見出し */
.lp-compare-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

/* 本文 */
.lp-compare-card p {
  font-size: 15px;
  line-height: 1.9;
}

/* old */
.lp-compare-card.is-old {
  background: #f2f4f7;
  border: 1px solid #dde3ea;
  color: #333;
}

/* new */
.lp-compare-card.is-new {
  background: linear-gradient(135deg, #4FB6E8, #7EE6C5);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(79,182,232,0.32);
}

/* icon */
.lp-compare-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* arrow（完全制御） */
.lp-compare-arrow {
  font-size: 0;        /* ← 中のテキストを完全に無効化 */
  line-height: 0;
}

/* PC用矢印 */
.lp-compare-arrow::before {
  content: "▶︎";
  font-size: 32px;
  color: #4FB6E8;
  display: block;
}

/* =========================
   Compare（SP：矢印あり・美観優先）
========================= */
@media (max-width: 768px) {

  /* 縦並び固定 */
  .lp-compare-inner {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  /* カード共通 */
  .lp-compare-card {
    width: 100%;
    min-height: 260px;
    padding: 32px 20px;
    border-radius: 28px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  /* 矢印：カード間の接続役 */
  .lp-compare-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin: 0;
    font-size: 0; /* 元の文字は殺す */
  }

  .lp-compare-arrow::before {
    content: "▼";
    font-size: 20px;
    color: #4FB6E8;
    opacity: 0.7;
  }

  /* アイコンと余白調整 */
  .lp-compare-icon {
    margin-bottom: 16px;
  }

  .lp-compare-card h3 {
    margin-bottom: 12px;
  }

  .lp-compare-card p {
    line-height: 1.8;
    margin: 0;
  }
}


/* =========================
   About（Background Gradient）
========================= */
.lp-about {
  padding: 120px 20px;
  background: linear-gradient(
    135deg,
    rgba(79,182,232,0.14),
    rgba(126,230,197,0.14)
  );
}

/* セクションタイトル */
.lp-about-title {
  text-align: center;
  margin-bottom: 72px;
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

/* 全体レイアウト */
.lp-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* =========================
   Left text
========================= */
.lp-about-text {
  flex: 1;
  max-width: 560px;
  background: transparent;
  padding: 0;
  margin-left: 64px;
  box-sizing: border-box;
}

.lp-about-heading {
  font-size: 24px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #111;
  letter-spacing: -0.01em;
}

.lp-about-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0;
}

/* =========================
   Right visual（スクショ対応）
========================= */
.lp-about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.lp-about-phone {
  width: 260px;
  height: 520px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(0,0,0,0.22);
}

/* ★ 修正ポイント：padding撤廃して実表示領域を100%に */
.lp-about-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* ▼ ダミーUI前提だった部分を無効化 */
.lp-about-feed,
.lp-about-feed-header,
.lp-about-feed-actions {
  display: none;
}

/* ▼ スクショ表示専用 */
.lp-about-feed-video {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: none;
  margin: 0;

  display: flex;
  align-items: flex-start; /* 中央 → 上基準に */
  justify-content: center;

  padding-top: 14px; /* ★ ここで中身を少し下げる */
}


/* ★ 修正ポイント：比率を崩さず中央表示 */
.lp-about-feed-video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .lp-about {
    padding: 96px 16px;
  }

  .lp-about-inner {
    flex-direction: column;
    gap: 48px;
  }

  .lp-about-heading {
    font-size: 21px;
    text-align: center;
  }

  .lp-about-text {
    max-width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .lp-about-phone {
    width: 240px;
    height: 480px;
  }
}

/* =========================
   About Animation
========================= */
.js-about-animate {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.js-about-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   Features
========================= */

.lp-features {
  padding: 100px 20px;
  background: #f8fbfe;
}

.lp-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* 一覧 */
.lp-features-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* カード */
.lp-feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 56px 32px 40px;
  border: 1px solid #e6eef5;
  text-align: center;
}

/* 薄字の番号 */
.lp-feature-number {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(79, 182, 232, 0.25);
  line-height: 1;
  pointer-events: none;
}

/* アイコン */
.lp-feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;

  /* ▼ ここだけ変更 */
  background: rgba(79, 182, 232, 0.15);
  color: #4fb6e8;
}


/* 見出し */
.lp-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* 説明文 */
.lp-feature-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .lp-features-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-feature-number {
    font-size: 42px;
  }
}
/* =========================
   Card Hover Animation
========================= */

.lp-feature-card,
.lp-benefit-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* hover時 */
.lp-feature-card:hover,
.lp-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* =========================
   Benefits
========================= */

.lp-benefits {
  padding: 100px 20px;
  background: #ffffff;
}

/* タイトル */
.lp-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* 一覧 */
.lp-benefits-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* カード */
.lp-benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 56px 32px 40px;
  border: 1px solid #e6eef5;
  text-align: center;
}

/* アイコン（丸シェイプを薄く） */
.lp-benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(126, 230, 197, 0.18); /* 薄いグリーン */
  color: #2fbf9c;
  font-size: 28px;
}

/* 見出し */
.lp-benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* 説明文 */
.lp-benefit-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* 注釈 */
.lp-section-note {
  max-width: 900px;
  margin: 32px auto 0;
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 1.6;
}

/* =========================
   Card Hover Animation
========================= */

.lp-feature-card,
.lp-benefit-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* hover時 */
.lp-feature-card:hover,
.lp-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
  .lp-benefits-list {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Flow / ご利用の流れ
========================= */

.lp-flow {
  padding: 100px 20px;
  background: #f8fbfe;
}

.lp-flow-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 64px;
}

/* フロー全体 */
.lp-flow-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px; /* カード間はしっかり */
}

/* 各ステップカード（★ 高さ固定） */
.lp-flow-item {
  max-width: 760px;
  width: 55%;
  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 24px;
  padding: 0 32px;

  height: 132px; /* ★ ここが重要：完全固定 */

  background: #ffffff;
  border: 2px solid #dfeaf3;
  border-radius: 18px;
}

/* 丸数字 */
.lp-flow-step {
  flex-shrink: 0;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: #4fb6e8;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 700;
}

/* テキストエリア */
.lp-flow-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* ★ 縦中央固定 */
}

/* Step名 */
.lp-flow-content h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 4px 0; /* タイトルと説明は詰める */
}

/* 説明文 */
.lp-flow-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* 矢印 */
.lp-flow-arrow {
  text-align: center;
  font-size: 28px;
  color: #4fb6e8;
  line-height: 1;

  animation: flowArrow 1.4s ease-in-out infinite;
}

/* 矢印アニメーション */
@keyframes flowArrow {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
}

/* =========================
   Flow（SP 中央寄せ修正）
========================= */
@media (max-width: 768px) {

  .lp-flow-item {
    width: calc(100% - 32px); /* ★ 画面中央＋左右16px余白 */
    max-width: none;          /* ★ PC制限を解除 */
    margin: 0 auto;

    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 24px 20px;
    height: auto;             /* ★ 高さ固定も解除 */
  }

}


  /* 丸数字 */
  .lp-flow-step {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  /* テキスト */
  .lp-flow-content {
    align-items: center;
  }

  .lp-flow-content h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .lp-flow-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  /* 矢印 */
  .lp-flow-arrow {
    font-size: 26px;
    margin: 8px 0;
  }

/* =========================
   CTA
========================= */

.lp-cta {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center; /* ★ PC/SP 共通で中央揃え */
}

.lp-cta h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #111;
}

.lp-cta p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 28px;
}

.lp-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto; /* ★ PCでも視覚的に完全中央 */

  background: #ff9500;
  color: #ffffff;

  padding: 14px 34px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 16px 34px rgba(79,182,232,0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.lp-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(79,182,232,0.32);
  opacity: 0.98;
}

/* =========================
   Responsive（SP）
========================= */
@media (max-width: 768px) {
  .lp-cta {
    padding: 72px 16px;
  }

  .lp-cta h2 {
    font-size: 18px;
  }

  .lp-cta p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .lp-cta-button {
    width: 100%;
    max-width: 320px;
    padding: 14px 18px;
  }
}


/* =========================
   Footer / Company Info（最終FIX）
========================= */

.lp-footer {
  background: #4FB6E8;
}

.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 48px;

  display: flex;
  justify-content: space-between;
  gap: 64px;
}

/* 左 */
.lp-footer-left {
  max-width: 520px;
}

.lp-footer-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.lp-footer-sub {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.lp-footer-note {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* 右 */
.lp-footer-right {
  font-size: 14px;
  line-height: 1.9;
  color: #ffffff;
}

/* 下段 */
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.35);
  text-align: center;
  padding: 18px 16px;
}

.lp-footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .lp-footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}

/* =========================
   FV Animation（Step 1）
========================= */

.js-fv-animate {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.js-fv-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ディレイ */
.js-fv-delay-1 { transition-delay: 0.05s; }
.js-fv-delay-2 { transition-delay: 0.15s; }
.js-fv-delay-3 { transition-delay: 0.25s; }
.js-fv-delay-4 { transition-delay: 0.4s; }
.js-fv-delay-5 { transition-delay: 0.55s; }


/* =========================
   Problems Animation
========================= */
.js-problem-animate {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.js-problem-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

.js-problem-delay-1 { transition-delay: 0.1s; }
.js-problem-delay-2 { transition-delay: 0.2s; }
.js-problem-delay-3 { transition-delay: 0.3s; }

/* =========================
   Contact Page 強制FIX（page-id-105）
========================= */

/* 上部タイトル・説明文を中央揃え */
body.page-id-105 h1,
body.page-id-105 p {
  text-align: center;
}

/* フォーム内のテキストは左揃えに戻す */
body.page-id-105 .wpcf7,
body.page-id-105 .wpcf7 p {
  text-align: left;
}


/* =========================
   Contact Form 7
========================= */

/* フォーム全体 */
body.page-id-105 .wpcf7 {
  max-width: 720px;
  margin: 0 auto;
}

/* 各フィールド間隔 */
body.page-id-105 .wpcf7-form p {
  margin-bottom: 16px;
}

/* 入力フィールド共通 */
body.page-id-105 .wpcf7 input[type="text"],
body.page-id-105 .wpcf7 input[type="email"],
body.page-id-105 .wpcf7 input[type="tel"],
body.page-id-105 .wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d6e3ef;
  font-size: 15px;
  box-sizing: border-box;
}

/* textarea */
body.page-id-105 .wpcf7 textarea {
  min-height: 160px;
}


/* =========================
   送信ボタン
========================= */

body.page-id-105 .wpcf7-submit {
  display: block;
  margin: 40px auto 0;
  padding: 16px 64px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;

  /* 指定グラデーション */
  background: linear-gradient(
    90deg,
    #4fb6e8,
    #7ee6c5
  );

  /* 影は控えめ */
  box-shadow: 0 4px 12px rgba(79,182,232,0.15);
  transition: all 0.2s ease;
}

body.page-id-105 .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(79,182,232,0.2);
}