/* CSS Variables */
:root {
  /* カラーパレット */
  --primary-blue: #2B5CE6;
  --primary-navy: #0f3685;
  --primary-light-blue: #cee4ff;
  --accent-red: #E53E3E;
  --accent-orange: #FF6B35;
  --accent-green: #219430;
  --accent-yellow: #ffff99;
  --neutral-white: #FFFFFF;
  --neutral-light-gray: #F7F9FC;
  --neutral-gray: #E2E8F0;
  --neutral-dark-gray: #4A5568;
  --neutral-black: #1A202C;
  
  /* 大きなサイズ設定 */
  --container-max-width: 1400px;
  --section-padding: 100px;
  --section-padding-mobile: 80px;
  --large-spacing: 80px;
  --medium-spacing: 60px;
  --small-spacing: 40px;
  
  /* タイポグラフィ（大きめサイズ） */
  --text-hero: 4rem;
  --text-h1: 3.5rem;
  --text-h2: 2.8rem;
  --text-h3: 2.2rem;
  --text-body-x-large: 1.8rem;
  --text-body-large: 1.5rem;
  --text-body: 1.25rem;
  --text-small: 1.125rem;
  --text-x-small: 1rem;
  --text-xx-small: 0.9rem;
  
  /* アニメーション */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a, 
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/* ベーススタイル */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--neutral-black);
  background: var(--neutral-white);
  letter-spacing: 0.02em;
}

/* コンテナ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-gray);
  z-index: 1000;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ロゴ画像 */
.logo {
  /* ensure alignment with nav items */
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-block;
  line-height: 0; /* remove extra descender space */
}

.logo-image {
  max-height: 40px;    /* adjust as needed for proper header height */
  width: auto;
  display: block;
}

/* .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
} */

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: var(--neutral-black);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-body);
  transition: var(--transition-base);
  padding: 12px 0;
}

.nav-link:hover {
  color: var(--primary-blue);
}

/* ヒーローセクション - アイコン装飾版 */
.hero {
  padding: 140px 0 340px;
  background: url(../images/st-images/1920_1080.jpg) bottom center no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: none !important;
}


/* メインコンテンツ */
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
}

.badge-text {
  color: var(--accent-orange);
  font-size: var(--text-h3);
  font-weight: 600;
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--neutral-black);
}

.title-main {
  display: block;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.title-accent {
  display: block;
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: var(--text-body-large);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* デモセクション */
.hero-demo {
  background: var(--neutral-light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align:center;
}

.hero-video-placeholder {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--neutral-white) 0%, var(--neutral-light-gray) 100%);
  border: 2px solid var(--neutral-gray);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hero-video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-video-placeholder:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.hero-video-placeholder:hover::before {
  transform: translateX(100%);
}

.hero-video-placeholder .video-content {
  width: 100%;
  text-align: center;
  z-index: 1;
  position: relative;
  display:flex;
  justify-content:center;
}
.hero-video-placeholder .video-content iframe {
  width: 100%;
  height: 100%;
}

.hero-video-placeholder .play-button {
  margin-bottom: 24px;
  transition: var(--transition-base);
  display: inline-block;
}

.hero-video-placeholder:hover .play-button {
  transform: scale(1.1);
}

.hero-video-placeholder .play-button svg {
  filter: drop-shadow(0 4px 12px rgba(43, 92, 230, 0.3));
}

.video-title {
	margin-bottom:24px;
}
.video-label {
  display: block;
  font-size: var(--text-h3);
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.video-description {
  font-size: var(--text-body);
  color: var(--neutral-dark-gray);
  margin: 0;
  font-weight: 500;
}

/* ボタンスタイル */
.btn {
  display: inline-block;
  padding: 5px 40px;
  line-height:1.4;
  border-radius: 12px;
  font-size: var(--text-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
  white-space: nowrap;
}
.btn small {
  font-size: var(--text-x-small);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A50 100%);
  color: var(--neutral-white);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  padding:20px 40px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: var(--primary-blue);
  color: var(--neutral-white);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--neutral-white);
  color: var(--primary-blue);
}

.btn-accent {
  background: var(--accent-red);
  color: var(--neutral-white);
  box-shadow: 0 6px 20px rgba(229, 62, 62, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(229, 62, 62, 0.4);
}

.btn.large {
  padding: 24px 48px;
  font-size: 1.375rem;
}

.btn.extra-large {
  padding: 28px 56px;
  font-size: 1.5rem;
}

/* セクション共通スタイル */
section {
  padding: var(--section-padding) 0;
}

/* セクション見出し - ライン装飾のみ */
.section-title {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 100px;
  color: var(--primary-navy);
  position: relative;
  padding-bottom: 20px;
  border-bottom:3px solid var(--primary-navy);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    var(--neutral-gray) 25%, 
    var(--neutral-gray) 75%, 
    transparent 100%
  );
}

.section-subtitle {
  font-size: var(--text-body-large);
  line-height: 1.8;
  text-align: center;
  color: var(--neutral-dark-gray);
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.inspiration {
	display: flex;
	justify-content: center;
	align-items: center;
}
.inspiration::before {
	content:'';
	width: 1.8em;
	aspect-ratio:1/1;
	margin-right: 4px;
	background: url(../images/st-images/icons/inspiration.png) 50% 50% no-repeat;
	background-size: contain;
}

/* 課題提示セクション */
.problems {
  background: var(--primary-light-blue);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.card {
  background: var(--neutral-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-gray);
  transition: var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-problem {
  border-left: 6px solid var(--primary-blue);
}

.card-title {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--primary-blue);
}

.card-text {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
}

.problems-cta {
  text-align: center;
}

/* 箇条書きスタイル */
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li {
  position: relative;
  margin-bottom: 16px;
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
}

.problem-list li:last-child {
  margin-bottom: 0;
}

.problem-list li::before {
  content: '×';
  color: var(--accent-red);
  font-weight: 700;
  margin-right: 8px;
}

/* 人物セクション - 実際の画像用に最適化 */
.problems-person {
  margin-top: 80px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.person-image {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 1000px;
  height: 280px;
  color: var(--neutral-white);
  background:url(../images/st-images/person_before.png) 30px 100% no-repeat var(--primary-navy);
  background-size:auto 90%;
  padding: 40px 0 40px 300px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--neutral-gray);
  position: relative;
  transition: var(--transition-base);
}
.person-image.after {
  padding-left: 260px;
  background-image: url(../images/st-images/person_after.png);
}

.person-speech {
  flex: 1;
  position: relative;
  padding-left: 20px;
}

.speech-text {
  font-size: var(--text-h3);
  line-height: 1.6;
  color: var(--neutral-white);
  margin-bottom: 20px;
  font-weight: 500;
  display:flex;
}
.speech-text .p {
  text-indent: calc( -1 * var(--text-h3) );
  padding-left: var(--text-h3);
}

.highlight-red {
  color: var(--accent-red);
  font-weight: 700;
}

.speech-label {
  display: flex;
  justify-content:center;
}
.speech-label span {
  font-size: var(--text-body);
  color: var(--primary-navy);
  font-weight: 600;
  padding: 8px 48px;
  background: var(--neutral-light-gray);
  border-radius: 20px;
}


/* ホバーエフェクト */
.person-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  border-color: var(--primary-blue);
}

.person-image:hover .person-photo {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.person-image:hover .person-photo::before {
  background: linear-gradient(135deg, transparent 0%, rgba(43, 92, 230, 0.2) 100%);
}

.person-image:hover .person-photo img {
  transform: scale(1.02);
}

/* セクション矢印 */
.section-arrow {
  text-align: center;
  margin-top: 60px;
}

.arrow-down-large {
  display: inline-block;
  margin-bottom: 24px;
  animation: bounce-large 2s infinite;
}

@keyframes bounce-large {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

.arrow-text {
  width: 1000px;
  font-size: var(--text-h2);
  color: var(--primary-navy);
  border: 5px solid  var(--primary-navy);
  border-radius: 12px;
  background: var(--neutral-white);
  font-weight: 700;
  margin: 0 auto;
  padding:24px 0;
}

/* ホバーエフェクト強化 */
.card-problem:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(229, 62, 62, 0.15);
}


.solution {
  background: var(--neutral-light-gray);
}

/* ソリューション相談セクション - ブラッシュアップ版 */

.solution-consultation-section {
    padding: 100px 0;
    background: var(--primary-navy);
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

/* タイトル・サブタイトル（中央揃え1カラム） */
.consultation-header {
    margin-bottom: 60px;
    text-align: center;
}

.consultation-title {
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 32px;
    line-height: 1.4;
}

.consultation-description {
    font-size: var(--text-body-large);
    line-height: 1.8;
    color: var(--neutral-light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* 2カラムレイアウト - バランス調整 */
.consultation-two-column {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:36px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 左カラム：女性画像（拡大） */
.consultation-left-column {
    order: 2;
    display: flex;
    justify-content: center;
}

.consultation-guide-woman {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


/* 女性画像（大幅拡大） */
.consultation-guide-image-fixed {
    width: 100%;
    max-width: 400px;
}

.consultation-guide-image-fixed img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    transition: var(--transition-base);
}

/* 右カラム：CTAコンテンツ */
.consultation-right-column {
    order: 1;
    display: flex;
    justify-content: center;
}

.consultation-cta-content {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* ボタンコンテナ - 間隔調整 */
.consultation-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

/* 相談ボタン関連の修正CSS */
.consultation-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.consultation-btn-inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px; /* アイコンとテキストの間隔を統一 */
}

.consultation-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0; /* アイコンのサイズを固定 */
    color: white;
}

.consultation-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.consultation-btn-main {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2px;
}

.consultation-btn-sub {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
    line-height: 1.2;
}

.consultation-btn-inquiry {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A50 100%);
    margin-bottom: 12px;
}

.consultation-btn-phone {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.consultation-btn:hover .consultation-btn-icon {
    background-color: rgba(255, 255, 255, 0.3);
}

/* FontAwesome特有の調整 */
.consultation-btn-icon i {
    line-height: 1;
    vertical-align: middle;
}

/* 営業時間とその他のスタイル */
.phone-info {
    text-align: center;
    margin: 16px 0;
}

.phone-time {
    font-size: 14px;
    color: #666;
}

.consultation-note-box {
    background-color: #f8f9fa;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

.consultation-note {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.consultation-note strong {
    color: #007bff;
    font-size: 16px;
}

/* ホバーエフェクト */
.consultation-guide-woman:hover .consultation-guide-speech {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 92, 230, 0.2);
}

.consultation-guide-woman:hover .consultation-guide-image-fixed img {
    transform: scale(1.02);
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .consultation-container {
        max-width: 1000px;
    }
    
    .consultation-two-column {
        grid-template-columns: 350px 1fr;
        gap: 80px;
    }
    
    .consultation-guide-image-fixed {
        max-width: 320px;
    }
}

@media (max-width: 1024px) {
    .solution-consultation-section {
        padding: 80px 0;
    }
    
    .consultation-header {
        margin-bottom: 80px;
    }
    
    .consultation-two-column {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
    
    .consultation-guide-image-fixed {
        max-width: 280px;
    }
    
    .consultation-title {
        font-size: var(--text-h3);
    }
    
    .consultation-btn-inner {
        padding: 20px 28px;
        min-height: 72px;
        gap: 16px;
    }
    
    .consultation-btn-icon {
        font-size: 1.75rem;
        width: 40px;
        height: 40px;
    }
    
    .consultation-note-box {
        padding: 24px 0;
    }
}

@media (max-width: 768px) {
    .solution-consultation-section {
        padding: 60px 0 0;
    }
    
    .consultation-header {
        margin-bottom: 60px;
    }
    
    .consultation-two-column {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .consultation-guide-image-fixed {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .consultation-guide-speech {
        padding: 12px 18px;
        margin-bottom: 16px;
    }
    
    .consultation-guide-message {
        font-size: var(--text-small);
    }
    
    .consultation-title {
        font-size: var(--text-body-large);
        margin-bottom: 24px;
    }
    
    .consultation-description {
        font-size: var(--text-body);
    }
    
    .consultation-cta-content {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .consultation-btn-inner {
        padding: 18px 24px;
        min-height: 68px;
        gap: 14px;
    }
    
    .consultation-btn-main {
        font-size: var(--text-body);
    }
    
    .consultation-btn-sub {
        font-size: var(--text-small);
    }
    
    .consultation-btn-icon {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }
    
    .consultation-note-box {
        padding: 24px 0;
    }
    
    .phone-info {
        margin-bottom: 28px;
        padding: 10px 16px;
    }
    
    .phone-time {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .consultation-header {
        margin-bottom: 50px;
    }
    
    .consultation-two-column {
        gap: 40px;
    }
    
    .consultation-guide-image-fixed {
        max-width: 200px;
    }
    
    .consultation-guide-speech {
        padding: 10px 16px;
        margin-bottom: 14px;
    }
    
    .consultation-guide-message {
        font-size: 0.875rem;
        white-space: normal;
    }
    
    .consultation-title {
        font-size: var(--text-body);
    }
    
    .consultation-description {
        font-size: var(--text-small);
    }
    
    .consultation-cta-content {
        max-width: 100%;
    }
    
    .consultation-btn-inner {
        padding: 16px 20px;
        min-height: 64px;
        gap: 12px;
    }
    
    .consultation-btn-main {
        font-size: var(--text-small);
    }
    
    .consultation-btn-sub {
        font-size: 0.875rem;
    }
    
    .consultation-btn-icon {
        font-size: 1.25rem;
        width: 32px;
        height: 32px;
    }
    
    .consultation-note-box {
        padding: 20px 0;
    }
    
    .consultation-note {
        font-size: var(--text-body);
    }
    
    .consultation-note strong {
        font-size: var(--text-body-large);
    }
    
    .phone-time {
        font-size: 0.75rem;
    }
}

/* 機能説明セクション */
.features {
  background: var(--neutral-light-gray);
}

.features-content {
	text-align:center;
}

.features-image {
	margin-bottom: 60px;
}
.features-image img {
	width:100%;
}

.feature-point {
  margin-bottom: 40px;
}

.point-title {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-blue);
}

.feature-description {
  font-size: var(--text-body-large);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
}

.feature-description p {
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(transparent 60%, #ffeb3b 60%);
  color: var(--neutral-black);
  font-weight: 600;
}

/* 機能デモセクション - 画像アイコン対応版 */
.features-demo {
  text-align: center;
}

.demo-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px;
  background: var(--neutral-white);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.diagram-step {
  text-align: center;
  flex: 0 0 auto;
}

.step-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.step-icon img {
  width: 70px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-base);
}

.step-text {
  font-size: var(--text-body);
  color: var(--neutral-dark-gray);
  font-weight: 600;
  line-height: 1.4;
}

.diagram-arrow {
  font-size: 2rem;
  color: var(--primary-blue);
  font-weight: bold;
  flex: 0 0 auto;
  transition: var(--transition-base);
}

/* ホバーエフェクト */
.diagram-step:hover .step-icon img {
  transform: scale(1.1);
}

.diagram-step:hover .step-text {
  color: var(--primary-blue);
}

.demo-diagram:hover .diagram-arrow {
  color: var(--accent-orange);
  transform: translateX(5px);
}

/* 操作方法セクション - 新しい構成 */

/* プロセスセクション全体 */
.process-section {
  width: 900px;
  margin: 0 auto 80px;
}

.process-section:last-of-type {
  margin-bottom: 60px;
}

/* 2カラムグリッド */
.process-grid.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* 左側 - 動画プレースホルダー */
.process-left {
  display: flex;
  justify-content: center;
}

.video-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--neutral-light-gray) 0%, var(--neutral-white) 100%);
  border: 2px solid var(--neutral-gray);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.video-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-blue);
}

.video-content {
  text-align: center;
}



/* 右側 - ステップとハイライト */
.process-right {
  padding-left: 20px;
}

/* コンパクトなステップ表示 */
.steps-compact {
  margin-bottom: 40px;
}

.step-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--neutral-light-gray);
  border-radius: 12px;
  transition: var(--transition-base);
}

.step-compact:hover {
  background: var(--neutral-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.step-compact:last-child {
  margin-bottom: 0;
}

.step-indicator-compact {
  flex-shrink: 0;
}

.step-indicator-compact .step-number {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--neutral-white);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: var(--text-small);
  min-width: 80px;
  text-align: center;
}

.step-content-compact {
  width: 60%;
}

.step-title-compact {
  font-size: var(--text-body-large);
  font-weight: 600;
  margin: 0;
  color: var(--neutral-black);
}

/* UIハイライトボックス */
.ui-highlight {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
  color: var(--neutral-white);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(43, 92, 230, 0.3);
}
.ui-highlight.acceleration {
    padding: 48px;
	background: url(../images/st-images/icon1.png) 40px 50% no-repeat, linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
	background-size: 200px ,contain;
}
.ui-highlight.acceleration .ui-text {
	padding-left:120px;
}

.ui-text {
  font-size: var(--text-body-x-large);
  line-height: 1.8;
  margin: 0;
}
.ui-text.ai {
  padding-left:120px;
  background: url(../images/st-images/icon2.png) 0 50% no-repeat;
  background-size: contain;
}

/* 1カラム中央セクション */
.process-center {
  text-align: center;
  padding: 60px 0;
}

.arrow-down {
  margin-bottom: 32px;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.center-text {
  max-width: 600px;
  margin: 0 auto;
}

.process-description {
  font-size: var(--text-body-x-large);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding-bottom: 80px;
}

/* 結論コンテンツ */
.conclusion-content {
  width:1000px;
  margin:0 auto;
  padding: 32px;
  background: var(--neutral-white);
  border: 3px solid var(--primary-blue);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(43, 92, 230, 0.1);
  text-align: center;
}

.conclusion-text {
  font-size: var(--text-body-large);
  line-height: 1.8;
  color: var(--neutral-black);
  margin: 0;
}

/* ハイライト効果 */
.ui-highlight .highlight {
  background: linear-gradient(transparent 60%, var(--accent-orange) 60%);
  color: var(--neutral-white);
}

/* 完了メッセージ */
.steps-completion {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: var(--primary-blue);
  color: var(--neutral-white);
  border-radius: 16px;
}

.completion-text {
  font-size: var(--text-body-large);
  font-weight: 600;
  margin-bottom: 24px;
}

.completion-note {
  font-size: var(--text-body);
  opacity: 0.9;
}

/* メリットセクション */
.benefits {
  background: url(../images/st-images/BACK002.jpg) 50% 0 var(--neutral-light-gray);
  background-size: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.benefit-card {
  background: var(--neutral-white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-gray);
  transition: var(--transition-base);
  display: flex;
  gap: 30px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.benefit-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  color: var(--neutral-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-body);
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: var(--text-h3);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent-orange);
}

.benefit-subtitle {
  font-size: var(--text-body-large);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--neutral-black);
}

.benefit-description {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
  display: flex;
  flex-direction: column;
}

.benefit-arrow {
	align-self: center;
	font-weight: bold;
}
.benefit-scheme {
  font-weight: bold;
}


.benefits-summary {
  text-align: center;
  padding: 60px;
  background: var(--neutral-white);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.summary-text {
  font-size: var(--text-body-large);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
}

/* CTAセクション */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
  color: var(--neutral-white);
  text-align: center;
}

.cta-title {
  font-size: var(--text-h1);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--neutral-white);
}

.cta-subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--accent-orange);
}

.cta-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-info {
  margin-top: 40px;
}

.contact-text {
  font-size: var(--text-body-large);
  line-height: 1.8;
  opacity: 0.9;
}

/* ========================================
   FAQセクション
   ======================================== */

.faq-section {
  padding: var(--section-padding) 0;
  background: var(--neutral-light-gray);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--neutral-white);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-gray);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  gap: 20px;
  transition: var(--transition-base);
}

.faq-question:hover {
  background: var(--neutral-light-gray);
}

.faq-question.active {
  background: var(--primary-blue);
  color: var(--neutral-white);
}

.faq-question.active .faq-icon {
  background: var(--neutral-white);
  color: var(--primary-blue);
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-body);
  flex-shrink: 0;
}

.faq-question-text {
  flex: 1;
  font-size: var(--text-body-large);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--neutral-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-dark-gray);
  transition: var(--transition-base);
}

.faq-question.active .faq-toggle {
  background: var(--neutral-white);
  color: var(--primary-blue);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 32px 24px;
}

.faq-answer.active {
  display: flex;
  gap: 20px;
  animation: fadeInDown 0.3s ease-out;
}

.faq-answer .faq-icon {
  background: var(--accent-orange);
  margin-top: 8px;
}

.faq-answer-text {
  flex: 1;
  padding-top: 8px;
}

.faq-answer-text p {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--neutral-dark-gray);
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--neutral-gray);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================================
   お問い合わせセクション - 最適化統合版
   ======================================== */

.contact-section {
  padding: var(--section-padding) 0;
  background: var(--neutral-white);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--neutral-light-gray);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-row.full-width {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--neutral-black);
  position: relative;
}

.form-label.required::after {
  content: "必須";
  background: var(--accent-red);
  color: var(--neutral-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--neutral-gray);
  border-radius: 8px;
  font-size: var(--text-body);
  background: var(--neutral-white);
  transition: var(--transition-base);
  box-sizing: border-box;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(43, 92, 230, 0.1);
}

.contact-form .form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

/* お問い合わせフォーム専用ボタン */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A50 100%);
  color: var(--neutral-white);
  border: none;
  border-radius: 12px;
  font-size: var(--text-body-large);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 6px 20px rgba(230, 93, 43, 0.3);
  text-decoration: none;
  font-family: inherit;
  width: auto;
  box-sizing: border-box;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 137, 43, 0.4);
  color: var(--neutral-white);
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange) 100%);
}

.contact-submit-btn:focus {
  outline: none;
  box-shadow: 0 8px 30px rgba(230, 146, 43, 0.4), 0 0 0 3px rgba(230, 158, 43, 0.2);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-submit-btn .submit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-submit-btn .submit-text {
  font-weight: 600;
}

.form-note {
  font-size: var(--text-small);
  color: var(--neutral-dark-gray);
  text-align: center;
  margin: 0;
}

/* フッター - 修正版 */
.footer {
  background: var(--primary-navy);
  color: var(--neutral-white);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 背景装飾アイコン */
.footer-background-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.footer-bg-icon {
  position: absolute;
  opacity: 0;
  animation: fadeInFooterIcon 1s ease-out forwards;
}

.footer-bg-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.08;
  filter: brightness(0) invert(1);
}

.footer-bg-icon-pdf {
  top: 20%;
  left: 10%;
  transform: rotate(-20deg);
  animation-delay: 0.3s;
}

.footer-bg-icon-chart {
  top: 60%;
  right: 12%;
  transform: rotate(25deg);
  animation-delay: 0.8s;
}

.footer-bg-icon-ai {
  top: 40%;
  left: 15%;
  transform: rotate(15deg);
  animation-delay: 0.5s;
}

@keyframes fadeInFooterIcon {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(var(--rotate, 0deg));
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
}

/* フッターコンテンツ */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

/* CTAセクション */
.footer-cta {
  margin-bottom: 60px;
}

.footer-title {
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
  color: var(--neutral-white);
  position: relative;
  padding-bottom: 20px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 25%, 
    rgba(255, 255, 255, 0.3) 75%, 
    transparent 100%
  );
}

.footer-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: left;
  flex: 1;
  max-width: 400px;
  min-width: 280px;
  min-height: 70px;
  position: relative;
  overflow: hidden;
}

/* メール相談ボタン - より目立つデザイン */
.footer-cta-btn-inquiry {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A50 100%);
  color: var(--neutral-white);
  border: 2px solid var(--accent-orange);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    display: flex;
    justify-content:center;
    gap: 12px;
}

.footer-cta-btn-inquiry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.footer-cta-btn-inquiry:hover::before {
  left: 100%;
}

.footer-cta-btn-inquiry:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #FF8A50 0%, var(--accent-orange) 100%);
}

/* 電話相談ボタン - 控えめなデザイン */
.footer-cta-btn-phone {
  background: transparent;
  color: var(--neutral-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    gap: 12px;
}


.footer-cta-btn-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neutral-white);
  transform: translateY(-2px);
}

.footer-cta-icon {
  font-size: var(--text-h2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.footer-cta-content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.footer-cta-main {
  font-size: var(--text-body-large);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-cta-sub {
  font-size: var(--text-body);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-cta-time {
  font-size: var(--text-xx-small);
  opacity: var(--neutral-light-gray);
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 企業情報セクション */
.footer-company {
  margin-bottom: 50px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-name {
  margin-bottom: 24px;
}

.company-name h3 {
  font-size: var(--text-body-large);
  font-weight: 700;
  color: var(--neutral-white);
  margin: 0;
}

.company-addresses {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-address {
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--neutral-white);
  opacity: 0.9;
}

.company-address strong {
  color: var(--accent-orange);
  font-weight: 600;
  display: inline-block;
  min-width: 120px;
}

/* フッター情報セクション */
.footer-info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text {
  color: var(--neutral-white);
  font-size: var(--text-body-large);
  font-weight: 700;
}

.footer-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-small);
}

.footer-info p {
  margin: 0;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.delay-200 {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.delay-400 {
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
  .hero-bg-icon img {
    width: 100px;
    height: 100px;
  }
  
  .footer-bg-icon img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1024px) {
  :root {
    --text-hero: 3rem;
    --text-h1: 2.8rem;
    --text-h2: 2.2rem;
    --text-h3: 1.8rem;
    --section-padding: 80px;
  }
  
  .container {
    padding: 0 32px;
  }
  
  .hero-video-placeholder {
    max-width: 700px;
  }
  
  .hero-video-placeholder .play-button svg {
    width: 56px;
    height: 56px;
  }
  
  .hero-bg-icon img {
    width: 80px;
    height: 80px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .demo-diagram {
    gap: 32px;
    padding: 50px;
  }
  
  .step-icon {
    height: 80px;
  }
  
  .step-icon img {
    width: 60px;
    max-height: 60px;
  }
  
  .step-text {
    font-size: var(--text-small);
  }
  
  .diagram-arrow {
    font-size: 1.75rem;
  }
  
  .problems-person {
    margin-top: 60px;
    margin-bottom: 50px;
  }
  
  .person-image {
    max-width: 600px;
    padding: 40px;
    gap: 40px;
  }
  
  .person-photo {
    width: 100px;
    height: 100px;
  }
  
  .speech-text {
    font-size: var(--text-body);
  }
  
  .consultation-container {
    max-width: 900px;
  }
  
  .consultation-header {
    margin-bottom: 60px;
  }
  
  .consultation-two-column {
    gap: 60px;
  }
  
  .consultation-guide-image-fixed {
    max-width: 280px;
  }
  
  .consultation-title {
    font-size: var(--text-h3);
  }
  
  .consultation-btn {
    padding: 18px 24px;
  }
  
  .consultation-note-box {
    padding: 28px;
  }
  
  .process-grid.two-column {
    gap: 60px;
  }
  
  .process-right {
    padding-left: 0;
  }
  
  .contact-form-wrapper {
    padding: 50px;
  }
  
  .footer {
    padding: 60px 0 50px;
  }
  
  .footer-title {
    font-size: var(--text-body-large);
    margin-bottom: 32px;
  }
  
  .footer-cta {
    margin-bottom: 50px;
  }
  
  .footer-cta-btn {
    min-width: 260px;
    padding: 18px 28px;
  }
  
  .footer-company {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --text-hero: 1.7rem;
    --text-h1: 1.6rem;
    --text-h2: 1.5rem;
    --text-h3: 1.4rem;
    --text-body-x-large: 1.3rem;
    --text-body-large: 1.2rem;
    --text-body: 1.1rem;
    --text-small: 1rem;
    --text-x-small: 0.9rem;
    --text-xx-small: 0.8rem;
    --section-padding: 40px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero-demo {
    padding-left:12px;
    padding-right:12px;
  }
  
  .hero-video-placeholder {
    max-width: 100%;
    border-radius: 16px;
  }
  
  .hero-video-placeholder .play-button {
    margin-bottom: 20px;
  }
  
  .hero-video-placeholder .play-button svg {
    width: 48px;
    height: 48px;
  }
  
  .hero-video-placeholder .video-label {
    font-size: var(--text-body);
  }
  
  .hero-video-placeholder .video-description {
    font-size: var(--text-small);
  }
  
  .hero-bg-icon img {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 400px;
  }
  
  .nav {
    display: none;
  }
  
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .problems-person {
    margin-top: 50px;
    margin-bottom: 40px;
  }
  
  .person-image {
    flex-direction: column;
    gap: 32px;
    max-width: 450px;
    padding: 32px;
    height: 300px;
  }
  
  .person-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  
  .person-speech {
    padding-left: 0;
  }
  
  .person-speech::before {
    display: none;
  }
  
  .speech-text {
    font-size: var(--text-body);
    margin-bottom: 16px;
  }
  
  .speech-label {
    margin: 0 auto;
    text-align: center;
  }
  
  .demo-diagram {
    flex-direction: column;
    gap: 24px;
    padding: 40px;
  }
  
  .diagram-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
  
  .step-icon {
    height: 70px;
  }
  
  .step-icon img {
    width: 50px;
    max-height: 50px;
  }
  
  .demo-diagram:hover .diagram-arrow {
    transform: rotate(90deg) translateY(5px);
  }
  
  .consultation-header {
    margin-bottom: 50px;
  }
  
  .consultation-two-column {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
  }
  
  .consultation-left-column,
  .consultation-right-column {
    justify-content: center;
  }
  
  .consultation-guide-image-fixed {
    max-width: 240px;
  }
  
  .consultation-guide-speech {
    padding: 16px 24px;
    margin-bottom: 20px;
  }
  
  .consultation-guide-message {
    font-size: var(--text-body);
  }
  
  .consultation-title {
    font-size: var(--text-body-large);
    margin-bottom: 24px;
  }
  
  .consultation-description {
    font-size: var(--text-body);
  }
  
  .consultation-cta-content {
    max-width: 100%;
  }
  
  .consultation-buttons {
    gap: 20px;
  }
  
  .consultation-btn {
    padding: 16px 24px;
  }
  
  .consultation-btn-main {
    font-size: var(--text-body);
  }
  
  .consultation-btn-sub {
    font-size: var(--text-small);
  }
  
  .consultation-note-box {
    padding: 24px;
  }
  
  .phone-info {
    margin-top: -2px;
    margin-bottom: 32px;
    padding-left: 32px;
  }
  
  .phone-time {
    font-size: 0.75rem;
  }
  
  .process-section {
    width: 100%;
    margin-bottom: 60px;
  }
  
  .process-grid.two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .video-placeholder {
    max-width: 100%;
  }
  
  .step-compact {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  
  .step-indicator-compact .step-number {
    min-width: auto;
    width: 100px;
  }
  
  .ui-highlight {
    padding: 24px;
  }
  
  .ui-text {
    font-size: var(--text-small);
  }
  
  .conclusion-content {
    padding: 24px;
  }
  
  .conclusion-text {
    font-size: var(--text-body);
  }
  
  .process-center {
    padding: 40px 0;
  }
  
  .process-description {
    font-size: var(--text-body);
    padding-bottom: 60px;
  }
  
  .steps-completion {
    padding: 40px 24px;
    margin-top: 60px;
  }
  
  .completion-text {
    font-size: var(--text-body);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 12px;
    gap: 8px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form-wrapper {
    padding: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-form {
    gap: 24px;
  }
  
  .contact-submit-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 32px;
  }
  
  .contact-form .form-input,
  .contact-form .form-textarea {
    padding: 14px;
  }
  
  .footer {
    padding: 50px 0 40px;
  }
  
  .footer-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .footer-cta-btn {
    width: 100%;
    max-width: 350px;
    min-width: 280px;
    height: 56px;
    min-height: 65px;
    padding: 14px 24px;
  }
  
  .footer-cta-main {
    font-size: 1rem;
  }
  
  .footer-cta-sub {
    font-size: 0.875rem;
  }
  
  .footer-info-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-title {
    font-size: var(--text-body);
  }
  
  .footer-cta {
    margin-bottom: 40px;
  }
  
  .footer-company {
    padding: 24px;
    margin-bottom: 40px;
  }
  
  .company-address {
    font-size: var(--text-small);
    line-height: 1.7;
  }
  
  .company-address strong {
    display: block;
    margin-bottom: 4px;
    min-width: auto;
  }
  
  .footer-cta-time {
    font-size: 0.75rem;
  }
  
  .card {
    padding: 24px;
  }
  
  .problem-list li {
    font-size: var(--text-small);
  }
  
  .section-arrow {
    margin-top: 40px;
  }
  
  .arrow-down-large svg {
    width: 60px;
    height: 60px;
  }
  
  .arrow-text {
    width: 100%;
    font-size: var(--text-body);
  }
}

@media (max-width: 480px) {
  .hero-video-placeholder {
    border-radius: 12px;
  }
  
  .hero-video-placeholder .play-button svg {
    width: 40px;
    height: 40px;
  }
  
  .hero-background-icons {
    display: none;
  }
  
  .person-image {
    max-width: 100%;
    padding: 24px;
    margin: 0 20px;
    gap: 24px;
  }
  
  .person-photo {
    width: 64px;
    height: 64px;
  }
  
  .speech-text {
    font-size: var(--text-small);
    line-height: 1.7;
  }
  
  .speech-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .demo-diagram {
    padding: 32px 20px;
    gap: 20px;
  }
  
  .step-icon {
    height: 60px;
  }
  
  .step-icon img {
    width: 45px;
    max-height: 45px;
  }
  
  .step-text {
    font-size: 0.875rem;
  }
  
  .diagram-arrow {
    font-size: 1.25rem;
  }
  
  .consultation-header {
    margin-bottom: 40px;
  }
  
  .consultation-two-column {
    gap: 16px;
  }
  
  .consultation-guide-speech {
    padding: 14px 20px;
    margin-bottom: 16px;
  }
  
  .consultation-guide-message {
    font-size: var(--text-small);
    white-space: normal;
  }
  
  .consultation-title {
    font-size: var(--text-body);
  }
  
  .consultation-description {
    font-size: var(--text-small);
  }
  
  .consultation-btn {
    padding: 14px 20px;
    gap: 12px;
  }
  
  .consultation-btn-icon {
    font-size: 1.25rem;
  }
  
  .consultation-btn-main {
    font-size: var(--text-small);
  }
  
  .consultation-btn-sub {
    font-size: 0.75rem;
  }
  
  .consultation-note-box {
    padding: 20px;
  }
  
  .consultation-note {
    font-size: var(--text-body);
  }
  
  .consultation-note strong {
    font-size: var(--text-body-large);
  }
  
  .phone-time {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .step-compact {
    padding: 16px;
  }
  
  .ui-highlight {
    padding: 10px 10px;
  }
  
  .conclusion-content {
    padding: 20px;
  }
  
  .steps-completion {
    padding: 32px 20px;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .contact-form .form-input,
  .contact-form .form-textarea {
    padding: 12px;
  }
  
  .contact-submit-btn {
    padding: 14px 28px;
    font-size: var(--text-body);
    max-width: 280px;
  }
  
  .contact-submit-btn .submit-icon {
    font-size: 1rem;
  }
  
  .footer {
    padding: 40px 0 32px;
  }
  
  .footer-cta-btn {
    max-width: 300px;
    height: 52px;
    padding: 12px 20px;
    gap: 12px;
  }
  
  .footer-cta-icon {
    font-size: 1rem;
  }
  
  .footer-cta-main {
    font-size: var(--text-body);
  }
  
  .footer-cta-sub {
    font-size: var(--text-small);
  }
  
  .footer-cta-time {
    font-size: 0.75rem;
  }
  
  .footer-logo .logo-text {
    font-size: var(--text-body);
  }
  
  .footer-info {
    font-size: 0.75rem;
  }
  
  .footer-company {
    padding: 20px;
  }
  
  .company-name h3 {
    font-size: var(--text-body);
  }
  
  .company-address {
    font-size: 0.875rem;
  }
  
  .footer-background-icons {
    display: none;
  }
  
  .card-title {
    margin-bottom: 12px;
  }
  .problem-list li {
    padding-left: 8px;
    margin-bottom: 4px;
  }
  
  .problem-list li::before {
    width: 6px;
    height: 6px;
  }
  
  .arrow-down-large svg {
    width: 50px;
    height: 50px;
  }
}


/* ========================================
   スクロール追従下部CTA
   ======================================== */

.floating-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--neutral-gray);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 12px 0;
}

.floating-bottom-cta.show {
    transform: translateY(0);
    opacity: 1;
}

.floating-bottom-cta.hide-at-bottom {
    transform: translateY(100%);
    opacity: 0;
}

.floating-bottom-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 12px;
}

.floating-btn {
    flex: 1;
    background: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
}

.floating-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    min-height: 56px;
}

/* メールボタン - オレンジ */
.floating-btn-email {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A50 100%);
    color: var(--neutral-white);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.floating-btn-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.floating-btn-email:hover::before {
    left: 100%;
}

.floating-btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

/* 電話ボタン - ブルー */
.floating-btn-phone {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: var(--neutral-white);
    box-shadow: 0 4px 16px rgba(43, 230, 93, 0.3);
}

.floating-btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(43, 230, 68, 0.4);
    color: var(--neutral-white);
    text-decoration: none;
}

.floating-btn-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.floating-btn-text {
    font-size: var(--text-body);
    font-weight: 600;
    white-space: nowrap;
}

/* ========================================
   右端固定資料DLボタン
   ======================================== */

.floating-right-download {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-right-download.hide-at-bottom {
    transform: translateY(-50%) translateX(120%);
    opacity: 0;
}

.download-btn {
    background: linear-gradient(135deg, var(--accent-red) 0%, #E85A5A 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(229, 62, 62, 0.4);
    transition: var(--transition-base);
    overflow: hidden;
    position: relative;
    min-width: 80px;
    min-height: 100px;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.download-btn:hover::before {
    transform: translateX(100%);
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 32px rgba(229, 62, 62, 0.5);
}

.download-btn-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    position: relative;
    z-index: 1;
}

.download-icon {
    width: 1.75rem;
    aspect-ratio: 1/1;
    background:url(../images/st-images/icons/dl.png) 50% 50% no-repeat;
    background-size:contain;
    display: block;
    animation: bounce-download 2s infinite;
}

@keyframes bounce-download {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.download-text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.02em;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

@media (max-width: 768px) {
    .floating-bottom-container {
        max-width: 100%;
        padding: 0 16px;
        gap: 10px;
    }
    
    .floating-btn-content {
        padding: 14px 16px;
        min-height: 52px;
        gap: 6px;
    }
    
    .floating-btn-text {
        font-size: var(--text-small);
    }
    
    .floating-btn-icon {
        font-size: 1.125rem;
    }
    
    .floating-right-download {
        right: 16px;
    }
    
    .download-btn {
        min-width: 72px;
        min-height: 90px;
    }
    
    .download-btn-inner {
        padding: 14px 10px;
        gap: 6px;
    }
    
    .download-icon {
        font-size: 1.5rem;
    }
    
    .download-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-bottom-container {
        padding: 0 12px;
        gap: 8px;
    }
    
    .floating-btn-content {
        padding: 12px;
        min-height: 48px;
        gap: 4px;
    }
    
    .floating-btn-text {
        font-size: 0.875rem;
        line-height: 1.2;
    }
    
    .floating-btn-icon {
        font-size: 1rem;
    }
    
    .floating-right-download {
        right: 12px;
		display: none;
    }
    
    .download-btn {
        min-width: 64px;
        min-height: 80px;
    }
    
    .download-btn-inner {
        padding: 12px 8px;
        gap: 4px;
    }
    
    .download-icon {
        font-size: 1.25rem;
    }
    
    .download-text {
        font-size: 0.625rem;
    }
}

/* ========================================
   アニメーション強化
   ======================================== */

/* 下部CTAの初回表示アニメーション */
.floating-bottom-cta.show {
    animation: slideUpFade 0.4s ease-out;
}

@keyframes slideUpFade {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 右端ボタンの初回表示アニメーション */
.floating-right-download {
    animation: slideInRight 0.6s ease-out 1s both;
}

@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* ========================================
   アクセシビリティ考慮
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .floating-bottom-cta,
    .floating-right-download,
    .download-btn,
    .floating-btn {
        transition: none;
    }
    
    .download-icon {
        animation: none;
    }
    
    .floating-bottom-cta.show {
        animation: none;
    }
    
    .floating-right-download {
        animation: none;
    }
}

/* フォーカス状態のアクセシビリティ */
.floating-btn:focus-visible,
.download-btn:focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

.floating-btn-phone:focus-visible {
    outline-color: var(--primary-blue);
}




/* ========================================
   中間CTAセクション
   ======================================== */

.middle-cta-section {
    padding: 120px 0;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

/* メインコピー */
.middle-cta-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.middle-cta-title {
    font-size: var(--text-h3);
    font-weight: 700;
    line-height: 1.4;
    color: var(--neutral-white);
    margin-bottom: 32px;
}

.middle-cta-title-accent {
    font-size: var(--text-h2);
    color: var(--accent-yellow);
    display: block;
    margin-top: 16px;
}

.middle-cta-subtitle {
    font-size: var(--text-body-large);
    line-height: 1.8;
    color: var(--neutral-light-gray);
    margin: 0;
}

/* 2カラムレイアウト */
.middle-cta-two-column {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* 左カラム：女性画像 */
.middle-cta-left-column {
    display: flex;
    justify-content: center;
}

.middle-cta-guide-woman {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* 吹き出し */
.middle-cta-guide-speech {
    background: var(--neutral-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 14px 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(43, 92, 230, 0.15);
    z-index: 2;
}

.middle-cta-guide-speech::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--primary-blue) transparent transparent transparent;
}

.middle-cta-guide-speech::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: var(--neutral-white) transparent transparent transparent;
    z-index: 1;
}

.middle-cta-guide-message {
    font-size: var(--text-body);
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

/* 女性画像 */
.middle-cta-guide-image-fixed {
    width: 100%;
    max-width: 380px;
}

.middle-cta-guide-image-fixed img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    transition: var(--transition-base);
}

/* 右カラム：CTAコンテンツ */
		.middle-cta-right-column {
			order: 1;
			width:500px;
            display: flex;
            justify-content: center;
        }

        .middle-cta-content {
            width: 100%;
            max-width: 500px;
            text-align: center;
        }

        .middle-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 16px;
        }

        .middle-cta-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 16px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .middle-cta-btn-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 16px;
        }

        /* アイコン背景円の修正 */
        .middle-cta-btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            font-size: 20px;
            flex-shrink: 0;
            color: white;
        }

        /* FontAwesome アイコンの調整 */
        .middle-cta-btn-icon i {
            line-height: 1;
            vertical-align: middle;
        }

        .middle-cta-btn-content {
			width: 60%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .middle-cta-btn-main {
            font-size: var(--text-body-large);
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 2px;
        }

        .middle-cta-btn-sub {
            font-size: var(--text-body);
            font-weight: normal;
            opacity: 0.9;
            line-height: 1.2;
        }

        /* メール相談ボタン */
        .middle-cta-btn-inquiry {
            background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A50 100%);
            margin-bottom: 12px;
        }

        .middle-cta-btn-inquiry:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .middle-cta-btn-inquiry:hover .middle-cta-btn-icon {
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* 電話相談ボタン */
        .middle-cta-btn-phone {
            background: linear-gradient(135deg, #28a745, #1e7e34);
        }

        .middle-cta-btn-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            text-decoration: none;
        }

        .middle-cta-btn-phone:hover .middle-cta-btn-icon {
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* consultation-btnスタイルに合わせた営業時間とメッセージ */
        .middle-cta-phone-info {
            text-align: center;
            margin: 16px 0;
        }

        .middle-cta-phone-time {
            font-size: var(--text-small);
            color: var(--neutral-light-gray);
        }

        /* 無料相談メッセージ */
        .middle-cta-note-box {
            background-color: #f8f9fa;
            border: 2px solid #007bff;
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            margin-top: 20px;
        }

        .middle-cta-note {
            margin: 0;
            color: var(--neutral-dark-gray);
            font-size: var(--text-x-small);
            line-height: 1.5;
        }

        .middle-cta-note strong {
            color: var(--primary-blue);
            font-size: var(--text-body-large);
        }

/* ホバーエフェクト */
.middle-cta-guide-woman:hover .middle-cta-guide-speech {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 92, 230, 0.2);
}

.middle-cta-guide-woman:hover .middle-cta-guide-image-fixed img {
    transform: scale(1.02);
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .middle-cta-two-column {
        grid-template-columns: 350px 1fr;
        gap: 80px;
    }
    
    .middle-cta-guide-image-fixed {
        max-width: 320px;
    }
}

@media (max-width: 1024px) {
    .middle-cta-section {
        padding: 80px 0;
    }
    
    .middle-cta-header {
        margin-bottom: 80px;
    }
    
    .middle-cta-two-column {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
    
    .middle-cta-guide-image-fixed {
        max-width: 280px;
    }
    
    .middle-cta-title {
        font-size: var(--text-h3);
    }
    
    .middle-cta-btn-inner {
        padding: 20px 28px;
        min-height: 72px;
        gap: 16px;
    }
    
    .middle-cta-btn-icon {
        font-size: 1.75rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .middle-cta-section {
        padding: 60px 0 0;
    }
    
    .middle-cta-header {
        margin-bottom: 60px;
    }
    
    .middle-cta-two-column {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .middle-cta-left-column {
    }
    
    .middle-cta-right-column {
		width: 100%;
   }
    
    .middle-cta-guide-image-fixed {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .middle-cta-guide-speech {
        padding: 12px 18px;
        margin-bottom: 16px;
    }
    
    .middle-cta-guide-message {
        font-size: var(--text-small);
    }
    
    .middle-cta-title {
        font-size: var(--text-body-large);
        margin-bottom: 24px;
    }
    
    .middle-cta-subtitle {
        font-size: var(--text-body);
    }
    
    .middle-cta-content {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .middle-cta-btn-inner {
        padding: 18px 24px;
        min-height: 68px;
        gap: 14px;
    }
    
    .middle-cta-btn-main {
        font-size: var(--text-body);
    }
    
    .middle-cta-btn-sub {
        font-size: var(--text-small);
    }
    
    .middle-cta-btn-icon {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }
    
    .middle-cta-phone-time {
        font-size: var(--text-small);
    }
}

@media (max-width: 480px) {
	.middle-cta-btn {
		padding:0;
	}
    .middle-cta-header {
        margin-bottom: 50px;
    }
    
    .middle-cta-two-column {
        gap: 40px;
    }
    
    .middle-cta-guide-image-fixed {
        max-width: 200px;
    }
    
    .middle-cta-guide-message {
        font-size: 0.875rem;
        white-space: normal;
    }
    
    .middle-cta-title {
        font-size: var(--text-body);
    }
    
    .middle-cta-subtitle {
        font-size: var(--text-small);
    }
    
    .middle-cta-content {
        max-width: 100%;
    }
    
    .middle-cta-btn-inner {
        padding: 16px 20px;
        min-height: 64px;
        gap: 12px;
    }

	.middle-cta-btn-content {
		width: 65%;
	}
    
    .middle-cta-note {
        font-size: var(--text-body);
    }
    
    .middle-cta-note strong {
        font-size: var(--text-body-large);
    }
    
    .middle-cta-phone-time {
        font-size: var(--text-x-small);
    }
}
/* Hero button icons */
.hero-buttons .btn i {
    margin-right: 8px;
    font-size: 1.25em;
    vertical-align: middle;
}




@media (min-width: 769px) {
	.sp {
		display: none;
	}
}

@media (max-width: 768px) {
	.pc {
		display: none;
	}

	.footer-cta-icon {
		font-size: var(--text-h1);
	}

	.hero {
		padding: 100px 0 120px;
		background-size: 240%;
		background-position: -180px 100%;
	}

	.hero-badge {
		margin-bottom: 8px;
	}
	.badge-text {
		font-size: var(--text-body-large);
	}
	.hero-title {
		font-size: var(--text-h1);
	}
	.title-main {
		margin-bottom: 8px;
	}

	.hero-subtitle {
		font-size: var(--text-small);
		margin-bottom: 24px;
	}
	.hero-buttons {
		gap: 24px;
	}


	.speech-text .p {
	  text-indent: calc( -1 * var(--text-small) );
	  padding-left: var(--text-small);
	}
	.speech-label span {
		font-size: var(--text-x-small);
		padding: 4px 48px;
	}

	.person-image {
		margin:0;
		padding: 24px 0;
		background-position: 50% 100%;
		background-size: 140px;
	}
	.person-image.after {
		padding: 24px 0;
	}

	.point-title {
		font-size: var(--text-h3);
	}
	.feature-description {
		font-size: var(--text-small);
	}

	.consultation-container {
		padding:0 12px;
	}


	.step-compact {
		gap:8px;
	}
	.step-content-compact {
		width:100%;
	}
	.step-title-compact {
		font-size: var(--text-body);
	}

	.ui-highlight.acceleration {
		padding:32px 6px;
		background: url(../images/st-images/icon1.png) 0 100% no-repeat, linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
		background-size: 120px ,contain;
	}
	.ui-highlight.acceleration .ui-text {
		padding-left: 80px;
	}

	.ui-text.ai {
		padding-left: 60px;
		background-position:0 0;
		background-size: 60px;
		font-size: var(--text-small);
		line-height: 1.7;
	}

	.benefit-number {
		margin-top: -40px;
		margin-left: -20px;
	}

	.benefit-description {
	  font-size: var(--text-small);
	}

	.middle-cta-title-accent {
		font-size: var(--text-h3);
	}

	.section-title {
		margin-bottom:60px;
	}
	.faq-question {
		padding: 24px 12px;
		gap: 8px;
	}
	.faq-question-text {
		font-size: var(--text-body);
	}

	.faq-answer {
	    padding: 12px 12px 24px 12px;
		gap: 8px;
	}
	.faq-answer-text p {
		font-size: var(--text-small);
		line-height: 1.6;
	}
}





