/* ==========================================================================
   style.css — 就労継続支援B型「作業所 大和」営業提案用デモLP スタイルシート
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. デザインシステムと変数定義 (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* カラーパレット (優しいトーンで安心感と信頼感を表現) */
  --primary-color: #2e7d32;       /* 深みのあるグリーン：信頼・自然・若葉 */
  --primary-light: #e8f5e9;       /* 非常に淡いグリーン：背景・カード */
  --secondary-color: #1976d2;     /* 誠実なブルー：知性・安心・冷静 */
  --secondary-light: #e3f2fd;     /* 非常に淡いブルー：背景 */
  --accent-color: #e65100;        /* 温かみのあるオレンジ：親しみ・活動性 */
  --accent-light: #fff3e0;        /* 非常に淡いオレンジ */
  
  /* ニュートラルカラー */
  --text-main: #263238;           /* 視認性の高いダークスレートグレー (コントラスト比確保) */
  --text-muted: #546e7a;          /* やや落ち着いたグレー */
  --bg-base: #fafaf9;             /* 温かみのあるごく淡いベージュがかった白 */
  --bg-card: #ffffff;             /* カード背景用の純白 */
  --border-color: #cfd8dc;        /* 線・枠線用 */
  
  /* フォントシステム */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-logo: 'Outfit', 'Noto Sans JP', sans-serif;
  
  /* シャドウ・装飾 */
  --shadow-sm: 0 2px 4px rgba(38, 50, 56, 0.08);
  --shadow-md: 0 4px 12px rgba(38, 50, 56, 0.12);
  --shadow-lg: 0 10px 24px rgba(38, 50, 56, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* トランジション */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------------------------------
   1. 基本設定とリセット (Base Styles & Reset)
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--bg-base);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-color);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --------------------------------------------------------------------------
   2. 共通コンポーネント (Global Utility Components)
   -------------------------------------------------------------------------- */
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-subtitle {
  display: block;
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--secondary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}

/* ボタン (Buttons) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  gap: 8px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #bf360c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.3);
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   3. ヘッダー (Header) - モバイルレイアウト
   -------------------------------------------------------------------------- */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(207, 216, 220, 0.5);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* モバイルではヘッダー内ナビゲーションと電話番号は非表示に */
.header-nav {
  display: none;
}

.header-contact {
  display: none;
}

/* --------------------------------------------------------------------------
   4. ヒーローセクション (Hero Section)
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, var(--secondary-light) 0%, #ffffff 100%);
  padding: 40px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

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

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.hero-content h1 .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: rgba(76, 175, 80, 0.2);
  z-index: -1;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.hero-actions .btn {
  width: 100%;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   5. 特徴セクション (Features Section)
   -------------------------------------------------------------------------- */
.features-section {
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-card {
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 二つ目のカードの色をブルー基調にする */
.feature-card:nth-child(2) {
  background-color: var(--secondary-light);
}

.feature-card:nth-child(2) .feature-icon {
  color: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   6. お仕事内容セクション (Jobs Section)
   -------------------------------------------------------------------------- */
.jobs-section {
  background-color: var(--bg-base);
}

.jobs-content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.jobs-image-wrapper {
  width: 100%;
}

.jobs-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.jobs-info-wrapper {
  display: flex;
  flex-direction: column;
}

.jobs-info-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.jobs-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.jobs-list {
  margin-bottom: 30px;
}

.jobs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.list-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* 工賃表示ボックス (Wage Box) */
.wage-box {
  background-color: var(--accent-light);
  border: 1px solid rgba(230, 81, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.wage-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.wage-icon {
  font-size: 1.2rem;
}

.wage-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.wage-label {
  font-size: 0.95rem;
  color: var(--text-main);
}

.wage-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--font-logo);
  margin: 0 4px;
}

.wage-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. 施設内観セクション (Interior Section)
   -------------------------------------------------------------------------- */
.interior-section {
  background-color: #ffffff;
}

.interior-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.interior-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interior-text-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.interior-text-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.interior-image-content {
  width: 100%;
}

.interior-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   8. 1日のスケジュール (Schedule Section)
   -------------------------------------------------------------------------- */
.schedule-section {
  background-color: var(--bg-base);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

/* 縦のタイムライン線 */
.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background-color: var(--primary-light);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 45px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* 時間表示ドット */
.timeline-time {
  position: absolute;
  left: 0;
  top: 3px;
  width: 66px;
  text-align: center;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 0;
  border-radius: var(--radius-full);
  z-index: 1;
  font-family: var(--font-logo);
}

.timeline-content {
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 昼休みのスケジュールアイテムのみブルーにする */
.timeline-item:nth-child(3) .timeline-time {
  background-color: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   9. 基本情報セクション (Info Section)
   -------------------------------------------------------------------------- */
.info-section {
  background-color: #ffffff;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-table-wrapper {
  width: 100%;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th, .info-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  text-align: left;
}

.info-table th {
  font-weight: 700;
  color: var(--text-main);
  background-color: var(--primary-light);
  width: 30%;
  vertical-align: middle;
  min-width: 110px;
}

.info-table td {
  color: var(--text-muted);
  line-height: 1.6;
}

.phone-link, .email-link {
  font-weight: 700;
  color: var(--secondary-color);
}

.phone-link:hover, .email-link:hover {
  text-decoration: underline;
}

.info-visual-wrapper {
  width: 100%;
}

.visual-card {
  background-color: var(--bg-base);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(207, 216, 220, 0.5);
}

.exterior-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.visual-content {
  padding: 24px;
}

.visual-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual-content h4 i {
  color: var(--primary-color);
}

.visual-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-wrapper {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-base);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   9.5. 採用情報セクション (Recruit Section)
   -------------------------------------------------------------------------- */
.recruit-section {
  background-color: var(--secondary-light);
}

.recruit-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(25, 118, 210, 0.15);
}

.recruit-content {
  text-align: center;
}

.recruit-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.4;
}

.recruit-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.recruit-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.recruit-phone-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. お問い合わせセクション (Contact Section)
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--primary-light);
}

.contact-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.contact-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-body {
  display: flex;
  flex-direction: column;
}

/* 直接のお問い合わせ (Phone/Email) */
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.direct-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-base);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(207, 216, 220, 0.4);
}

.direct-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.direct-box:nth-child(2) .direct-icon {
  color: var(--secondary-color);
}

.direct-text {
  display: flex;
  flex-direction: column;
}

.direct-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.direct-link-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-logo);
  line-height: 1.2;
}

.direct-link-email {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
  word-break: break-all;
}

.contact-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin-bottom: 30px;
}

/* お問い合わせフォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-group label .required {
  background-color: #d32f2f;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 500;
}

.form-group label .optional {
  background-color: var(--text-muted);
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-base);
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
}

.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid {
  border-color: #d32f2f;
  background-color: #ffebee;
}

/* エラーメッセージ */
.error-message {
  display: none;
  font-size: 0.75rem;
  color: #d32f2f;
  margin-top: 4px;
}

.form-agreement {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* 送信ボタンのインジケーター */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* サンクスメッセージ */
.thank-you-message {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn var(--transition-normal);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.thank-you-message h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.thank-you-message p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. フッター (Footer)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--text-main);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 20px 100px; /* 下部にスマホ電話ボタン分のパディングを確保 */
  border-top: 4px solid var(--primary-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.footer-logo .logo-icon {
  background-color: rgba(76, 175, 80, 0.2);
  color: #81c784;
}

.footer-logo .logo-text {
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-credits {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  text-align: center;
}

.creator {
  color: rgba(255, 255, 255, 0.5);
}

.creator-name {
  font-weight: 700;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   12. スマホ用フローティングアクションボタン (Phone CTA)
   -------------------------------------------------------------------------- */
.floating-phone-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 20%);
  display: block; /* デフォルト表示 */
  animation: slideUp 0.4s ease-out;
}

.btn-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(230, 81, 0, 0.4);
  transition: background-color var(--transition-fast);
  gap: 12px;
}

.btn-phone-cta:hover {
  background-color: #bf360c;
  color: #ffffff;
}

.cta-icon {
  font-size: 1.5rem;
  animation: pulse 1.5s infinite;
}

.cta-text {
  font-size: 0.85rem;
  line-height: 1.2;
}

.cta-phone-num {
  font-size: 1.25rem;
  font-family: var(--font-logo);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   13. レスポンシブ設計 (Tablet & Desktop Media Queries)
   -------------------------------------------------------------------------- */

/* タブレット・デスクトップ向け (768px以上) */
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  
  /* ヒーローセクション */
  .hero-section {
    padding: 60px 40px 80px;
  }
  
  .hero-container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  
  .hero-content {
    flex: 1.2;
    align-items: flex-start;
    text-align: left;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-desc {
    font-size: 1.05rem;
    max-width: none;
  }
  
  .hero-actions {
    flex-direction: row;
    width: auto;
  }
  
  .hero-actions .btn {
    width: auto;
  }
  
  .hero-visual {
    flex: 0.8;
  }
  
  /* 特徴グリッド */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* お仕事内容 */
  .jobs-content-block {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .jobs-image-wrapper {
    flex: 1;
  }
  
  .jobs-info-wrapper {
    flex: 1;
  }
  
  /* 内観 */
  .interior-block {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .interior-text-content {
    flex: 1;
    order: 2;
  }
  
  .interior-image-content {
    flex: 1;
    order: 1;
  }
  
  /* 1日のスケジュール */
  .timeline {
    padding-left: 0;
  }
  
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    width: 50%;
    padding-left: 0;
    margin-bottom: 40px;
  }
  
  /* タイムラインの左右配置 */
  .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 45px;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 45px;
  }
  
  .timeline-time {
    left: auto;
    right: -33px;
    top: 15px;
  }
  
  .timeline-item:nth-child(even) .timeline-time {
    right: auto;
    left: -33px;
  }
  
  /* 基本情報 */
  .info-grid {
    flex-direction: row;
    align-items: start;
    gap: 50px;
  }
  
  .info-table-wrapper {
    flex: 1.3;
  }
  
  .info-visual-wrapper {
    flex: 0.7;
  }
  
  /* お問い合わせ */
  .contact-card {
    padding: 50px 40px;
  }
  
  .contact-direct {
    flex-direction: row;
  }
  
  .direct-box {
    flex: 1;
  }
  
  .form-group-row {
    flex-direction: row;
  }
  
  .form-group-row .form-group {
    flex: 1;
  }
  
  /* スマホ電話ボタンは非表示 */
  .floating-phone-cta {
    display: none;
  }
}

/* デスクトップ向け (1024px以上) */
@media screen and (min-width: 1024px) {
  /* ヘッダー */
  .header-container {
    padding: 16px 20px;
  }
  
  .site-logo .logo-main {
    font-size: 1.35rem;
  }
  
  .header-nav {
    display: block;
  }
  
  .header-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .header-nav a {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
  }
  
  .header-nav a:hover {
    color: var(--primary-color);
  }
  
  .header-nav .btn-nav {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
  }
  
  .header-nav .btn-nav:hover {
    background-color: #1b5e20;
    color: #ffffff;
    transform: translateY(-1px);
  }
  
  .header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .contact-label {
    font-size: 0.7rem;
    color: var(--text-muted);
  }
  
  .contact-phone {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-logo);
  }
  
  /* フッター */
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-credits {
    border-top: none;
    padding-top: 0;
    align-items: flex-end;
    text-align: right;
  }
  
  .site-footer {
    padding: 60px 20px; /* デスクトップでは通常の余白 */
  }
}
