/* common.css - 基本・ヘッダー・フッター・固定CTA・スクロールアニメ */

  :root {
    --white: #FFFFFF;
    --yellow: #FFEB3B;
    --blue: #1A7FC1;
    --blue-light: #5BB3E8;
    --blue-dark: #0E5A8A;
    --bg-base: #F7FBFF;
    --bg-white: #FFFFFF;
    --bg-pale: #EDF6FF;
    --text-mid: #5A7FA0;
    --bg-light: #DDEEFF;
    --navy: #0D2A4A;
    /* --accent は --blue に統合 */
    --text: #0D2A4A;
    --text-muted: #4A6A85;
    --text-light: #7A9BBF;
    --border: rgba(26,127,193,0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--bg-white);
    color: var(--text);
    overflow-x: hidden;
  }

.pc_off{display:none;}
  /* ===================== HEADER ===================== */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(26,127,193,0.08);
    border-bottom: 1px solid rgba(26,127,193,0.08);
    box-shadow: 0 4px 24px rgba(26,127,193,0.08);
  }

  .header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .header-logo-img {
    height: 50px;
    width: auto;
    max-width: 300px;
    display: block;
    /* ロゴ画像が入るスペース。src属性に画像URLを入れてください */
  }

  .header-logo-placeholder {
    height: 44px;
    width: 180px;
    background: rgba(26,127,193,0.08);
    border: 1.5px dashed rgba(26,127,193,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .header-nav a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;

    &:hover { color: var(--blue); }
  }

  .header-tel {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--blue);
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  .header-cta {
    background: var(--blue);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: background 0.2s;
    border-radius: 50px;

    &:hover { background: var(--blue-dark); }
  }

  /* ===================== FOOTER ===================== */
  footer {
    background: #0D2A4A;
    border-top: 1px solid rgba(26,127,193,0.15);
    padding: 48px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    width: 18%;
    max-width: 200px;
    min-width: 150px;
	& img {    width: 100%;}

    & span {
      display: block;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.05em;
      margin-top: 4px;
    }
  }

  .footer-links {
    display: flex;
    gap: 28px;

    & a {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;

      &:hover { color: var(--blue); }
    }
  }

  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
  }

  /* ===================== FIXED CTA ===================== */
  .fixed-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }

  .fixed-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-radius: 50px;

    &:hover { transform: translateY(-2px); }

    &.primary {
      background: var(--blue);
      color: #FFFFFF;
    }

    &.secondary {
        background: #06C755;
        color: var(--white);
        border: 1px solid rgb(255 255 255 / 30%);
    }

    &.line-btn {
      background: #06C755;
      color: #FFFFFF;
      gap: 8px;
    }
  }

  /* ===================== SPLIT SECTION ===================== */
  .section-split {
    background: #F0F8FF;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
  }

  .section-split::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26,127,193,0.4), transparent);
  }

  .split-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .split-lead {
    text-align: center;
    margin-bottom: 52px;
  }

  .split-lead-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .split-lead-title em {
    font-style: normal;
    color: var(--blue);
  }

  .split-lead-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
  }

  .split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .split-card {
    padding: 52px 48px;border-radius: 20px;
    
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: block;
    transition: transform 0.3s;
    cursor: pointer;
  }

  .split-card:hover { transform: translateY(-4px); }

  .split-card.high {
    background: linear-gradient(135deg, #EFF8FF, #a0d3ff);
    border: 1px solid rgba(26,127,193,0.2);
  }

  .split-card.fast {
    background: linear-gradient(135deg, #ffffff, #fffbd8);
    border: 1px solid rgba(26,127,193,0.15);
	.split-card-title em {color: orange;}
  }

  .split-card-bg-text {
    position: absolute;
    font-family: 'Oswald', sans-serif;
    font-size: 120px;
    font-weight: 700;
    right: -10px;
    bottom: -20px;
    line-height: 1;
    color: rgba(26,127,193,0.07);
    user-select: none;
    letter-spacing: -0.02em;
  }

  .split-card-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
  }

  .split-card-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    display: block;
  }

  .split-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 4vw, 50px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .split-card-title em {
    font-style: normal;
    color: var(--blue);
  }

  .split-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 32px;
  }

  .split-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .split-card-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
  }

  .split-card-points li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
  }

  .split-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(26,127,193,0.4);
    padding-bottom: 4px;
    transition: gap 0.2s;
  }

  .split-card:hover .split-card-btn { gap: 16px; }

  /* ===================== HIGH SECTION ===================== */
  .section-high {
    background: #F0F8FF;
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
    background-image: url(/img/section-high-bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .section-high::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(235,247,255,0.95);
    z-index: 0;
  }

  .high-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  .reason-card {
    background: #FFFFFF;border-radius: 16px;
    
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
  }
.reason-card-img {
  object-fit: cover;
  object-position: center;
  display: block;
}
  .reason-card:hover {
    background: #EAF5FF;
    border-bottom-color: var(--blue);
  }

  .reason-num {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: rgba(26,127,193,0.08);
    line-height: 1;
    margin-bottom: 16px;
  }

  .reason-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
  }

  .reason-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text);
  }

  .reason-title em { font-style: normal; color: var(--blue); }

  .reason-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9;
  }

  /* ===================== FAST SECTION ===================== */
  .section-fast {
    background: #0F2236;
    padding: 100px 48px;
    position: relative;
    background-image: url(/img/section-fast-bg.webp);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .section-fast::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5,30,70,0.88);
    z-index: 0;
  }

  .section-fast::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26,127,193,0.3), transparent);
    z-index: 1;
  }

  .fast-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
    color: var(--white);

	.section-label span { color: var(--white);}
	.section-label::after {    background: rgb(255 255 255 / 60%);}
	h2{ color: var(--white);}
	.section-desc { color: var(--white);}
	.section-title em {color: var(--yellow);}

  }

  .fast-left { padding-top: 0; }

  .fast-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 48px;
  }

  .fast-stat {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFF;
    border-radius: 12px;
    padding: 1.5em;
    position: relative;
    overflow: hidden;
  }

  .fast-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 8px;
  }

  .fast-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
  }

  .fast-steps {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .fast-step {
    display: flex;
    gap: 24px;
    padding-bottom: 32px;
    position: relative;
  }

  .fast-step:last-child { padding-bottom: 0; }

  .fast-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }

  .fast-step-circle {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
  }

  .fast-step-line {
    flex: 1;
    width: 1px;
    background: rgb(255 255 255);
    margin-top: 6px;
  }

  .fast-step:last-child .fast-step-line { display: none; }

  .fast-step-content { padding-top: 6px; }

  .fast-step-time {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 6px;
  }

  .fast-step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #FFFFFF;
  }

  .fast-step-text {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
  }

  .fast-step-attension {
margin-top: 32px;
    padding: 20px 24px;
    font-size: 12px;
    color: var(--yellow);
}


  /* ===================== WARNING SECTION ===================== */
  .section-warning {
    background: #0D1F35;
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
    background-image: url(/img/warning-bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }


.section-warning::before {
    content: '';
    position: absolute;
    inset: 0;
        background: rgb(0 0 0 / 88%);
    z-index: 0;
}

  .section-warning::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(220,80,80,0.6), transparent);
    z-index: 1;
  }



  .warning-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; color: white;}

  .warning-lead {
    text-align: center;
    margin-bottom: 60px;
  }

  .warning-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #e05555;
    border: 1px solid rgba(220,80,80,0.4);
    padding: 6px 20px;
    margin-bottom: 28px;
  }

  .warning-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .warning-title em {
    font-style: normal;
    color: #e07070;
    border-bottom: 2px solid rgba(220,80,80,0.4);
  }

  .warning-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
  }

  .warning-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 52px;
  }

  .warning-item {
    background: rgba(255,255,255,0.3);
border-radius: 12px;
    
    padding: 28px 36px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border-left: 3px solid rgba(220,80,80,0.4);
    transition: border-left-color 0.2s;
  }

  .warning-item:hover { border-left-color: #e05555; background: rgba(255,255,255,0.1); }

  .warning-item-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .warning-item-body {}

  .warning-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
    line-height: 1.5;
  }

  .warning-item-title em {
    font-style: normal;
    color: #e07070;
  }

  .warning-item-text {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
  }

  .warning-resolve {
    background: linear-gradient(135deg, rgba(26,127,193,0.15), rgba(26,127,193,0.08));border-radius: 16px;
    
    border: 1px solid rgba(26,127,193,0.25);
    padding: 48px;
    text-align: center;
    position: relative;
  }

  .warning-resolve::before {
    content: 'だからユニバースが選ばれる';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0D1E35;
    padding: 0 20px;
    font-size: 11px;
    color: var(--yellow);
    letter-spacing: 0.1em;
    white-space: nowrap;
    font-family: 'Oswald', sans-serif;
  }

  .warning-resolve-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.8;
    color: #FFFFFF;
  }

  .warning-resolve-text em {
    font-style: normal;
    color: var(--yellow);
  }

  /* ===================== SCROLL ANIM ===================== */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;

    &.visible {
      opacity: 1;
      transform: translateY(0);
    }

    &.fade-up-delay-1 { transition-delay: 0.1s; }
    &.fade-up-delay-2 { transition-delay: 0.2s; }
    &.fade-up-delay-3 { transition-delay: 0.3s; }
  }

  .cta-boxes-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cta-box-icon-wrap {
	margin: 1em auto;
	width: 100%;
	img{
		width: 100%;
		height: 50px;
		max-width: 70px;
		object-fit: contain;
	}
  }

  .cta-box-line {
    background: rgba(6,199,85,0.6);
    border: 1px solid rgba(6,199,85,0.3);
    position: relative;
  }

  .cta-box-line:hover {
    background: rgba(6,199,85,0.18);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6,199,85,0.2);
  }

  .cta-box-tel {
    background: rgba(26,127,193,0.6);
    border: 1px solid rgba(26,127,193,0.3);
    text-decoration: none;
    color: var(--navy);
    display: block;
  }

  .cta-box-tel:hover {
    background: rgba(26,127,193,0.2);
    transform: translateY(-4px);
  }

  .cta-box-form {
    background: rgba(74,159,212,0.5);
    border: 1px solid rgba(74,159,212,0.25);
  }

  .cta-box-form:hover {
    background: rgba(74,159,212,0.18);
    transform: translateY(-4px);
  }

  .cta-box-badge {
    display: inline-block;
    background: #06C755;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    margin-top: 12px;
  }

  .cta-tel-num {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    margin-top: 16px;
    line-height: 1.2;
  }

  .cta-tel-hours {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
  }



  @media (max-width: 1024px) {
    .cta-boxes-3 { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .cta-boxes-3 { grid-template-columns: 1fr; }
    .cta-box-tel { display: block; }
    .fixed-cta-btn.line-btn { display: flex; }
  }

  /* ===================== RESULTS ===================== */
  .section-results {
    background: #F5F9FF;
    padding: 100px 48px;
    position: relative;
  }

  .section-results::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26,127,193,0.2), transparent);
  }

  .results-inner { max-width: 1200px; margin: 0 auto; }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 52px;
  }

  .result-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(26,127,193,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--blue), var(--blue-light));
    border-radius: 16px 16px 0 0;
  }

  .result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,127,193,0.12);
    border-color: rgba(26,127,193,0.2);
  }

/* ===== result-card リンク化 ===== */
a.result-card {
  text-decoration: none;
  color: inherit;
}


  .result-card-area {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-dark);
    background: rgba(26,127,193,0.08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
  }

  .result-card-type {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .result-card-price {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
  }

  .result-card-price span {
    font-size: 0.5em;
    color: var(--text-muted);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
  }

  .result-card-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(26,127,193,0.08);
    line-height: 1.7;
  }

  .result-card-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--blue-dark);
    border: 1px solid rgba(26,127,193,0.25);
    padding: 2px 10px;
    border-radius: 50px;
    margin-top: 8px;
  }

  .results-note {
    margin-top: 28px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
  }

  @media (max-width: 1024px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .section-results { padding: 64px 20px; }
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .result-card { padding: 20px 16px; }
    .result-card-price { font-size: 22px; }
  }
  @media (max-width: 480px) {
    .results-grid { grid-template-columns: 1fr 1fr; }
  }

  .count-up {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--yellow);
    font-size: clamp(20px, 6vw, 36px);
    transition: opacity 0.3s;
    white-space: nowrap;
  }


  /* reason-card 写真対応 */
  .reason-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26,127,193,0.08);
    transition: all 0.3s;
    padding: 0;
  }

  .reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,127,193,0.12);
  }

  .reason-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #D0E8F8;

  }

  .reason-card-body {
    padding: 28px 28px 32px;
  }

  .reason-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text);
  }

  .reason-title em {
    font-style: normal;
    color: var(--blue);
  }

  .reason-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9;
  }

  /* prop-card 写真対応 */
  .prop-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26,127,193,0.08);
    transition: all 0.3s;
    padding: 0;
    cursor: default;
  }

  .prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,127,193,0.12);
    border-color: rgba(26,127,193,0.2);
  }

  .prop-card-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #D0E8F8;
  }

  .prop-card-body {
    padding: 1em;
  }

  .prop-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.6;
  }

  .prop-card-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .prop-card-badge {
    display: inline-block;
    margin-top: 0;
    font-size: 11px;
    color: var(--blue-dark);
    border: 1px solid rgba(26,127,193,0.3);
    padding: 3px 12px;
    letter-spacing: 0.05em;
    border-radius: 50px;
  }



/* ===================== HEADER ACTIONS ===================== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-line-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #06C755;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;

  &:hover { opacity: 0.85; }
}


/* ===================== HAMBURGER ===================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;

  &:hover { background: rgba(26, 127, 193, 0.08); }

  & span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
  }

  /* 開いた状態 */
  &.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  &.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  &.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* ===================== MOBILE MENU ===================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh; /* デバイス高さに合わせる */
  max-height: 100vh;
  background: #FFFFFF;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;

  &.is-open { right: 0; }
}

/* メニュー内スクロール領域 */
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 72px 32px 40px;
  -webkit-overflow-scrolling: touch;
}

/* 閉じるボタン */
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(26, 127, 193, 0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  z-index: 1;
  transition: background 0.2s;

  &:hover { background: rgba(26, 127, 193, 0.15); }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;

  & .mobile-nav-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 127, 193, 0.08);
    letter-spacing: 0.03em;
    transition: color 0.2s, padding-left 0.2s;

    &:hover {
      color: var(--blue);
      padding-left: 8px;
    }
  }
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 127, 193, 0.08);
}

.mobile-tel {
  display: block;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 12px;
  background: rgba(26, 127, 193, 0.06);
  border-radius: 12px;

  &:hover { background: rgba(26, 127, 193, 0.1); }
}

.mobile-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #06C755;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;

  &:hover { opacity: 0.85; }
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  background: var(--blue);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s;

  &:hover { background: var(--blue-dark); }
}

/* オーバーレイ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;

  &.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}


/* ===================== RESPONSIVE：ハンバーガー切り替え ===================== */

/* iPad横含む：1180px以下でハンバーガー表示 */
@media (max-width: 1180px) {
  .header-nav      { display: none; }
  .hamburger       { display: flex; }
  .header-tel      { display: none; }
  .header-line-btn { display: none; }
}

/* スマホ：768px以下でさらに縮小 */
@media (max-width: 768px) {
  .header-actions { gap: 8px; }
  .header-cta { padding: 8px 16px; font-size: 12px; }
}

/* ===================== FIXED CTA ICONS（スマホ用） ===================== */

/* アイコン内の仮スペース（画像後入れ用） */
.fcta-icon-placeholder {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  vertical-align: middle;
  flex-shrink: 0;
  /* 画像入れ替え時: background-image: url('icon.png'); background-size: cover; */
	img{  width: 100%;}
}

.fixed-cta-icon-btn {
  display: none; /* デフォルト非表示 */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.25s;
  flex-shrink: 0;

  &:hover { transform: translateY(-2px); }

  &.line { background: #06C755; }
  &.form { background: var(--blue); }

  & .fcta-icon-placeholder {
    width: 26px;
    height: 26px;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  /* スマホではテキストボタンを非表示 */
  .fixed-cta-btn { display: none !important; }
  /* アイコンボタンを表示 */
  .fixed-cta-icon-btn { display: flex; }
  .fixed-cta { gap: 10px; bottom: 20px; right: 16px; }
}

/* CTAカード内アイコン仮スペース（画像後入れ用） */
.cta-icon-placeholder {
  display: block;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  /* 画像入れ替え時: background-image: url('icon.png'); background-size: cover; */
}

  /* ===================== TABLET ===================== */
  @media (max-width: 1024px) {
    header { padding: 16px 24px; }
    .header-nav { display: none; }
    .fv-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .fv-merit-block { display: none; }
    .fv-accent-line { display: none; }
    .pain-grid { grid-template-columns: 1fr 1fr; }
    .merit-blocks { grid-template-columns: 1fr 1fr; }
    .reasons-grid { grid-template-columns: 1fr 1fr; }
    .split-cards { grid-template-columns: 1fr; }
    .fast-inner { grid-template-columns: 1fr; gap: 48px; }
    .fast-stats { grid-template-columns: repeat(4, 1fr); }
    .prop-grid { grid-template-columns: 1fr 1fr; }
    .company-inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-boxes,
    .cta-boxes-3 { grid-template-columns: 1fr; max-width: 100%; }
    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .speed-inner { grid-template-columns: 1fr; gap: 48px; }
    .section-pain, .section-merit, .section-high, .section-fast,
    .section-warning, .section-properties, .section-flow,
    .section-faq, .section-company, .section-cta, .section-split,
    .section-speed { padding-left: 24px; padding-right: 24px; }
  }

  /* ===================== MOBILE ===================== */
  @media (max-width: 768px) {
    header { padding: 14px 20px; }
    .header-logo span { display: none; }
    .header-tel { display: none; }
    .header-cta { padding: 8px 16px; font-size: 12px; }
    .header-logo {width: 50%;}
    .header-logo-img {height: auto; width: 100%;}
    .fv { padding: 100px 0 60px; }
    .fv-inner { padding: 0 20px; }
    .fv-catch { font-size: clamp(26px, 7vw, 38px); }
    .fv-sub { font-size: 13px; margin-bottom: 28px; }
    .fv-stats { padding: 20px 0; min-width: 100%;}
    .fv-stat-item {padding: 0;}
    .fv-stat-num { font-size: clamp(16px, 4.5vw, 26px); }
    .fv-btns { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn-primary { justify-content: center; padding: 16px 20px; font-size: 14px; }
    .fv-number { font-size: 80px; }
    .fv-merit-block { display: none; }
    .fv-accent-line { display: none; }

    .section-pain, .section-merit, .section-high, .section-fast,
    .section-warning, .section-properties, .section-flow,
    .section-faq, .section-company, .section-cta, .section-split,
    .section-speed {
      padding: 64px 20px;
    }

    .section-title { font-size: clamp(20px, 6vw, 30px); margin-bottom: 12px; }
    .section-desc { font-size: 13px; margin-bottom: 36px; }
    .section-label span {font-size: 11px;}
    .split-cards { grid-template-columns: 1fr; }
    .split-card { padding: 32px 24px; }
    .split-card-tag {font-size: 12px;}
    .split-card-bg-text { font-size: 72px; }
    .split-card-title { font-size: clamp(18px, 5vw, 24px); }
    .split-lead { margin-bottom: 32px; }

    .pain-grid { grid-template-columns: 1fr; }
    .pain-card-body { padding: 18px; }
    .pain-resolve { padding: 28px 20px; }
    .pain-resolve-text { font-size: clamp(15px, 4.5vw, 20px); }

    .reasons-grid { grid-template-columns: 1fr; }
    .reason-card { padding: 28px 24px; }

    .fast-inner { grid-template-columns: 1fr; gap: 40px; }
    .fast-stats { grid-template-columns: 1fr 1fr; gap: 2px; }
    .fast-stat { padding: 20px 16px; }
    .fast-stat-num { font-size: 32px; }

    .warning-item { padding: 20px 16px; flex-direction: column; gap: 10px; }
    .warning-resolve { padding: 32px 20px; }
    .warning-resolve-text { font-size: clamp(13px, 4vw, 18px); }
    .warning-title { font-size: clamp(18px, 5.5vw, 26px); }

    .merit-blocks { grid-template-columns: 1fr; }
    .merit-block { padding: 32px 24px; }

    .speed-inner { grid-template-columns: 1fr; gap: 40px; }
    .speed-right { padding-top: 0; }
    .speed-photo { height: 160px; }
    .speed-highlight { padding: 24px; }
    .speed-highlight-num { font-size: 48px; }

    .prop-grid { grid-template-columns: 1fr; }
    .prop-card { padding: 24px 20px; }

    .flow-grid { flex-direction: column; }
    .flow-grid::before { display: none; }
    .flow-item {
      flex-direction: row;
      text-align: left;
      padding: 20px 0;
      border-bottom: 1px solid rgba(26,127,193,0.1);
      gap: 16px;
      align-items: flex-start;
    }
    .flow-item:last-child { border-bottom: none; }
    .flow-circle { flex-shrink: 0; margin-bottom: 0; width: 44px; height: 44px; font-size: 15px; }
    .flow-title { font-size: 13px; margin-bottom: 6px; }
    .flow-text { font-size: 11px; }

    .faq-inner { max-width: 100%; }
    .faq-question { padding: 18px 16px; gap: 12px; }
    .faq-q-text { font-size: 13px; }
    .faq-answer-inner { padding: 0 16px 18px 46px; font-size: 13px; }

    .company-inner { grid-template-columns: 1fr; gap: 36px; }
    .company-table th { width: 80px; font-size: 11px; }
    .company-table td { font-size: 13px; }

    .cta-boxes,
    .cta-boxes-3 { grid-template-columns: 1fr; max-width: 100%; }
    .cta-box { padding: 28px 24px; }
    .cta-title { font-size: clamp(20px, 6vw, 32px); }

    footer { padding: 32px 20px; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

    .fixed-cta { bottom: 16px; right: 16px; gap: 8px; }
    .fixed-cta-btn { padding: 11px 16px; font-size: 12px; }
    .fixed-cta-btn.secondary { display: none; }
  }

  @media (max-width: 480px) {
    .fv-catch { font-size: clamp(22px, 8vw, 32px); line-height: 1.5; }
    .fv-stat-num { font-size: clamp(14px, 5vw, 22px); }
    .split-card-title {font-size: 8vw;}
    .fast-stats { grid-template-columns: 1fr 1fr; gap: 5%;}
    .merit-block-title { font-size: 16px; }
    .cta-tel a { font-size: 22px; }
    .fast-stat-num { font-size: 6vw; }
    .speed-highlight-title { font-size: 5vw; }

	.speed-highlight-label {
	    position: absolute;
	    top: -1em;
	    left: 2em;
	    background: #1a7fc1;
	    padding: 0.2em 1em;
	    font-family: 'Oswald', sans-serif;
	    font-size: 3.5vw;
	    letter-spacing: 0.25em;
	    color: var(--white);
	}
	.cta-boxes { width: 80%;}
  }




/* ===== パンくず ===== */
nav.breadcrumb {
  background: #EEF6FF;
  padding: 14px 48px;
  border-bottom: 1px solid rgba(26,127,193,0.1);
  @media (max-width: 480px) {padding: 0.5em;}
}

nav.breadcrumb .breadcrumb-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

nav.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s;
  &:hover { opacity: 0.7; }
}

nav.breadcrumb .breadcrumb-sep {
  color: rgba(26,127,193,0.3);
  font-size: 10px;
}


/* ========================================
   Fixed CTA ボタン きらっとエフェクト
======================================== */

.header-actions a {
  position: relative;
  overflow: hidden;
}

.header-actions a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.header-actions a.is-shine::after {
  animation: cta-shine 0.6s ease forwards;
}


.fixed-cta a {
  position: relative;
  overflow: hidden;
}

.fixed-cta a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.fixed-cta a.is-shine::after {
  animation: cta-shine 0.6s ease forwards;
}

@keyframes cta-shine {
  0%   { left: -100%; }
  100% { left: 150%;  }
}