/*
Theme Name: fact
Theme URI: http://fact.local/
Author: あなたの名前
Author URI: http://example.com
Description: ファクタリング一括見積用のオリジナルテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: fact
*/

/* フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

/* リセットスタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 游ゴシック体,yu-gothic-pr6n, sans-serif;
}

body {
 font-family: yu-gothic-pr6n, sans-serif;
 font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  color: #4b4a4a;
}

/* ヘッダースタイル */

.hero-catchphrase{
  text-align: center;
  letter-spacing: 1px;
}

.hero-main-title{
  text-align: center;
  letter-spacing: 1px;
}

.hero-images-row-container{
  margin-top: 60px;
}

.highlight {
  background: linear-gradient(transparent 60%, #ffff00 60%);
  color: #474747;
}

.top-sentence{
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-right: 100px;
}

.text-large {
  font-size: 64px;
  font-weight: bold;
  color: #474747;
}

.hero-button-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.highlight-dots {
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.highlight-dots::before {
  content: "・";
  position: absolute;
  top: -0.9em;
  left: 50%;
  transform: translateX(-50%);
  color: black;
  font-size: 0.5em;
}

.header-container {
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo-link {
  text-decoration: none;
  display: inline-block;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-image {
  width: 320px;
  height: 120px;
  display: block;
  object-fit: contain;
}

/* ヘッダーCTAボタン */
.header-cta-wrapper {
  flex-shrink: 0;
}

.header-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FAA639;
  color: white;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 2px 3px #9C625A;
  transition: all 0.3s ease;
}

.header-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 165, 74, 0.5);
  background: linear-gradient(135deg, #F9B05A 0%, #F5A54A 100%);
}

.header-cta-text {
  white-space: nowrap;
}

.header-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.header-cta-arrow svg {
  width: 16px;
  height: 16px;
}

/* ヘッダー レスポンシブ（1440px以下） */
@media (max-width: 1440px) {
  .logo-image {
    width: 200px;
    height: 80px;
  }

  .logo-section {
    gap: 6px;
  }

  .header-cta-button {
    font-size: 14px;
    gap: 8px;
    border-radius: 10px;
  }

  .header-cta-button img {
    width: 28px;
    height: auto;
  }

  .header-cta-arrow {
    width: 28px;
    height: 28px;
  }

  .header-cta-arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .logo-image {
    width: 150px;
    height: 60px;
  }

  .header-cta-button {
    padding: 12px 20px;
    font-size: 12px;
    gap: 6px;
    border-radius: 8px;
  }

  .header-cta-button img {
    width: 24px;
    height: auto;
  }

  .header-cta-arrow {
    width: 24px;
    height: 24px;
  }

  .header-cta-arrow svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    width: 120px;
    height: 50px;
  }

  .header-cta-button {
    padding: 8px 12px;
    font-size: 11px;
  }

  .header-cta-button img {
    width: 20px;
    height: auto;
  }

  .header-cta-arrow {
    display: none;
  }
}

/* ヘッダーラッパー */
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}


/* ナビゲーションメニュー */
.main-navigation {
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 12px;
}

.nav-menu a:hover {
  color: #0066cc;
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* CTAボタン */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
 letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
  background: linear-gradient(135deg, #0088ff 0%, #0066cc 100%);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 102, 204, 0.4);
}

/* CTAボタンの配置 */
.cta-button {
  margin-left: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 80px 20px 20px;
    overflow-y: auto;
  }

  .main-navigation.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid #e5e5e5;
  }

  .nav-menu a {
    display: block;
    padding: 15px 10px;
    font-size: 16px;
  }

  /* CTAボタンのレスポンシブ対応 */
  .cta-button {
    display: none;
  }

  .header-content {
    gap: 16px;
  }

  .logo-image {
    width: 120px;
    height: 60px;
  }

  .header-container {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 16px;
  }

  .header-subtitle {
    font-size: 14px;
  }

  .header-title {
    font-size: 24px;
  }
}

/* ヒーローセクション */
.site-main {
  min-height: calc(100vh - 140px);
}

.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #1a1a1a;
}

.hero-highlight {
  background: linear-gradient(90deg, #0066cc, #0088ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 24px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-tagline {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}

.brand-name {
  font-weight: 700;
  color: #0066cc;
  font-size: 24px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-button {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.hero-button.primary {
  background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.hero-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.hero-button.secondary {
  background: white;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.hero-button.secondary:hover {
  background: #0066cc;
  color: white;
}

.hero-features {
  display: flex;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.feature-icon {
  flex-shrink: 0;
}

/* ビジュアルセクション */
.hero-visual {
  animation: slideInRight 0.8s ease-out;
  position: relative;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

/* フローティングカード */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-card 3s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-card.top-card {
  top: 30px;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.bottom-card {
  bottom: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-text strong {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}

.card-text span {
  font-size: 12px;
  color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .hero-image-wrapper {
    margin-top: 20px;
  }

  .floating-card {
    padding: 12px 16px;
  }

  .floating-card.top-card {
    top: 20px;
    left: 10px;
  }

  .floating-card.bottom-card {
    bottom: 20px;
    right: 10px;
  }

  .card-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .card-text strong {
    font-size: 14px;
  }

  .card-text span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .header-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .header-subtitle {
    font-size: 12px;
  }

  .header-title {
    font-size: 20px;
  }
}

/* フォームセクション */
.form-section {
  padding: 0 ;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 16px;
  color: #666;
}

.simple-form {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.simple-form-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.required {
  font-size: 11px;
  color: white;
  background: #ff4444;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.optional {
  font-size: 11px;
  color: #666;
  background: #e5e5e5;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
}

.form-input.large,
.form-select.large {
  padding: 20px 24px;
  font-size: 18px;
  border-radius: 12px;
  border-width: 3px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.input-with-unit {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-unit .form-select {
  width: 100%;
}

.input-unit {
  position: absolute;
  right: 16px;
  color: #666;
  font-size: 14px;
  pointer-events: none;
}

.form-agreement {
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

.checkbox-text .link {
  color: #0066cc;
  text-decoration: underline;
}

.form-submit {
  text-align: center;
  margin-bottom: 20px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
  color: white;
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
  width: 100%;
  max-width: 400px;
}

.submit-button.large {
  padding: 24px 48px;
  font-size: 20px;
  max-width: none;
  border-radius: 60px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-icon {
  width: 20px;
  height: 20px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 20px;
}

/* フォームのレスポンシブ対応 */
@media (max-width: 768px) {
  .form-section {
    padding: 60px 0;
  }

  .simple-form {
    padding: 30px 20px;
  }

  .form-input.large,
  .form-select.large {
    padding: 16px 20px;
    font-size: 16px;
  }

  .submit-button.large {
    padding: 20px 32px;
    font-size: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 24px;
  }

  .submit-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/* 手数料比較セクション */
.comparison-section {
  padding: 80px 0;
  background: white;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.comparison-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 10px;
}

.comparison-highlight {
  font-size: 18px;
  color: #0066cc;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  background: white;
  border-color: #0066cc;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(0, 102, 204, 0.2);
  transform: scale(1.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.4;
}

.feature-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* 比較セクションのレスポンシブ対応 */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 60px 0;
  }

  .comparison-title {
    font-size: 28px;
  }

  .comparison-subtitle {
    font-size: 18px;
  }

  .comparison-highlight {
    font-size: 16px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 14px;
  }
}

/* 見積もり相談ボタンセクション */
.consultation-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  text-align: center;
}

.consultation-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.consultation-content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.consultation-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.3;
}

.consultation-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.consultation-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
  position: relative;
  overflow: hidden;
}

.consultation-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.4);
  color: white;
  text-decoration: none;
}

.consultation-button:active {
  transform: translateY(0);
}

.consultation-button::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;
}

.consultation-button:hover::before {
  left: 100%;
}

.consultation-icon {
  transition: transform 0.3s ease;
}

.consultation-button:hover .consultation-icon {
  transform: translateX(4px);
}

/* 見積もり相談ボタンセクションのレスポンシブ対応 */
@media (max-width: 768px) {
  .consultation-section {
    padding: 60px 0;
  }

  .consultation-content {
    padding: 40px 20px;
    margin: 0 20px;
  }

  .consultation-title {
    font-size: 28px;
  }

  .consultation-subtitle {
    font-size: 16px;
  }

  .consultation-button {
    font-size: 16px;
    padding: 18px 32px;
    width: 100%;
    justify-content: center;
  }
}

/* 相談者様の声セクション（スライダー版） */
.testimonials-section {
  padding: 70px 0;
  background-color: #f8fafb;
}

.testimonials-section .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.testimonials-section .section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
}

/* スライダーコンテナ */
.testimonials-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Case番号 */
.case-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #0066cc;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 調達金額エリア */
.amount-area {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 24px;
}

.amount-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.amount-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.amount-unit {
  font-size: 16px;
  margin-left: 4px;
}

/* コンテンツエリア */
.testimonial-content {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 詳細情報 */
.testimonial-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-details dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.testimonial-details dt {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.testimonial-details dd {
  font-size: 16px;
  font-weight: 600;
  color: #0066cc;
  margin: 0;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* スライダーコントロール */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 3;
  transform: translateY(-50%);
}

.slider-prev, .slider-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #0066cc;
  color: #0066cc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover, .slider-next:hover {
  background: #0066cc;
  color: white;
  transform: scale(1.1);
}

/* ドットインジケーター */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #0066cc;
  transform: scale(1.2);
}

/* タブレット対応 */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-section .section-title {
    font-size: 28px;
  }

  .testimonials-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .testimonial-card {
    padding: 24px;
    max-width: 350px;
  }

  .testimonial-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonial-details {
    width: 100%;
  }

  .amount-value {
    font-size: 28px;
  }

  .slider-controls {
    padding: 0 10px;
  }

  .slider-prev, .slider-next {
    width: 40px;
    height: 40px;
  }
}

/* スマホ対応 */
@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 16px;
  }

  .testimonials-section .section-title {
    font-size: 24px;
  }

  .testimonials-section .section-subtitle {
    font-size: 14px;
  }

  .testimonial-slide {
    padding: 0 10px;
  }

  .testimonial-card {
    padding: 20px;
    max-width: 300px;
  }

  .case-number {
    left: 10px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .amount-value {
    font-size: 24px;
  }

  .amount-unit {
    font-size: 14px;
  }

  .testimonial-image {
    width: 50px;
    height: 50px;
  }

  .testimonial-details dt {
    font-size: 11px;
  }

  .testimonial-details dd {
    font-size: 14px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .slider-prev, .slider-next {
    width: 36px;
    height: 36px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* ご利用までの流れセクション */
.process-section {
  padding: 80px 0;
  background-color: white;
  position: relative;
}

.process-section .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.process-section .section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border-radius: 50%;
  color: white;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.step-number span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
}

.step-number strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.step-image {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.step-image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.step-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 矢印のスタイル */
.process-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  pointer-events: none;
  padding: 0 120px;
}

.process-arrow {
  justify-self: center;
}

/* タブレット対応 */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 2fr);
    gap: 48px;
  }

  .process-arrows {
    display: none;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .process-section {
    padding: 60px 20px;
  }

  .process-section .section-title {
    font-size: 28px;
  }

  .process-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step {
    padding: 20px 10px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .step-number strong {
    font-size: 24px;
  }

  .step-image {
    height: 100px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-description {
    font-size: 13px;
  }

  /* モバイルでは縦の線を表示 */
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #0066cc 0%, transparent 100%);
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 40px 16px;
  }

  .process-section .section-title {
    font-size: 24px;
  }

  .process-section .section-subtitle {
    font-size: 14px;
  }

  .step-image {
    height: 80px;
  }
}

/* よくあるご質問セクション */
.faq-section {
  padding: 80px 0;
  background-color: #f8fafb;
}

.faq-section .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.faq-section .section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafb;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0066cc;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #666;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  display: flex;
  gap: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f0f8ff;
  color: #0066cc;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-answer p {
  flex: 1;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin: 0;
  padding-right: 48px;
}

/* タブレット対応 */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-section .section-title {
    font-size: 28px;
  }

  .faq-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-text {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
    padding-right: 32px;
  }
}

/* スマホ対応 */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 16px;
  }

  .faq-section .section-title {
    font-size: 24px;
  }

  .faq-section .section-subtitle {
    font-size: 14px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-question {
    padding: 16px;
    gap: 12px;
  }

  .faq-q, .faq-a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .faq-text {
    font-size: 14px;
  }

  .faq-answer {
    gap: 12px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 13px;
    padding-right: 0;
  }
}

/* フッターセクション */
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* フッターボトム */
.footer-bottom {
  padding: 30px 0;
  background-color: #1a1a1a;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.copyright {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.footer-links {
  font-size: 14px;
  color: #ccc;
}

/* タブレット対応 */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 60px;
  }

  .footer-bottom {
    padding: 25px 0;
  }

  .copyright {
    font-size: 13px;
  }

  .footer-links {
    font-size: 13px;
  }
}

/* スマホ対応 */
@media (max-width: 480px) {
  .site-footer {
    margin-top: 40px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-content {
    gap: 12px;
  }

  .copyright {
    font-size: 12px;
  }

  .footer-links {
    font-size: 12px;
  }
}

/* ========================================
   hero-new.css から統合
   ======================================== */

/* 新しいヒーローセクションのスタイル */
.hero-section-new {
  position: relative;
  overflow: hidden;
}

/* 斜めの背景デザイン */
.hero-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80%;
  width: 60%;
  height: 100%;
  background: #C4E6ED;
  transform: skewX(-30deg);
  transform-origin: top left;
  z-index: 0;
}

/* 2つ目の斜めデザイン */
.hero-section-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 30%;
  height: 100%;
  background: #F3FAFB;
  transform: skewX(-30deg);
  transform-origin: top left;
  z-index: 0;
}

.hero-container-new {
  position: relative;
  z-index: 1;
}

/* ロゴエリア */
.hero-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-logo {
  width: 50px;
  height: auto;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-small {
  font-size: 12px;
  color: #0066cc;
  font-weight: 500;
}

.logo-large {
  font-size: 24px;
  font-weight: 700;
  color: #0066cc;
}

/* メインコンテンツエリア */
.hero-main-content {
  display: grid;
  align-items: center;
}

/* 左側：キャッチコピーエリア */
.hero-left {
  position: relative;
}

/* 24時間365日受付中バッジ */
.hero-24-7-badge {
  display: inline-block;
  background-color: #FBD89D;
  color: #D73333;
  border: 3px solid #CD0000;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 0;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 40px;
}

.title-large {
  font-size: 48px;
  display: inline-block;
}

.highlight-yellow-underline {
  position: relative;
  display: inline-block;
}

.highlight-yellow-underline::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 16px;
  background: #faea39;
  z-index: -1;
}

/* 画像エリア */
.hero-images {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  margin-top: 40px;
  min-height: 500px;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  flex-shrink: 0;
  z-index: 2;
}

.phone-image {
  width: 500px;
  height: 100%;
  z-index: 1;
}

/* スマートフォン内のフォーム - 非表示 */
.phone-form-container {
  display: none;
}

/* ヒーロー画像横並び */
.hero-images-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 150px;
}

/* ========================================
   ヒーローセクション コンタクトフォーム
   ======================================== */
.hero-contact-form {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  width: 90%;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.hero-form-group {
  flex: 1;
}

.hero-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.hero-woman-img {
  width: 550px;
  height: 550px;
  margin-bottom: -100px;
}

.hero-phone-img {
  width: 450px;
  height: 550px;
  margin-bottom: -50px;
  margin-left: 100px;
}

.hero-required {
  color: #6abed0;
  background: white;
  border: 1px solid #6abed0;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.hero-select-group {
  display: flex;
  gap: 12px;
}

.hero-select-box {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  padding: 14px 24px;
  border: 3px solid #6abed0;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  flex: 1;
}

.hero-select-box:hover {
  background: #f0f9fb;
}

.hero-select-box input[type="radio"] {
  display: none;
}

.hero-select-box input[type="radio"]:checked+.hero-select-text {
  color: black;
}

.hero-select-box:has(input[type="radio"]:checked) {
  background: #6abed0;
  border-color: #6abed0;
}

.hero-select-text {
  font-weight: 600;
  font-size: 16px;
}

.hero-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-form-input {
  width: 100%;
  padding: 14px 50px 14px 16px;
  border: 3px solid #6abed0;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.hero-form-input:focus {
  border-color: #4aa8c0;
  box-shadow: 0 0 0 3px rgba(106, 190, 208, 0.2);
}

.hero-input-unit {
  position: absolute;
  right: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
}

.hero-form-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAA639;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 3px #9C625A;
  flex-shrink: 0;
  min-width: 350px;
}

.hero-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 166, 57, 0.5);
}

.hero-button-badge {
  background: #6abed0;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 15.1px;
  margin-bottom: 5px;
}

.hero-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hero-button-sub {
  font-size: 14px;
  font-weight: 500;
  color: black;
}

.hero-button-main {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .hero-contact-form {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .hero-form-group {
    flex: 1 1 45%;
    min-width: 200px;
  }

  .hero-form-button {
    flex: 1 1 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .hero-contact-form {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .hero-form-group {
    width: 100%;
  }

  .hero-form-label {
    font-size: 14px;
  }

  .hero-radio {
    font-size: 14px;
  }

  .hero-form-input {
    padding: 12px 45px 12px 14px;
    font-size: 14px;
  }

  .hero-form-button {
    width: 100%;
    padding: 16px 24px;
    min-width: auto;
    gap: 16px;
  }

  .hero-button-badge {
    font-size: 14px;
    padding: 10px 16px;
  }

  .hero-button-badge-sp {
    font-size: 14px;
    padding: 10px 16px;
  }

  .hero-button-sub {
    font-size: 12px;
  }

  .hero-button-sub-sp {
    font-size: 12px;
  }

  .hero-button-main {
    font-size: 18px;
  }

  .hero-form-button img {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .hero-contact-form {
    padding: 16px;
  }

  .hero-radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .hero-form-button {
    padding: 14px 20px;
    gap: 12px;
  }

  .hero-button-badge {
    font-size: 14px;
    padding: 8px 12px;
  }

  .hero-button-badge-sp {
    font-size: 14px;
    padding: 8px 12px;
  }

  .hero-button-sub {
    font-size: 12px;
  }

  .hero-button-sub-sp {
    font-size: 12px;
  }

  .hero-button-main {
    font-size: 16px;
  }

  .hero-form-button img {
    width: 40px;
  }
}

/* フォームグループ */
.form-group-hero-phone {
  margin-bottom: 8px;
}

.form-label-hero-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #333;
  font-weight: 600;
}

.required-badge-phone {
  background: #6abed0;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  flex-shrink: 0;
  border: 2px solid #6abed0;
}

.label-text-phone {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.form-input-hero-phone {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid #6abed0;
  border-radius: 16px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
  color: #333;
}

.form-input-hero-phone:focus {
  border-color: #4aa8c0;
  box-shadow: 0 0 0 3px rgba(106, 190, 208, 0.2);
}

.form-input-hero-phone::placeholder {
  color: #333;
  font-weight: 500;
}

/* 送信ボタン（スマホ用） */
.hero-submit-button-phone {
  width: 100%;
  background: linear-gradient(135deg, #faa639 0%, #f89820 100%);
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(250, 166, 57, 0.4);
  position: relative;
  overflow: visible;
  margin-top: 8px;
  text-decoration: none;
}

.hero-submit-button-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(250, 166, 57, 0.5);
}

.button-badge-phone {
  background: #6abed0;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-text-container-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  gap: 2px;
}

.button-text-main-phone {
  font-size: 10px;
  font-weight: 500;
  color: white;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.button-text-sub-phone {
  font-size: 16px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.button-arrow-phone {
  position: relative;
  right: 0;
  top: 0;
  transform: none;
  z-index: 1;
  flex-shrink: 0;
}

.business-woman {
  position: relative;
  width: 400px;
  height: 500px;
  flex-shrink: 0;
  z-index: 3;
  overflow: hidden;
  align-self: flex-end;
}

.woman-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* 右側：フォームエリア */
.hero-right {
  position: relative;
  z-index: 4;
}

.hero-form-card {
  background: white;
  border-radius: 32px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-group-hero {
  margin-bottom: 24px;
}

.form-label-hero {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #4b4a4a;
  font-weight: 600;
}


.label-text {
  font-size: 16px;
}

.form-input-hero {
  width: 100%;
  padding: 16px 20px;
  border: 3px solid #6abed0;
  border-radius: 16px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
}

.form-input-hero:focus {
  border-color: #0097a7;
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.form-input-hero::placeholder {
  color: #999;
}

/* 送信ボタン */
.hero-submit-button {
  width: 100%;
  background: #faa639;
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(250, 166, 57, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  text-decoration: none;
}

.hero-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fcb962;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-submit-button:hover::before {
  opacity: 1;
}

.hero-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(250, 166, 57, 0.5);
}

.button-badge {
  background: #6abed0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.button-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.button-text-main {
  font-size: 12px;
  font-weight: 400;
  color: white;
  position: relative;
  z-index: 1;
}

.button-text-sub {
  font-size: 18px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.button-arrow {
  position: relative;
  right: 0;
  top: 0;
  transform: none;
  z-index: 1;
  flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hero-main-content {
    grid-template-columns: 1fr;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .hero-main-title {
    font-size: 40px;
  }

  .hero-images {
    height: 350px;
  }

  .phone-mockup {
    width: 160px;
    height: 300px;
  }

  .phone-form-container {
    top: 50px;
    left: 16px;
    right: 16px;
    bottom: 24px;
    padding: 12px;
    gap: 8px;
  }

  .form-group-hero-phone {
    margin-bottom: 6px;
  }

  .form-label-hero-phone {
    font-size: 9px;
    gap: 4px;
    margin-bottom: 6px;
  }

  .required-badge-phone {
    font-size: 7px;
    padding: 3px 7px;
  }

  .label-text-phone {
    font-size: 10px;
  }

  .form-input-hero-phone {
    padding: 10px 12px;
    font-size: 10px;
    border: 2px solid #6abed0;
  }

  .button-text-main-phone {
    font-size: 7px;
  }

  .button-text-sub-phone {
    font-size: 12px;
  }

  .button-badge-phone {
    font-size: 12px;
    width: 38px;
    height: 38px;
    padding: 8px 10px;
  }

  .hero-submit-button-phone {
    padding: 8px 12px;
  }

  .button-arrow-phone {
    width: 16px;
    height: 16px;
  }

  .business-woman {
    width: 300px;
    height: 350px;
  }
}

/* PC/SP切り替え用 */
.hero-phone-img-sp {
  display: none;
}

.hero-phone-img-pc {
  display: block;
}

/* ボタン内の無料バッジとサブテキスト（PC版は非表示） */
.hero-button-badge-sp,
.hero-button-sub-sp {
  display: none;
}

/* モバイル用ヒーローセクション（1440px以下） */
@media (max-width: 1440px) {
  .hero-section-new {
    background: linear-gradient(180deg, #C4E6ED 0%, #F3FAFB 50%, #C4E6ED 100%);
  }

  .hero-section-new::before,
  .hero-section-new::after {
    display: none;
  }

  .hero-container-new {
    padding: 0;
  }

  /* PC用スマホ画像を非表示、SP用を表示 */
  .hero-phone-img-pc {
    display: none !important;
  }

  .hero-phone-img-sp {
    display: block !important;
  }

  /* 全体のレイアウト */
  .hero-images-row {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  /* キャッチコピーコンテナ */
  .hero-images-row-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* キャッチコピーテキストエリア */
  .hero-title-area {
    text-align: center;
    padding: 10px 16px 10px;
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .top-sentence {
    font-size: 30px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    text-align: center;
    padding:0;
  }

  .top-sentence .text-large {
    font-size: 36px;
  }

  /* 画像エリア（スマホと女性を横並び+点線） */
  .hero-image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0 10px;
    order: 2;
    margin: 0 auto;
  }


  /* SP用スマホ画像 */
  .hero-phone-img-sp {
    width: 40%;
    max-width: 250px;
    height: auto;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .hero-woman-img {
    width: 55%;
    max-width: 300px;
    height: auto;
    margin: 0;
  }

  /* フォームエリア */
  .hero-contact-form {
    flex-direction: column;
    padding: 24px 20px;
    border-radius: 24px;
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 3%;
    box-sizing: border-box;
    gap: 16px;
    box-shadow: 0 4px  rgba(0, 0, 0, 0.3);
  }

  .hero-form-group {
    width: 100%;
  }

  .hero-form-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hero-required {
    font-size: 11px;
    padding: 3px 10px;
  }

  .hero-select-group {
    gap: 10px;
  }

  .hero-select-box {
    padding: 12px 16px;
    border-width: 2px;
  }

  .hero-select-text {
    font-size: 14px;
  }

  .hero-form-input {
    padding: 12px 14px;
    font-size: 14px;
    border-width: 2px;
  }

  /* ボタンエリア - pre-faq-buttonと同じデザイン */
  .hero-button-top {
    display: none;
  }

  /* SP版のバッジとサブテキストを表示 */
  .hero-button-badge-sp,
  .hero-button-sub-sp {
    display: block;
  }

  .hero-form-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAA639;
    border: none;
    border-radius: 20px;
    padding: 16px 24px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 4px #9C625A;
    gap: 16px;
    width: 100%;
    max-width: none;
    margin: 0;
    min-width: auto;
    box-sizing: border-box;
  }

  .hero-form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 166, 57, 0.5);
  }

  .hero-button-badge-sp {
    background: #6abed0;
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 30px;
  }

  .hero-button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }

  .hero-button-sub-sp {
    font-size: 12px;
    font-weight: 500;
    color: white;
  }

  .hero-button-main {
    font-size: 18px;
    font-weight: 700;
    color: white;
  }

  .hero-form-button img {
    width: 40px;
    height: auto;
  }

  /* その他のヒーロー関連スタイル（768px） */
  .hero-main-content {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    gap: 12px;
  }

  .logo-main {
    font-size: 24px;
  }

  .hero-catchphrase {
    font-size: 18px;
  }

  .hero-main-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .hero-images {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .phone-mockup {
    position: relative;
    left: auto;
    bottom: auto;
    width: 280px;
    height: 520px;
  }

  .phone-form-container {
    top: 80px;
    left: 30px;
    right: 30px;
    bottom: 50px;
    padding: 24px;
    gap: 12px;
  }

  .form-group-hero-phone {
    margin-bottom: 4px;
  }

  .form-label-hero-phone {
    font-size: 11px;
    gap: 5px;
    margin-bottom: 7px;
  }

  .required-badge-phone {
    font-size: 9px;
    padding: 3px 9px;
  }

  .label-text-phone {
    font-size: 13px;
  }

  .form-input-hero-phone {
    padding: 13px 15px;
    font-size: 13px;
    border: 3px solid #6abed0;
  }

  .button-text-main-phone {
    font-size: 9px;
  }

  .button-text-sub-phone {
    font-size: 15px;
  }

  .button-badge-phone {
    font-size: 15px;
    width: 48px;
    height: 48px;
    padding: 11px 14px;
  }

  .hero-submit-button-phone {
    padding: 11px 15px;
  }

  .button-arrow-phone {
    width: 18px;
    height: 18px;
  }

  .business-woman {
    position: relative;
    right: auto;
    bottom: auto;
    width: 280px;
    height: 320px;
  }

  .hero-form-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .form-label-hero {
    font-size: 14px;
  }

  .form-input-hero {
    padding: 14px 16px;
    font-size: 14px;
  }

  .button-text-main {
    font-size: 16px;
  }

  .button-text-sub {
    font-size: 18px;
  }

  .hero-submit-button {
    padding: 10px 24px;
    flex-wrap: wrap;
  }

  .button-arrow {
    position: static;
    transform: none;
  }
}

@media (max-width: 480px) {
  .top-sentence {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 20px 0;
  }

  .top-sentence .text-large {
    font-size: 28px;
  }

  .hero-main-title {
    font-size: 28px;
  }

  .hero-images {
    height: auto;
    gap: 20px;
  }

  .phone-mockup {
    width: 260px;
    height: 480px;
  }

  .phone-form-container {
    top: 75px;
    left: 28px;
    right: 28px;
    bottom: 45px;
    padding: 20px;
    gap: 10px;
  }

  .form-group-hero-phone {
    margin-bottom: 3px;
  }

  .form-label-hero-phone {
    font-size: 10px;
    gap: 4px;
    margin-bottom: 6px;
  }

  .required-badge-phone {
    font-size: 8px;
    padding: 3px 8px;
  }

  .label-text-phone {
    font-size: 12px;
  }

  .form-input-hero-phone {
    padding: 12px 14px;
    font-size: 12px;
    border: 3px solid #6abed0;
  }

  .button-text-main-phone {
    font-size: 8px;
  }

  .button-text-sub-phone {
    font-size: 14px;
  }

  .button-badge-phone {
    font-size: 14px;
    width: 44px;
    height: 44px;
    padding: 10px 12px;
  }

  .hero-submit-button-phone {
    padding: 10px 14px;
  }

  .button-arrow-phone {
    width: 16px;
    height: 16px;
  }

  .business-woman {
    width: 260px;
    height: 300px;
  }

  .hero-form-card {
    padding: 24px 20px;
  }

  .button-text-main {
    font-size: 12px;
    text-shadow:
      1px 1px 0 #FF8C42,
      -1px -1px 0 #FF8C42,
      1px -1px 0 #FF8C42,
      -1px 1px 0 #FF8C42;
  }

  .button-text-sub {
    font-size: 18px;
    text-shadow:
      1px 1px 0 #FF8C42,
      -1px -1px 0 #FF8C42,
      1px -1px 0 #FF8C42,
      -1px 1px 0 #FF8C42;
  }
}

/* ========================================
   比較セクション（新デザイン）
   ======================================== */
.comparison-section-new {
  background: white;
  position: relative;
  overflow: hidden;
}

.comparison-container-new {
  margin: 0 auto;
}

/* 吹き出しエリア */
.comparison-bubble {
  background: #AAAAAA;
  border-radius: 0;
  padding: 40px 60px;
  position: relative;
  display: inline-block;
  margin: 0 auto 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.comparison-bubble-text {
  font-size: 40px;
  font-weight: 700;
  color: #474747;
  margin: 0;
  text-shadow: 0 0 4px rgba(71, 71, 71, 0.5);
}

.bubble-arrow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 30px solid #AAAAAA;
}

/* メインコンテンツ */
.comparison-main {
  text-align: center;
  padding: 50px 0 10px;
  background: white;
}

.comparison-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #6abed0;
  line-height: 1.4;
  letter-spacing: 1px;
}

/* ビルの画像コンテナ */
.building-images-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.building-image {
  max-width: 45%;
  height: 150px;
  object-fit: contain;
}

/* ビルのイラスト */
.buildings-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  height: 280px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.building {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 左のビル（水色） */
.building-left {
  z-index: 3;
}

.building-left .building-top {
  width: 40px;
  height: 30px;
  background: #5a7a8c;
  position: relative;
  margin-bottom: -5px;
}

.building-left .building-body {
  width: 140px;
  height: 180px;
  background: #6b96ac;
  position: relative;
}

.building-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 15px;
  height: 100%;
}

.window {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

/* 中央のビル（グレー） */
.building-center {
  z-index: 2;
}

.center-building {
  width: 120px;
  height: 160px;
  background: #7a8a9a;
}

/* 右のビル（ガラス張り） */
.building-right {
  z-index: 3;
}

.right-building {
  width: 160px;
  height: 200px;
  background: #8ab4c8;
}

.glass-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
}

.glass-pane {
  background: rgba(200, 230, 240, 0.8);
  border-radius: 4px;
}

/* 木 */
.tree {
  width: 30px;
  height: 60px;
  background: #4a9d7f;
  border-radius: 50% 50% 0 0;
  position: relative;
  align-self: flex-end;
  margin-bottom: 5px;
}

.tree::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 20px;
  background: #6b4e3d;
}

.tree-left-1 {
  z-index: 1;
  margin-right: -15px;
}

.tree-left-2 {
  z-index: 4;
  margin-right: 10px;
}

.tree-right-1 {
  z-index: 4;
  margin-left: 10px;
}

.tree-right-2 {
  z-index: 1;
  margin-left: -15px;
}

/* メリットセクション（新デザイン） */
.features-section-new {
  padding: 20px 0;
  padding-bottom: 80px;
}

.features-cards-vertical {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  padding-top: 100px;
  justify-content: center;
  align-items: flex-start;
}

.feature-card-new {
  width: 520px;
  flex: 0 0 520px;
}

.feature-card-new {
  position: relative;
  border: 4px solid #6abed0;
  border-radius: 15px;
  background: white;
  overflow: visible;
  display: flex;
}

.feature-card-new:last-child {
  margin-bottom: 50px;
}

/* アイコン円形 */
.feature-icon-circle {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  justify-content: center;
  z-index: 2;
  overflow: visible;
}

.feature-icon-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* カードコンテンツ */
.feature-card-content {
  padding-top: 100px;
}

.feature-title-area {
  background: white;
  height: 100px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 4px solid #6ABED0;
}

.feature-title-new {
  font-size: 25px;
  font-weight: 700;
  color: #4b4a4a;
  margin: 0;
}

.feature-description-area {
  background: #6ABED0;
  padding: 32px;
  font-size: 20px;
  height: 150px;
}

.feature-description-new {
  line-height: 1.8;
  color: white;
  margin: 0;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .features-cards-vertical {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .feature-card-new {
    width: 100%;
    max-width: 520px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .features-container-new {
    max-width: 800px;
  }

  .feature-icon-circle {
    width: 120px;
    height: 120px;
  }

  .feature-card-content {
    padding-top: 80px;
  }
  .feature-description-area {
    padding: 30px;
  }

}

@media (max-width: 480px) {

  .feature-card-content {
    padding-top: 70px;
  }
}

/* ========================================
   CTAセクション（新デザイン）
   ======================================== */
.cta-section-new {
  background: #6abed0;
  padding: 80px 0;
}

.cta-container-new {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 吹き出し */
.cta-speech-bubble {
  background: white;
  border-radius: 24px;
  padding: 32px 48px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 500px;
  margin: 0 auto;
}

.cta-bubble-text {
  font-size: 28px;
  font-weight: 700;
  color: #6abed0;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.bubble-arrow-down {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
}

/* 大きなCTAボタン */
.cta-button-large {
  width: 100%;
  max-width: 700px;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border-radius: 50px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button-large:hover::before {
  opacity: 1;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 152, 0, 0.5);
}

.cta-badge-free {
  background: white;
  color: #ff9800;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-text-small {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
}

.cta-text-large {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.cta-arrow-icon {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .cta-section-new {
    padding: 60px 0;
  }

  .cta-speech-bubble {
    padding: 24px 32px;
  }

  .cta-bubble-text {
    font-size: 22px;
  }

  .cta-button-large {
    padding: 20px 32px;
    flex-direction: column;
    gap: 16px;
  }

  .cta-badge-free {
    font-size: 18px;
    padding: 6px 20px;
  }

  .cta-text-small {
    font-size: 14px;
  }

  .cta-text-large {
    font-size: 24px;
  }

  .cta-arrow-icon {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-speech-bubble {
    padding: 20px 24px;
  }

  .cta-bubble-text {
    font-size: 18px;
  }

  .cta-text-large {
    font-size: 20px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .comparison-bubble-text {
    font-size: 24px;
  }

  .comparison-bubble {
    padding: 40px 30px;
  }

  .comparison-main-title {
    font-size: 32px;

  }

  .building-images-container {
    gap: 5px;
  }

  .building-image {
    max-width: 80%;
  }

  .buildings-illustration {
    height: 200px;
    gap: 10px;
  }

  .building-left .building-body {
    width: 100px;
    height: 130px;
  }

  .center-building {
    width: 80px;
    height: 110px;
  }

  .right-building {
    width: 110px;
    height: 140px;
  }

  .tree {
    width: 20px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .comparison-bubble-text {
    font-size: 20px;
  }

  .comparison-main-title {
    font-size: 28px;
  }

  .buildings-illustration {
    height: 150px;
    gap: 8px;
  }

  .building-left .building-body {
    width: 70px;
    height: 100px;
  }

  .center-building {
    width: 60px;
    height: 80px;
  }

  .right-building {
    width: 80px;
    height: 110px;
  }

  .building-windows,
  .glass-windows {
    gap: 5px;
    padding: 8px;
  }
}

/* ========================================
   ご利用者様の声セクション（新デザイン）
   ======================================== */
.testimonials-section-new {
  background: white;
  padding-top: 40px;
}

.testimonials-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトルボックス */
.testimonials-title-box {
  background: #6ABED0;
  border-radius: 30px;
  padding: 20px 60px;
  margin-bottom: 60px;
  box-shadow: 0 8px rgba(0, 0, 0, 0.15);
  width: 672px;
}

.testimonials-title-new {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  letter-spacing: 1px;
  color: white;
}

/* カードコンテナ - PC版は横並び */
.testimonials-cards-new {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  justify-content: center;
  margin-bottom: 50px;
}

/* カード全体 */
.testimonial-card-new {
  background: white;
  border-radius: 21px;
  overflow: hidden;
  box-shadow: 0 4px rgba(0, 0, 0, 0.15);
  padding: 25px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  max-width: 350px;
}

/* アバター - 左側 */
.testimonial-avatar-new {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-image-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 右側のコンテンツコンテナ（金額+情報） */
.testimonial-content-new {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 金額ボックス */
.testimonial-amount-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: space-around;
}

.amount-label-new {
  font-size: 18px;
  font-weight: 700;
  color: #6abed0;
}

.amount-value-new {
  font-size: 24px;
  font-weight: 700;
  color: #6abed0;
}

/* 情報エリア */
.testimonial-info-new {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-bottom: 20px;
  align-items: center;
}

.info-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.info-row-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #393535;
}

.info-row-new:first-child {
  padding-top: 0;
}


.info-label-new {
  font-size: 14px;
  font-weight: 600;
  color: #4b4a4a;
}

.info-value-new {
  font-size: 14px;
  font-weight: 700;
  color: #6abed0;
}

/* CTAセクション */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.testimonials-cta-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonials-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: white;
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
  transition: all 0.3s ease;
}

.testimonials-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.5);
}

.cta-badge-new {
  background: white;
  color: #D73333;
  border: 2px solid #CD0000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  flex-shrink: 0;
}

.cta-text-new {
  flex: 1;
  text-align: left;
}

.cta-arrow-new {
  font-size: 28px;
  flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .testimonials-container-new {
    padding: 0 16px;
  }

  .testimonials-title-box {
    padding: 15px 40px;
    margin-bottom: 40px;
  }

  .testimonials-title-new {
    font-size: 32px;
  }

  .testimonials-cards-new {
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
  }

  .testimonial-card-new {
    max-width: 100%;
    padding: 15px;
    gap: 15px;
    flex-direction: row;
  }

  .testimonial-avatar-new {
    width: 80px;
    height: 80px;
  }

  .testimonial-amount-box {
    gap: 8px;
    margin-bottom: 10px;
  }

  .amount-label-new {
    font-size: 16px;
  }

  .amount-value-new {
    font-size: 20px;
  }

  .info-row-new {
    padding: 8px 0;
  }

  .info-label-new {
    font-size: 13px;
  }

  .info-value-new {
    font-size: 13px;
  }

  .testimonials-cta-text {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .testimonials-cta-button {
    padding: 15px 35px;
    font-size: 18px;
    gap: 12px;
  }

  .cta-badge-new {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .testimonials-title-box {
    padding: 12px 30px;
  }

  .testimonials-title-new {
    font-size: 28px;
  }

  .testimonial-card-new {
    padding: 12px;
    gap: 12px;
    flex-direction: row;
  }

  .amount-label-new {
    font-size: 14px;
  }

  .amount-value-new {
    font-size: 18px;
  }

  .testimonial-avatar-new {
    width: 70px;
    height: 70px;
  }

  .info-label-new {
    font-size: 12px;
  }

  .info-value-new {
    font-size: 12px;
  }

  .testimonials-cta-text {
    font-size: 20px;
  }

  .testimonials-cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* ========================================
   ご利用までの流れセクション（新デザイン）
   ======================================== */
.process-section-new {
  background: linear-gradient(135deg, #6abed0 0%, #5aaebd 100%);
  padding: 80px 0;
}

.process-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトルボックス */
.process-title-box {
  background: white;
  border-radius: 15px;
  padding: 30px 110px;
  margin-bottom: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  width: auto;
  display: inline-block;
}

.process-title-new {
  font-size: 36px;
  font-weight: 700;
  color: #6abed0;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* サブタイトル */
.process-subtitle-new {
  font-size: 50px;
  font-weight: 500;
  color: white;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 110px;
}

.highlight-large {
  font-size: 80px;
  font-weight: 700;
  color: white;
}

.highlight-largest {
  font-size: 64px;
  font-weight: 700;
  color: white;
}

/* 注意書きボックス */
.process-note-box {
  background: #6ABED0;
  border: 4px solid white;
  border-radius: 20px;
  padding: 20px 100px;
  margin-bottom: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.process-note-text {
  font-size: 45px;
  font-weight: 600;
  color: white;
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

.highlight-number {
  font-size: 28px;
  font-weight: 700;
}

.highlight-yuryou {
  font-size: 60px;
  font-weight: 700;
}

.highlight-3sha {
  background: linear-gradient(transparent 60%, #faea39 60%);
  padding: 0 4px;
}

/* ステップカード */
.process-steps-new {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: start;
}

.process-step-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-info-header-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* アイコン円形 */
.step-icon-circle-new {
  width: 220px;
  height: 220px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-icon-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* 黄色バッジ */
.step-badge-yellow {
  background: #faea39;
  color: #4FB7CE;
  font-size: 18px;
  font-weight: 700;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}

/* ステップタイトル */
.step-title-new {
  font-size: 28px;
  font-weight: 700;
  color: white;
  display: inline-block;
  margin-left: 16px;
}

/* ステップ説明 */
.step-description-new {
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.6;
  margin: 0;
  margin-top: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .process-steps-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .process-container-new {
    max-width: 600px;
  }

  .process-section-new {
    padding: 30px 0;
  }

  .process-title-box {
    padding: 16px 30px;
  }

  .process-title-new {
    font-size: 22px;
  }

  .process-subtitle-new {
    font-size: 24px;
    line-height: 1.4;
  margin-bottom: 50px;
  }

  .highlight-large {
    font-size: 30px;
  }

  .highlight-largest {
    font-size: 48px;
  }

  .process-note-box {
    padding: 16px 24px;
    box-sizing: border-box;
  }

  .process-title-box {
    width: 90%;
    max-width: 90%;
    padding: 20px 20px;
    box-sizing: border-box;
  }

  .highlight-yuryou{
    font-size: 36px;
  }

  .process-note-text {
    font-size: 20px;
  }

  .highlight-number {
    font-size: 22px;
  }

  .process-steps-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-cards-vertical {
    width:90%;
    margin-right: 5%;
    margin-left: 5%;
  }

  .feature-description-new{
    font-size: 16px;
  }

  /* ご利用者様の声も縦並び */
  .testimonials-cards-new {
    flex-direction: column;
  }

  .step-icon-circle-new {
    width: 160px;
    height: 160px;
  }

  .step-icon-img {
    width: 100px;
    height: 100px;
  }

  .step-badge-yellow {
    font-size: 16px;
    padding: 6px 24px;
  }

  .step-title-new {
    font-size: 24px;
  }

  .step-description-new {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .process-note-text {
    font-size: 24px;
  }

  .step-icon-circle-new {
    width: 200px !important;
    height: 200px !important;
  }

  .step-icon-img {
    width: 140px !important;
    height: 140px !important;
  }

  .step-info-header-new {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .step-badge-yellow {
    padding: 6px 20px;
  }

  .step-title-new {
    font-size: 26px;
    margin-left: 0;
  }

  .step-description-new {
    font-size: 18px;
  }
}

/* ========================================
   FAQ前のCTAセクション
   ======================================== */
.pre-faq-cta {
  background: white;
  padding-bottom: 30px;
}

.pre-faq-container{
  padding-top:50px;
}

.pre-faq-cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.pre-faq-speech-bubble {
  background: white;
  border: none;
  border-radius: 30px;
  padding: 10px 60px;
  position: relative;
  box-shadow: 3px 6px 0 rgba(0, 0, 0, 0.15);
  width: 650px;
}

.pre-faq-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}

.pre-faq-bubble-text {
  font-size: 24px;
  font-weight: 700;
  color: #6abed0;
  margin: 0;
  text-align: center;
}

.pre-faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAA639;
  border: none;
  border-radius: 20px;
  padding: 20px 30px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 6px #759FA5;
  gap: 16px;
  width: 500px;
}

.pre-faq-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(250, 166, 57, 0.5);
}

.pre-faq-badge {
  background: #6abed0;
  color: white;
  font-size: 26px;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 30px;
}

.pre-faq-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.pre-faq-text-sub {
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.pre-faq-text-main {
  font-size: 34px;
  font-weight: 700;
  color: white;
}

.pre-faq-arrow-image-container img {
  width: 50px;
  height: auto;
}

@media (max-width: 768px) {
  .pre-faq-cta {
    padding: 40px 0;
  }

  .pre-faq-speech-bubble {
    padding: 12px 30px;
  }

  .pre-faq-bubble-text {
    font-size: 20px;
  }

  .pre-faq-button {
    min-width: auto;
    width: 100%;
    padding: 16px 24px;
  }

  .pre-faq-text-main {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .pre-faq-bubble-text {
    font-size: 18px;
  }

  .pre-faq-badge {
    font-size: 14px;
    padding: 10px 16px;
  }

  .pre-faq-text-sub {
    font-size: 12px;
  }

  .pre-faq-text-main {
    font-size: 20px;
  }
}

.faq-container-new {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトルボックス */
.faq-title-box {
  width: 670px;
  background: linear-gradient(135deg, #6abed0 0%, #5aaebd 100%);
  border-radius: 30px;
  padding: 16px 80px;
  margin-bottom: 32px;
  box-shadow: 0 8px rgba(0, 0, 0, 0.25);
}

.faq-title-new {
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
}

/* サブタイトル */
.faq-subtitle-new {
  font-size: 24px;
  font-weight: 700;
  color: #656565;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* FAQ項目 */
.faq-items-new {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item-new {
  background: white;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item-new.active {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 質問ボタン */
.faq-question-new {
  width: 670px;
  background: white;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question-new:hover {
  background: #fafafa;
}

/* 質問コンテンツ（テキスト＋矢印） */
.faq-question-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:150px;
}

/* Qアイコン */
.faq-q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 50px;
  font-weight: 700;
  color: #6abed0;
  line-height: 1;
}

/* 質問テキスト */
.faq-question-text {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #666666;
  font-weight: bold;
  line-height: 1.6;
}

/* 矢印アイコン */
.faq-arrow-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
  margin-top: 0;
}

.faq-arrow-icon path {
  stroke: #6abed0;
  stroke-width: 2;
}

.faq-item-new.active .faq-arrow-icon {
  transform: rotate(180deg);
}

/* 回答エリア */
.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f8f8;
}

.faq-item-new.active .faq-answer-new {
  max-height: 500px;
  padding: 24px;
}

.faq-answer-new p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {

  .faq-title-box {
    max-width: 90%;
  }

  .faq-question-new {
    max-width: 100%;
  }

  .faq-title-new {
    font-size: 32px;
  }

  .faq-question-new {
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-q-icon {
    width: 40px;
    height: 40px;
    font-size: 40px;
    align-items: flex-start;
    line-height: 1;
  }

  .faq-arrow-icon {
    margin-top: 0;
  }

  .faq-answer-new p {
    font-size: 14px;
  }

  .faq-item-new.active .faq-answer-new {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .faq-subtitle-new {
  font-size: 16px;
  margin-bottom: 24px;
}
  .faq-title-box {
    padding: 10px 40px;
  }

  .faq-title-new {
    font-size: 26px;
  }

  .faq-question-new {
    padding: 14px 16px;
  }

  .faq-question-content {
   width:320px;
   gap:15px;
  }

  .faq-q-icon {
    width: 36px;
    height: 36px;
    font-size: 36px;
    align-items: flex-start;
    line-height: 1;
  }

  .faq-arrow-icon {
    margin-top: 0;
  }

  .faq-answer-new p {
    font-size: 13px;
  }

  .faq-item-new.active .faq-answer-new {
    padding: 16px;
  }
}

/* ========================================
   フッター（新デザイン）
   ======================================== */
.site-footer-new {
  background: #6ABED0;
  padding: 40px 0 24px;
}

.footer-links-new {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-links-new a {
  color: #656565;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-links-new a:hover {
  text-decoration: underline;
}

.footer-container-new {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
}

/* ロゴエリア */
.footer-logo-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo-img-new {
  width: 350px;
  height: auto;
  object-fit: contain;
}

.footer-logo-icon {
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-sub {
  font-size: 12px;
  color: #6abed0;
  font-weight: 500;
}

.footer-logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #4b4a4a;
}

/* フッターリンク */
.footer-links-new {
  display: flex;
  align-items: center;
  width: 500px;
}

.footer-link {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #6abed0;
}

/* SNSアイコン */
.footer-social-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.social-icon-footer:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.social-icon-footer svg {
  display: block;
  width: 60px;
  height: 60px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.social-icon svg {
  display: block;
}


.footer-copyright-new p {
  font-size: 13px;
  color: #656565;
}

/* フッターSNSアイコンセクション */
.footer-social-section {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-social-icon {
  width: 45px;
  margin-top: 20px;
  height: auto;
}

.footer-social-section .logo-image {
  width: 300px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

/* レスポンシブ対応 */
@media (max-width: 1440px){

  .testimonials-title-box {
    max-width: 90%;
  }

  .testimonials-title-new {
    font-size: 32px;
  }

  .faq-title-box {
    max-width: 90%;
  }

  .faq-title-new {
    font-size: 32px;
  }

  .faq-question-new {
    max-width: 100%;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .pre-faq-speech-bubble {
    width: auto;
    max-width: 90%;
  }

  .features-section-new {
   padding: 0;
  }

  .comparison-main {
    padding: 50px 0 0px;
  }

  .process-note-box {
    box-sizing: border-box;
  }

  .process-title-box {
    width: 90%;
    max-width: 90%;
    box-sizing: border-box;
  }

  .step-icon-circle-new {
    width: 180px;
    height: 180px;
  }

  .step-icon-img {
    width: 120px;
    height: 120px;
  }

  .step-info-header-new {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .step-title-new {
    margin-left: 0;
  }

  /* お客様の声 - モバイル版デザイン */
  .testimonials-cards-new {
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
  }

  .testimonial-card-new {
    max-width: 100%;
    padding: 20px;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }

  .testimonial-content-new {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
  }

  .testimonial-amount-box {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 10px;
  }

  .amount-label-new {
    font-size: 20px;
    font-weight: 700;
    color: #6abed0;
    min-width: 120px;
    text-align: center;
  }

  .amount-value-new {
    font-size: 26px;
    font-weight: 700;
    color: #6abed0;
  }

  .testimonial-info-new {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .testimonial-avatar-new {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .info-rows-wrapper {
    flex: 1;
  }

  .info-row-new {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #393535;
  }

  .info-label-new {
    font-size: 14px;
    color: #4b4a4a;
  }

  .info-value-new {
    font-size: 16px;
    font-weight: 700;
    color: #6abed0;
  }

  /* pre-faq-button レスポンシブ */
  .pre-faq-button {
    width: 90%;
    max-width: 400px;
    padding: 14px 20px;
    gap: 12px;
  }

  .pre-faq-button img {
    width: 40px;
    height: auto;
  }

  .pre-faq-badge {
    font-size: 18px;
    padding: 8px 12px;
  }

  .pre-faq-text-sub {
    font-size: 14px;
  }

  .pre-faq-text-main {
    font-size: 24px;
  }
}


@media (max-width: 768px) {
  .site-footer-new {
    padding: 20px 0 17px;
    font-weight: bold;
  }

  .footer-container-new {
    flex-direction: column;
    gap:0px;
    margin:0;
  }

  .footer-copyright-new{
    margin:0;
    padding-top: 0px;
    font-size: 14px;
  }

  .footer-logo-new {
    gap: 12px;
  }

  .footer-logo-main {
    font-size: 20px;
  }

  .footer-logo-img-new {
    width: 160px;
  }

  .footer-links-new {
    gap: 24px;
    flex-direction: row;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-social-new {
    gap: 12px;
  }

  .social-icon svg {
    width: 28px;
    height: 28px;
  }

  .footer-copyright-new p {
    font-size: 12px;
  }

  .footer-social-section {
    padding: 30px 15px;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-social-icons {
    gap: 15px;
    justify-content: flex-start;
  }

  .footer-social-icon {
    width: 40px;
  }

  .footer-social-section .logo-image {
    width: 180px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {


  .footer-logo-new {
    align-self: flex-start;
  }

  .footer-logo-img-new {
    width: 140px;
  }

  .footer-logo-main {
    font-size: 18px;
  }

  .footer-logo-sub {
    font-size: 11px;
  }

  .footer-links-new {
    align-self: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-social-new {
    align-self: flex-start;
  }

  .social-icon svg {
    width: 26px;
    height: 26px;
  }

  .footer-copyright-new {
    text-align: left;
  }

  .footer-copyright-new p {
    font-size: 11px;
  }
}

