/* =====================================================
   CSS Variables - PC/Tablet Layout
   カラー、フォント、スペーシングなどの共通変数を定義
   ===================================================== */

:root {
  /* ===== カラーパレット ===== */
  /* プライマリーカラー */
  --color-primary: #003a60;
  --color-primary-light: #004877;
  --color-primary-dark: #004a80;

  /* セカンダリーカラー */
  --color-secondary: #008fed;
  --color-secondary-light: #b8d4e8;

  /* アクセントカラー */
  --color-accent-red: #d36363;
  --color-accent-red-dark: #c83737;
  --color-accent-red-border: #d94a4a;
  --color-accent-yellow: #ffcb31;
  --color-accent-yellow-dark: #f7ba00;

  /* ボタンカラー */
  --color-btn-phone: #007fd3;
  --color-btn-phone-dark: #1275bc;
  --color-btn-phone-shadow: #006cb2;
  --color-btn-email: #ffcb31;
  --color-btn-email-dark: #004a7f;
  --color-btn-email-shadow: #f7ba00;

  /* 背景カラー */
  --color-bg-light: #f5f9fc;
  --color-bg-light-yellow: #fff5d7;
  --color-bg-white: #ffffff;
  --color-bg-highlight: #ffea8c;
  --color-footer-bg: #2d5a7a;
  --color-footer-bg-dark: #004878;

  /* テキストカラー */
  --color-text-primary: #003a60;
  --color-text-white: #ffffff;
  --color-text-red: #d36363;
  --color-text-blue: #003a60;
  --color-text-blue-light: #008fed;

  /* ボーダーカラー */
  --color-border: #b8d4e8;
  --color-border-dark: #004877;

  /* ===== フォントファミリー ===== */
  --font-primary: 'Noto Sans', Helvetica, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-serif: 'IBM Plex Serif', Helvetica, sans-serif;
  --font-code: 'JetBrains Mono', monospace;
  --font-display: 'Roboto', sans-serif;

  /* ===== フォントサイズ ===== */
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 32px;
  --font-size-5xl: 36px;
  --font-size-6xl: 42px;

  /* ===== スペーシング ===== */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;

  /* ===== ボーダー半径 ===== */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-xl: 20px;
  --radius-round: 50%;

  /* ===== シャドウ ===== */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-btn-phone: 3px 4px 0px var(--color-primary);
  --shadow-btn-email: 2px 4px 0px var(--color-primary);

  /* ===== トランジション ===== */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
/* =====================================================
   Reset CSS - PC/Tablet Layout
   ===================================================== */

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}
/* =====================================================
   Typography - PC/Tablet Layout
   ===================================================== */

body {
  font-family: 'Noto Sans', sans-serif;
  color: #2f2725;
}
/* =====================================================
   Utility Classes - PC/Tablet Layout
   共通で使用するユーティリティクラス
   ===================================================== */

/* ===== Text Colors ===== */
.text-red {
  color: var(--color-text-red);
}

.text-blue {
  color: var(--color-text-blue);
}

.text-blue-light {
  color: var(--color-text-blue-light);
}

.text-white {
  color: var(--color-text-white);
}

.text-red-highlight {
  color: var(--color-accent-red);
}

/* ===== Text Sizes ===== */
.text-lg {
  font-size: 42px;
}

.text-md {
  font-size: 30px;
}

.text-smaller {
  font-size: 0.875em;
}

/* ===== Display Utilities ===== */
.hidden {
  display: none;
}

/* ===== Overflow Prevention ===== */
section {
  max-width: 100vw;
  overflow-x: hidden;
}

main {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ===== 共通セクションヘッダー ===== */
.section-header-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-2xl);
}

.section-label {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-secondary);
  font-size: var(--font-size-md);
  text-align: center;
  letter-spacing: 4.8px;
  line-height: 24px;
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-secondary);
  font-size: var(--font-size-xl);
  text-align: center;
  letter-spacing: 3.6px;
  line-height: 36px;
}

.section-subtitle-centered {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 36px;
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--font-size-4xl);
  text-align: center;
  letter-spacing: 4.8px;
  line-height: 48px;
}

.section-title-wrapper {
  font-family: var(--font-primary);
  font-weight: 600;
  text-align: center;
  line-height: 60px;
}

.section-title-lg {
  font-family: var(--font-primary);
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.section-title-lg > span {
  font-size: 38px;
}

/* ===== 共通ハイライト背景 ===== */
.highlight-bg,
.highlight {
  position: absolute;
  background: var(--color-bg-highlight);
  z-index: -1;
}

/* heightは個別に指定 */
.highlight-bg {
  height: 11px;
}

/* 相対的なハイライト（親要素内で使用） */
.highlight-inline {
  position: relative;
  display: inline-block;
}

.highlight-inline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--color-bg-highlight);
  z-index: -1;
}
/* =====================================================
   Button Components - PC/Tablet Layout
   共通で使用するボタンスタイル（hero, campaign, process, faqで使用）
   ===================================================== */

/* ===== 共通CTAボタン（電話・メール） ===== */
/* ベーススタイル */
.cta-btn-base {
  position: relative;
  width: 380px;
  border-radius: var(--radius-lg);
  border: 2px solid;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast);
  display: flex;
}

.cta-btn-base:hover {
  transform: translateY(-2px);
}

/* 電話ボタンスタイル */
.cta-btn-phone {
  background: var(--color-btn-phone);
  border-color: var(--color-btn-phone-dark);
  box-shadow: var(--shadow-btn-phone);
}

/* メールボタンスタイル */
.cta-btn-email {
  background: var(--color-btn-email);
  border-color: var(--color-btn-email-dark);
  box-shadow: var(--shadow-btn-email);
}

/* ボトムバー（グラデーション部分） */
.cta-btn-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  border-radius: 0 0 13px 13px;
}

.cta-btn-bottom-blue {
  background: var(--color-btn-phone-shadow);
}

.cta-btn-bottom-yellow {
  background: var(--color-btn-email-shadow);
}

/* ボタンコンテンツ */
.cta-btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 12px;
  padding: 0 var(--spacing-md);
  z-index: 1;
}

/* ボタンアイコン */
.cta-btn-icon {
  object-fit: cover;
  flex-shrink: 0;
}

/* ボタンテキストコンテナ */
.cta-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ボタン内テキストスタイル（各セクションで個別に定義） */

/* ===== ボタングループラッパー ===== */
.cta-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.cta-buttons {
  display: flex;
  gap: 25px;
}

/* ===== 補助テキスト ===== */
.cta-note {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  text-align: center;
}
/* =====================================================
   Form Components - PC/Tablet Layout
   ===================================================== */

/* Campaign Section */
.campaign-section {
  position: relative;
  width: 100%;
}

.campaign-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-3xl) var(--spacing-md);
}

.campaign-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.campaign-decoration-left,
.campaign-decoration-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.campaign-decoration-line {
  width: 3px;
  height: 50px;
  background: var(--color-primary-dark);
  transform: rotate(-25deg);
}

.campaign-decoration-right .campaign-decoration-line {
  transform: rotate(25deg);
}

.campaign-badge {
  position: relative;
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.campaign-badge-circle {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-round);
  background: linear-gradient(90deg, rgba(255, 109, 109, 1) 0%, rgba(223, 73, 73, 1) 100%);
}

.campaign-badge-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-21.40deg);
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-text-white);
  text-align: center;
  line-height: 1.3;
  font-size: var(--font-size-lg);
  width: 80%;
}

.campaign-title-wrapper {
  position: relative;
}

.campaign-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--font-size-5xl);
  letter-spacing: 5.4px;
  white-space: nowrap;
}

.campaign-main {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.campaign-img {
  width: 260px;
  height: 175px;
  object-fit: cover;
}

.campaign-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}

.campaign-headline {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  letter-spacing: 3.6px;
  line-height: 40px;
}

.campaign-description {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-primary);
  font-size: var(--font-size-md);
  letter-spacing: 0.48px;
  line-height: 26px;
}

.campaign-message {
  position: relative;
  width: 680px;
  margin-bottom: 20px;
}

.campaign-message-highlight {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--color-bg-highlight);
}

.campaign-message-text {
  position: relative;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-4xl);
  text-align: center;
  letter-spacing: 4.8px;
  line-height: 48px;
  white-space: nowrap;
}

.campaign-arrow {
  width: 128px;
  height: 32px;
  margin-bottom: 24px;
}

.campaign-buttons {
  display: flex;
  gap: 20px;
}

.campaign-btn {
  position: relative;
  width: 380px;
  height: 105px;
  border-radius: var(--radius-lg);
  border: 2px solid;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.campaign-btn:hover {
  transform: translateY(-2px);
}

.campaign-btn-phone {
  background: var(--color-btn-phone);
  border-color: var(--color-btn-phone-dark);
  box-shadow: var(--shadow-btn-phone);
}

.campaign-btn-email {
  background: var(--color-btn-email);
  border-color: var(--color-btn-email-dark);
  box-shadow: var(--shadow-btn-email);
}

.campaign-btn-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  border-radius: 0 0 13px 13px;
}

.campaign-btn-bottom-blue {
  background: var(--color-btn-phone-shadow);
}

.campaign-btn-bottom-yellow {
  background: var(--color-btn-email-shadow);
}

.campaign-btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 12px;
  padding: 0 16px;
}

.campaign-btn-icon {
  width: 38px;
  height: 52px;
  object-fit: cover;
}

.campaign-btn-email .campaign-btn-icon {
  width: 48px;
  height: 36px;
}

.campaign-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.campaign-btn-label {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text-white);
  font-size: var(--font-size-sm);
  letter-spacing: 0.6px;
  margin-bottom: var(--spacing-xs);
}

.campaign-btn-main {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-text-white);
  font-size: 30px;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.campaign-btn-sub {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text-white);
  font-size: var(--font-size-sm);
  letter-spacing: 0.6px;
}

.campaign-btn-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 22px;
  letter-spacing: 1.1px;
  margin-bottom: var(--spacing-xs);
}

.campaign-btn-subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  letter-spacing: 0.6px;
}

/* =====================================================
   FAQ Section - PC/Tablet Layout
   ===================================================== */

/* Feature Section */
.feature-section {
  width: 100%;
  padding: var(--spacing-3xl) var(--spacing-md);
  background: var(--color-bg-light);
}

/* セクションヘッダーはutilities.cssに移動 */

.feature-number {
  font-size: 64px !important;
  letter-spacing: 3px;
  line-height: 1;
}

.feature-suffix {
  font-size: 44px !important;
  letter-spacing: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px var(--spacing-xl);
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 450px;
}

.feature-badge {
  position: absolute;
  top: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  z-index: 10;
}

.feature-badge img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-badge span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-code);
  font-weight: 700;
  color: var(--color-text-white);
  font-size: var(--font-size-base);
  text-align: center;
  letter-spacing: 2.8px;
  line-height: 30px;
}

.feature-content {
  position: relative;
  padding: 0 var(--spacing-xl);
}

/* ハイライト背景（utilities.cssの共通スタイルを使用） */
.feature-highlight {
  position: absolute;
  height: 10px;
  background: var(--color-bg-highlight);
  bottom: 2px;
  z-index: -1;
}

.feature-title-text {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 600;
  text-align: center;
}

.feature-title-sm {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  letter-spacing: 0.54px;
  line-height: 28px;
}

.feature-title-lg {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  letter-spacing: 1.26px;
  line-height: 36px;
  margin-top: var(--spacing-xs);
  z-index: 1;
}

.feature-img {
  position: absolute;
  top: 165px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 150px;
  object-fit: cover;
}

.feature-desc {
  position: absolute;
  top: 330px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-primary);
  font-size: var(--font-size-base);
  letter-spacing: 2.1px;
  line-height: 24px;
}

/* =====================================================
   Hero Section - PC/Tablet Layout
   ===================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 1250px;
  margin-top: 150px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  height: 100%;
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-450px);
  width: 625px;
}

.hero-title {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--color-text-white);
  font-size: 60px;
  letter-spacing: 8px;
  line-height: 1.3;
  margin-top: -8px;
}

.hero-title:first-child {
  margin-top: 0;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--color-text-white);
  font-size: var(--font-size-4xl);
  letter-spacing: 6px;
  margin-top: var(--spacing-sm);
}

/* Service Section */
.service-section {
  width: 100%;
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--color-bg-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: 0 auto var(--spacing-4xl);
}

.service-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-icon {
  width: 65px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px 28px;
}

.service-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  color: #003a60;
  font-size: 20px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 28px;
}

.service-desc {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  color: #003a60;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 22px;
}

.service-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.service-option-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  color: #003a60;
  font-size: 32px;
  text-align: center;
  letter-spacing: 4.8px;
  line-height: 42px;
}

.service-option-card {
  width: 80%;
  background: white;
  border-radius: 20px;
  border: 2px solid #b8d4e8;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-option-icon {
  width: 95px;
  height: 95px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-option-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.service-option-name {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  color: #003a60;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 28px;
}

.service-option-desc {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  color: #003a60;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 22px;
}

/* =====================================================
   Troubleshooting Section - PC/Tablet Layout
   ===================================================== */

/* Troubleshooting Section */
.trouble-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: var(--spacing-3xl) var(--spacing-md);
  background: var(--color-bg-white);
  overflow: hidden;
}

/* セクションヘッダースタイルはutilities.cssに統合済み */

.trouble-img {
  position: absolute;
  right: 325px;
  width: 86px;
  height: 164px;
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  gap: 22px 22px;
  justify-content: center;
  margin-bottom: 48px;
}

.trouble-card {
  position: relative;
  width: 260px;
  height: 280px;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.trouble-highlight {
  position: absolute;
  height: 11px;
  background: var(--color-bg-highlight);
}

.trouble-title {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 0 25px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-xl);
  text-align: center;
  line-height: 30px;
}

.trouble-icon {
  position: absolute;
  object-fit: cover;
}

.trouble-desc {
  position: absolute;
  top: 205px;
  left: 0;
  width: 100%;
  padding: 0 35px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-primary);
  font-size: var(--font-size-md);
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 24px;
}

.reassurance-box {
  position: relative;
  width: 100%;
  max-width: 780px;
  height: 200px;
  margin: 0 auto;
}

.reassurance-bg {
  position: absolute;
  top: var(--spacing-sm);
  left: 0;
  width: 100%;
  max-width: 680px;
  height: 150px;
  background: var(--color-accent-yellow);
  border-radius: var(--radius-xl);
}

.reassurance-line {
  position: absolute;
  top: 72px;
  left: 37px;
  width: 250px;
  height: 24px;
  background: var(--color-bg-white);
}

.reassurance-text {
  position: absolute;
  top: 35px;
  left: 40px;
  right: 240px;
  max-width: 520px;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 32px;
}

.reassurance-images {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 200px;
  display: flex;
  gap: 2px;
}

.reassurance-images img:first-child {
  margin-top: 40px;
  width: 112px;
  height: 180px;
  object-fit: cover;
}

.reassurance-images img:last-child {
  width: 106px;
  height: 220px;
  object-fit: cover;
}

/* =====================================================
   Top Hero Image Section - PC
   ページ最上部のヒーロー画像
   ===================================================== */
.top-hero-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.top-hero-image {
  width: 100%;
  height: auto;
  display: block;
}


/* =====================================================
   New Header Design - PC/Tablet
   シンプルなヘッダーデザイン
   ===================================================== */
.new-header-pc {
  width: 100%;
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.new-header-container-pc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-header-left-pc {
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-header-truck-icon-pc {
  width: 50px;
  height: auto;
}

.new-header-brand-pc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.new-header-service-type-pc {
  background-color: #5fb335;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
}

.new-header-brand-name-pc {
  font-size: 20px;
  font-weight: bold;
  color: #003a60;
}

.new-header-area-badge-pc {
  background-color: #ffffff;
  border: 2px solid #003a60;
  border-radius: 5px;
  padding: 5px 10px;
  margin-left: 8px;
}

.new-header-area-text-pc {
  font-size: 13px;
  font-weight: bold;
  color: #003a60;
  line-height: 1.3;
  text-align: center;
}

.new-header-right-pc {
  display: flex;
  gap: 15px;
  align-items: center;
}

.new-header-btn-email-pc {
  background-color: #ffc107;
  color: #003a60;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.new-header-btn-email-pc:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.new-header-btn-phone-pc {
  background-color: #4caf50;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.new-header-btn-phone-pc:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.new-header-btn-icon-pc {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =====================================================
   Image-Based Header - PC/Tablet
   画像ベースのヘッダーとクリック可能エリア
   ===================================================== */
.image-header-pc {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.header-image-pc {
  width: 100%;
  height: auto;
  display: block;
}

.image-header-pc {
  position: relative;
}

.header-clickable-area-pc {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-clickable-area-pc:hover {
  opacity: 0.8;
}

/* 無料相談ボタンのクリックエリア（画像の右側、左のボタン） */
.header-email-area-pc {
  top: 50%;
  right: 25%;
  transform: translateY(-50%);
  width: 180px;
  height: 50px;
}

/* 電話ボタンのクリックエリア（画像の右側、右のボタン） */
.header-phone-area-pc {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: 150px;
  height: 50px;
}

/* =====================================================
   Hero Section with Clickable Buttons - PC
   SVG画像とクリック可能なボタンエリア
   ===================================================== */
.top-hero-section-pc {
  width: 100%;
  position: relative;
  margin: 0;
  margin-top: 100px;
  padding: 0;
}

.top-hero-image-pc {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 5px;
}

.hero-clickable-area-pc {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hero-clickable-area-pc:hover {
  opacity: 0.8;
}

/* 電話ボタンのクリックエリア（SVG座標: x=271, y=947, width=435, height=95） */
.hero-phone-btn-pc {
  left: 21.5%;
  top: 77%;
  width: 28%;
  height: 15%;
}

/* 無料相談ボタンのクリックエリア（SVG座標: x=734, y=947, width=435, height=95） */
.hero-email-btn-pc {
  left: 51%;
  top: 77%;
  width: 28%;
  height: 15%;
}

/* =====================================================
   SVG Header with Clickable Buttons - PC
   SVG画像ヘッダーとクリック可能なボタンエリア
   ===================================================== */
.svg-header-pc {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #F7F8F6;
}

.header-svg-image-pc {
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.header-svg-clickable-pc {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-svg-clickable-pc:hover {
  opacity: 0.8;
}

/* 無料相談ボタンのクリックエリア（SVG座標: x=740, y=16, width=209, height=51） */
.header-svg-phone-pc {
  left: 51%;
  top: 25%;
  width: 12%;
  height: 48%;
}

/* 電話ボタンのクリックエリア（SVG座標: x=961, y=16, width=209, height=51） */
.header-svg-email-pc {
  left: 65%;
  top: 25%;
  width: 12%;
  height: 48%;
}

/* =====================================================
   Trouble Section - PC
   トラブルセクション（お悩み）
   ===================================================== */
.trouble-section-pc {
  width: 100%;
  margin: 0;
  padding: 0;
}

.trouble-image-pc {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   Step Section - PC
   ステップセクション（ご利用の流れ）
   ===================================================== */
.step-section-pc {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.step-image-pc {
  width: 100%;
  height: auto;
  display: block;
}

.step-clickable-area-pc {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.step-clickable-area-pc:hover {
  opacity: 0.8;
}

/* 電話ボタン（緑・右）のクリックエリア */
.step-phone-btn-pc {
  left: 21.5%;
  top: 38%;
  width: 28%;
  height: 4.24%;
}

/* 無料相談ボタン（黄色・左）のクリックエリア */
.step-email-btn-pc {
  left: 51%;
  top: 38%;
  width: 27.5%;
  height: 4.24%;
}

/* =====================================================
   Feature Section - PC
   特徴セクション（おうちスッキリ便の特徴）
   ===================================================== */
.feature-section-pc {
  width: 100%;
  margin: 0;
  padding: 0;
}

.feature-image-pc {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   Campaign Section - PC
   キャンペーンセクション
   ===================================================== */
.campaign-section-pc {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.campaign-image-pc {
  width: 100%;
  height: auto;
  display: block;
}

.campaign-clickable-area-pc {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.campaign-clickable-area-pc:hover {
  opacity: 0.8;
}

/* 電話ボタン（緑・右）のクリックエリア */
.campaign-phone-btn-pc {
  left: 21.5%;
  top: 77%;
  width: 27.5%;
  height: 12.89%;
}

/* 無料相談ボタン（黄色・左）のクリックエリア */
.campaign-email-btn-pc {
  left: 50.83%;
  top: 77%;
  width: 27.5%;
  height: 12.89%;
}

/* =====================================================
   Service Section - PC
   サービスセクション
   ===================================================== */
.service-section-pc {
  width: 100%;
  margin: 0;
  padding: 0;
}

.service-image-pc {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   Price Section - PC
   料金セクション
   ===================================================== */
.price-section-pc {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.price-image-pc {
  width: 100%;
  height: auto;
  display: block;
}

.price-clickable-area-pc {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.price-clickable-area-pc:hover {
  opacity: 0.8;
}

/* 電話ボタン（緑・左）のクリックエリア */
.price-phone-btn-pc {
  left: 21.46%;
  top: 72.5%;
  width: 27.65%;
  height: 3.55%;
}

/* 無料相談ボタン（黄色・右）のクリックエリア */
.price-email-btn-pc {
  left: 50.9%;
  top: 72.5%;
  width: 27.51%;
  height: 3.49%;
}

/* =====================================================
   Items Section - PC (HTML/CSS Version)
   品目セクション（HTML/CSS版）
   ===================================================== */
.items-new-section-pc {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #bbdfb8;
}

.items-new-header-pc {
  text-align: center;
  margin-bottom: 40px;
}

.items-new-subtitle-pc {
  font-size: 14px;
  font-weight: 600;
  color: #51b049;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.items-new-title-pc {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* カードスタイル */
.item-new-card-pc {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.item-new-card-content-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-new-category-title-pc {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0 0 30px 0;
  text-align: center;
}

/* アイテム画像行 */
.item-new-images-row-pc {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.item-new-image-wrapper-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.item-new-img-pc {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.item-new-label-pc {
  font-size: 14px;
  color: #333;
  font-weight: 700;
}

/* ボタンスタイル */
.item-new-btn-pc {
  width: 340px;
  padding: 14px 24px;
  background: #51b049;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 8px rgba(81, 176, 73, 0.3);
  margin: 0 auto;
  display: block;
}

.item-new-btn-pc:hover {
  background: #469a3e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(81, 176, 73, 0.4);
}

/* 詳細コンテンツ */
.item-new-detail-content-pc {
  display: none;
  background: #FFFFFF;
  padding: 30px;
  margin-top: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* アコーディオン開いた状態 */
.item-detail-content.open,
.item-new-detail-content-pc.open {
  display: block;
}

/* =====================================================
   Q&A Section - PC
   よくある質問セクション（PC版）
   ===================================================== */

.qa-section-pc {
  width: 100%;
  padding: 80px 40px;
  background: #f8f8f8;
}

.qa-container-pc {
  max-width: 1200px;
  margin: 0 auto;
}

.qa-header-pc {
  text-align: center;
  margin-bottom: 50px;
}

.qa-label-pc {
  font-size: 16px;
  color: #51b049;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.qa-title-pc {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.qa-list-pc {
  max-width: 900px;
  margin: 0 auto;
}

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

.qa-item-pc:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.qa-question-pc {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 24px 30px;
  background: #ffcc31;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: background 0.2s ease;
  border-radius: 8px;
}

.qa-question-pc:hover {
  background: #ffcc31;
  opacity: 0.9;
}

.qa-q-icon-pc {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: white;
  color: #d36363;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.qa-q-text-pc {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}

.qa-toggle-pc {
  flex-shrink: 0;
  font-size: 28px;
  color: #d36363;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.qa-question-pc.active .qa-toggle-pc {
  transform: rotate(45deg);
}

.qa-answer-pc {
  padding: 0;
  background: #fafafa;
  border-top: 1px solid #e8e8e8;
  overflow: hidden;
  transition: all 0.3s ease;
}

.qa-answer-text-pc {
  padding: 30px;
  font-size: 15px;
  color: #333;
  font-weight: 700;
  line-height: 1.9;
  margin: 0;
}

.qa-highlight-pc {
  color: #c62828;
  font-size: 1.2em;
}

.qa-buttons-row-pc {
  display: flex;
  gap: 16px;
  padding: 0 30px 30px;
}

.qa-contact-btn-pc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 24px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qa-contact-btn-pc:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.qa-contact-btn-pc:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.phone-qa-btn-pc {
  background: linear-gradient(135deg, #51b049 0%, #469a3e 100%);
}

.email-qa-btn-pc {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.qa-btn-icon-pc {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.qa-btn-text-pc {
  flex: 1;
  position: relative;
  z-index: 1;
}

.qa-btn-top-pc {
  font-size: 12px;
  color: white;
  margin: 0 0 4px 0;
  font-weight: 500;
  opacity: 0.95;
}

.qa-btn-main-pc {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin: 0 0 2px 0;
  letter-spacing: 0.5px;
}

.qa-btn-bottom-text-pc {
  font-size: 12px;
  color: white;
  margin: 0;
  font-weight: 400;
  opacity: 0.9;
}

.email-qa-btn-pc .qa-btn-main-pc,
.email-qa-btn-pc .qa-btn-top-pc,
.email-qa-btn-pc .qa-btn-bottom-text-pc {
  color: #333;
}

/* =====================================================
   Message Section - PC
   メッセージセクション（PC版）
   ===================================================== */

.message-section-pc {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.message-img-pc {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =====================================================
   Form Components - PC/Tablet Layout
   ===================================================== */

/* Contact Form Section */
.section-contact {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 76px 20px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

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

.form-field-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.badge-required {
  padding: 4px 12px;
  background: #d36363;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: white;
  white-space: nowrap;
}

.badge-optional {
  padding: 4px 12px;
  background: #429d39;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: white;
  white-space: nowrap;
}

.badge-required {
  padding: 4px 12px;
  background: #e04b4b;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: white;
  white-space: nowrap;
}

.form-field-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
}

.form-field-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.form-field-label {
  min-width: 140px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  padding-top: 12px;
}

.form-field-label-wrapper {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-field-note {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #333;
}

.form-field-input {
  flex: 1;
  height: 40px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 12px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #333;
}

.form-field-input-wide {
  width: 100%;
  max-width: 400px;
}

.form-field-input-short {
  width: 140px;
}

.form-field-input-date {
  width: 180px;
}

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

.form-date-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.form-date-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-date-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  min-width: 100px;
}

.form-separator {
  width: 100%;
  height: 0;
  background: none;
  border-top: 2px dashed #e0e0e0;
  margin: 24px 0;
}

.form-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.form-button-inline {
  display: flex;
  gap: 8px;
}

.form-btn {
  height: 40px;
  padding: 0 20px;
  background: white;
  border: 1px solid #333;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.form-btn-small {
  padding: 0 24px;
}

.form-btn-selected {
  background: #333;
  color: white;
}

.form-btn:hover {
  opacity: 0.8;
}

.form-field-textarea {
  width: 100%;
  min-height: 120px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 12px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #333;
  resize: vertical;
}

.form-field-textarea-large {
  min-height: 160px;
}

.form-field-textarea::placeholder {
  color: #999;
}

.form-environment-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.form-environment-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-environment-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  min-width: 160px;
}

.form-consent-box {
  width: 100%;
  background: #d8edd6;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 32px 0;
}

.form-consent-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-consent-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #003a60;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 2px;
}

.form-consent-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  cursor: pointer;
  flex: 1;
}

.form-submit-container {
  display: flex;
  justify-content: center;
  margin: 32px 0 80px;
}

.form-submit-button {
  width: 360px;
  height: 60px;
  background: linear-gradient(180deg, #ffcb31 0%, #f7ba00 100%);
  border: 2px solid #004a7f;
  border-radius: 8px;
  box-shadow: 0 4px 0 #003a60;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #003a60;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit-button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #003a60;
}

.form-submit-button:active {
  transform: translateY(4px);
  box-shadow: none;
}

/* ファイル選択フィールド（複数写真アップロード） */
.form-photo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.form-photo-select {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-photo-input {
  display: none;
}

.form-photo-button {
  height: 40px;
  padding: 0 24px;
  background: white;
  border: 1px solid #003a60;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #003a60;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.form-photo-button:hover {
  background: #003a60;
  color: white;
}

.form-photo-hint {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
}

.form-photo-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-photo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.form-photo-name {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #003a60;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-photo-remove {
  width: 24px;
  height: 24px;
  background: #df4949;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  line-height: 1;
  padding: 0;
}

.form-photo-remove:hover {
  background: #c93a3a;
}

/* フォーム送信ポップアップ */
.form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.4s ease;
}

.form-popup-content {
  background: white;
  border-radius: 20px;
  padding: 100px 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 58, 96, 0.3);
  max-width: 560px;
  width: 90%;
  animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  border: 3px solid #ffcb31;
}

.form-popup-message {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #003a60;
  line-height: 1.9;
  text-align: center;
  position: relative;
}

.form-popup-message::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  animation: iconPulse 0.6s ease 0.2s both;
}

.form-popup-message.success {
  color: #003a60;
}

.form-popup-message.success::before {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.form-popup-message.success::after {
  content: '✓';
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 38px;
  color: white;
  font-weight: 700;
  animation: checkmark 0.5s ease 0.4s both;
}

.form-popup-message.error {
  color: #003a60;
}

.form-popup-message.error::before {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  box-shadow: 0 4px 20px rgba(244, 67, 54, 0.4);
}

.form-popup-message.error::after {
  content: '✕';
  position: absolute;
  top: -66px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  color: white;
  font-weight: 700;
  animation: errorShake 0.5s ease 0.4s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes iconPulse {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes checkmark {
  0% {
    transform: translateX(-50%) scale(0) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes errorShake {
  0%, 100% {
    transform: translateX(-50%) translateX(0);
    opacity: 1;
  }
  25% {
    transform: translateX(-50%) translateX(-8px);
  }
  75% {
    transform: translateX(-50%) translateX(8px);
  }
}

/* Section Header - Contact Form */
.section-header-centered {
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #51b049;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* =====================================================
   Footer Styles - PC/Tablet Layout
   ===================================================== */

.footer {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: 45px 40px 50px;
  margin-top: 10px;
  background: #2d5a7a;
  overflow-x: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #004878;
  z-index: 0;
}

.footer-link {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
}

.footer-link a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  padding: 0 4px;
}

.footer-link a:hover {
  opacity: 0.7;
}

.footer-area {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
  padding: 32px 50px 40px;
  border-radius: 20px;
  background: white;
}

.bg-8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  z-index: 0;
}

.ttl-13 {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #003a60;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.rectangle-4 {
  display: none;
}

.text-wrapper-67 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  letter-spacing: 1px;
}

.txt-133,
.txt-134 {
  position: relative;
  z-index: 1;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #003a60;
  line-height: 26px;
  margin-bottom: 20px;
  max-width: 650px;
  padding-right: 30px;
}

.txt-133 {
  margin-top: 0;
}

.txt-134 {
  margin-bottom: 0;
}

.text-wrapper-65 {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.text-wrapper-66 {
  font-weight: 400;
  letter-spacing: 0.2px;
  display: block;
}

.here-wrapper {
  position: absolute;
  top: 110px;
  right: 50px;
  width: 220px;
  height: 220px;
  z-index: 1;
}

.here-2 {
  width: 100%;
  height: 100%;
  background-image: url('../images/pc/map.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.map-circle {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  border: 3px solid #d94a4a;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.footer-copyright {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 36px;
  letter-spacing: 0.3px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px 40px;
  }

  .footer-area {
    padding: 25px 20px 30px;
  }

  .here-wrapper {
    position: static;
    width: 100%;
    max-width: 200px;
    height: 200px;
    margin: 24px auto 0;
  }

  .txt-133,
  .txt-134 {
    margin-bottom: 12px;
    max-width: 100%;
    padding-right: 0;
  }

  .footer-link {
    font-size: 14px;
    gap: 0;
  }

  .footer-link a {
    padding: 0 3px;
  }

  .map-circle {
    width: 90px;
    height: 90px;
    border-width: 2px;
    bottom: 20px;
  }
}

/* Footer SVG Section */
.footer-svg-pc {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.footer-svg-image-pc {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.footer-privacy-link-pc {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 15px;
  cursor: pointer;
  z-index: 10;
}

.footer-privacy-link-pc:hover {
  opacity: 0.8;
}
