/* リセット＆基本設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* ヘッダー（固定） */
.header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

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

.header-logo {
  font-size: 20px;
  font-weight: 900;
  color: #1a5f3a;
}

.logo-image {
  height: 45px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-tel {
  color: #1a5f3a;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.header-tel-sub {
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}

.header-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ボタン共通 */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-label-small {
  font-size: 12px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a5f3a;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* ヒーロー */
.hero {
  background: linear-gradient(135deg, rgba(26, 95, 58, 0.15) 0%, rgba(45, 134, 89, 0.15) 100%), url('/wp-content/themes/shinjitsukai/img/lp-shindanshi-2026/hero-business.png');
  background-size: cover;
  background-position: center right;
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(26, 95, 58, 0.15) 0%, rgba(26, 95, 58, 0.08) 50%, rgba(26, 95, 58, 0.02) 100%);
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-catch {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  animation: fadeInUp 0.6s ease;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffd700;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.badge-online {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

/* 実務従事帯 */
.program-banner {
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  color: #fff;
  padding: 40px 20px;
}

.program-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.program-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 8px;
}

.program-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.line-discount-banner {
  background: #ffd700;
  color: #1a5f3a;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

.badge-limit {
  background: #ff6b35;
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  animation: pulse 2s ease infinite;
}

.badge-limit span {
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

/* セクション画像ヘッダー */
.section-image-header {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

/* メインコンテンツ */
.main-content {
  background: #fff;
  padding: 60px 20px;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* 左カラム：条件 */
.condition-item {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 3px solid #1a5f3a;
}

.condition-label {
  font-size: 18px;
  font-weight: 900;
  color: #1a5f3a;
  margin-bottom: 8px;
}

.condition-value {
  font-size: 32px;
  font-weight: 900;
  color: #333;
}

.condition-note {
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.condition-note-small {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

/* 料金表示 */
.price-old {
  font-size: 24px;
  font-weight: 700;
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  margin-right: 16px;
}

.price-new {
  font-size: 40px;
  font-weight: 900;
  color: #ff6b35;
  margin-right: 8px;
}

.highlight-box {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  margin-top: 16px;
}

.highlight-text {
  font-size: 20px;
  font-weight: 900;
  color: #1a5f3a;
  margin-bottom: 8px;
}

.highlight-note {
  font-size: 14px;
  color: #1a5f3a;
}

/* LINE割引インライン */
.line-discount-inline {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a5f3a;
  padding: 12px 20px;
  border-radius: 30px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.line-icon {
  font-size: 20px;
  margin-right: 8px;
}

.line-discount-inline strong {
  font-size: 18px;
  font-weight: 900;
}

/* 右カラム：スケジュール */
.schedule-title {
  font-size: 24px;
  font-weight: 900;
  color: #1a5f3a;
  margin-bottom: 8px;
}

.schedule-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.schedule-list {
  list-style: none;
  counter-reset: schedule-counter;
  margin-bottom: 24px;
}

.schedule-list li {
  counter-increment: schedule-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.schedule-list li::before {
  content: counter(schedule-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #1a5f3a;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 14px;
}

.schedule-note {
  font-size: 12px;
  color: #666;
  display: block;
  margin-top: 4px;
}

.schedule-notice {
  background: #f0f8f4;
  border-left: 4px solid #1a5f3a;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.schedule-notice p {
  margin-bottom: 8px;
}

.schedule-notice p:last-child {
  margin-bottom: 0;
}

/* 実務従事の内容 */
.content-section {
  background: #f0f8f4;
  padding: 60px 20px;
}

.content-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  font-weight: 900;
  color: #1a5f3a;
  margin-bottom: 24px;
  text-align: center;
}

.content-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
}

.content-checklist li {
  background: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 48px;
}

.content-checklist li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a5f3a;
  font-weight: 900;
  font-size: 20px;
}

/* コンテンツ画像カード */
.content-image-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.content-image-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.content-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.content-card-title {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #1a5f3a;
  text-align: center;
}

.content-description {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.field-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.field-item {
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #1a5f3a;
  border: 2px solid #1a5f3a;
}

/* 申込エリア */
.form-section {
  background: #fff;
  padding: 60px 20px;
}

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

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

.badge-limit-small {
  background: #ff6b35;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.form-title {
  font-size: 32px;
  font-weight: 900;
  color: #1a5f3a;
}

.application-form {
  background: #f0f8f4;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.required {
  background: #ff6b35;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 8px;
}

.optional {
  background: #999;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1a5f3a;
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
}

/* LINE導線 */
.line-section {
  margin-top: 40px;
}

.line-banner {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.line-text {
  font-size: 20px;
  font-weight: 900;
  color: #1a5f3a;
  margin-bottom: 16px;
}

.btn-line {
  background: #06c755;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  transition: all 0.3s ease;
}

.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.4);
}

/* TEL導線 */
.tel-section {
  margin-top: 24px;
  text-align: center;
}

.tel-text {
  font-size: 14px;
  color: #666;
}

.tel-link {
  color: #1a5f3a;
  font-weight: 700;
  text-decoration: none;
}

.tel-link:hover {
  text-decoration: underline;
}

/* フッター */
.footer {
  background: #1a5f3a;
  color: #fff;
  padding: 32px 20px;
  text-align: center;
}

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

.footer-org {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-link-text {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #1a5f3a;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.footer-link-text:hover {
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.footer-tel {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-link a {
  color: #ffd700;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.05);
  }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .logo-image {
      height: 35px;
  }

  .header-container {
      flex-direction: column;
      align-items: stretch;
  }

  .header-right {
      flex-direction: column;
      align-items: stretch;
  }

  .header-buttons {
      flex-direction: column;
  }

  .btn {
      width: 100%;
  }

  .btn-label-small {
    display: block;
  }

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

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

  .benefit-cards {
      grid-template-columns: 1fr;
  }

  .program-banner-container {
      flex-direction: column;
      text-align: center;
  }

  .program-title {
      font-size: 32px;
  }

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

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

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

  .highlight-text {
      font-size: 18px;
  }

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

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

  .application-form {
      padding: 24px;
  }
}

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

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

  .badge-limit {
      width: 120px;
      height: 120px;
      font-size: 18px;
  }
}