/*
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
*/

/* リセットスタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  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 28px;
  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 {
    padding: 12px 20px;
    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: 10px 16px;
    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;
  }
}



