@charset "utf-8";
/* CSS Document - 既存CSSとの干渉を防ぐバージョン */

/* 全体のリセットをより詳細度高く指定 */
.container.tac,
.training-item .tac {
  text-align: center !important;
}

/* 基本リセット - より詳細度を高める */
article.container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ヘッダー部分 */
body header.header {
  background: url('../images/kaisou_head.jpg') center center no-repeat !important;
  background-size: cover !important;
  color: white !important;
  padding: 0 !important;
  text-align: center !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 auto 3rem !important;
  width: 980px !important;
  height: 300px !important;
  min-height: 300px !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}

body header.header::before {
  content: none !important;
  display: none !important;
}

/* 波形カット削除 */
body header.header::after {
  content: none !important;
  display: none !important;
}

body header.header .header-content {
  position: relative !important;
  z-index: 1 !important;
  width: 980px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  height: 300px !important;
}

body header.header h1 {
  text-indent: -9999px !important;
  overflow: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: absolute !important;
}

body header.header p {
  text-indent: -9999px !important;
  overflow: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: absolute !important;
}

/* コンテナ */
article.container {
  width: 980px !important;
  margin: 0 auto !important;
  padding: 2rem 0 !important;
  max-width: none !important;
  min-width: 0 !important;
}

/* トップセクション */
article.container .top-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  margin-bottom: 2.5rem !important;
}

/* ベネフィットセクションとナビゲーションセクション */
article.container .benefits-section,
article.container .nav-section {
  background: white !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  border: none !important;
  list-style: none !important;
}

article.container .benefits-section:hover,
article.container .nav-section:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

article.container .benefits-section h2,
article.container .nav-section h2 {
  color: #3d5ba8 !important;
  font-size: 2.8rem !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 0.8rem !important;
  border-bottom: 3px solid #5b71d7 !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

article.container .benefits-section h2::before {
  content: '✓' !important;
  display: inline-flex !important;
  width: 32px !important;
  height: 32px !important;
  background: linear-gradient(135deg, #3d5ba8 0%, #3d5ba8 100%) !important;
  color: white !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
}

article.container .nav-section h2::before {
  content: '≡' !important;
  display: inline-flex !important;
  width: 32px !important;
  height: 32px !important;
  background: linear-gradient(135deg, #3d5ba8 0%, #3d5ba8 100%) !important;
  color: white !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  flex-shrink: 0 !important;
}

/* ベネフィットアイテム */
article.container .benefit-item {
  margin-bottom: 1.3rem !important;
  padding: 1rem !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border-radius: 10px !important;
  border-left: 4px solid #5b71d7 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  transition: all 0.3s ease !important;
  list-style: none !important;
}

article.container .benefit-item:hover {
  transform: translateX(3px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  border-left-color: #e74c3c !important;
}

article.container .benefit-item:last-child {
  margin-bottom: 0 !important;
}

article.container .benefit-title {
  font-weight: bold !important;
  color: #5b71d7 !important;
  margin-bottom: 0.4rem !important;
  font-size: 2.0rem !important;
}

article.container .benefit-desc {
  color: #4a5568 !important;
  line-height: 1.7 !important;
  font-size: 1.8rem !important;
  margin-left: 1.5rem !important;
  margin-bottom: 0 !important;
}

/* ナビゲーションカテゴリ */
article.container .nav-category {
  margin-bottom: 1.5rem !important;
}

article.container .nav-category:last-child {
  margin-bottom: 0 !important;
}

article.container .nav-category-title {
  font-weight: 700 !important;
  color: #5b71d7 !important;
  font-size: 2.3rem !important;
  margin-bottom: 0.8rem !important;
  padding-left: 1rem !important;
  border-left: 4px solid #e74c3c !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
}

/* ナビゲーションリスト */
article.container .nav-list {
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.7rem !important;
  padding-left: 1rem !important;
  margin: 0 !important;
}

article.container .nav-list li {
  margin-bottom: 0 !important;
  list-style: none !important;
  margin: 0 !important;
}

article.container .nav-link {
  color: #2d3748 !important;
  text-decoration: none !important;
  font-size: 1.8rem !important;
  font-weight: 500 !important;
  display: inline-block !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 24px !important;
  transition: all 0.5s ease !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%) !important;
  border: 2px solid transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

article.container .nav-link::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
}

article.container .nav-link:hover::before {
  left: 100% !important;
}

article.container .nav-link:hover {
  background: linear-gradient(135deg, #5b71d7 0%, #2c5aa0 100%) !important;
  color: white !important;
  border-color: #5b71d7 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(91, 113, 215, 0.3) !important;
}

/* 研修風景ギャラリー */
body article.container .gallery-section {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 3rem 0 !important;
  box-shadow: none !important;
  border: none !important;
}

body article.container .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem !important;
  margin-top: 0 !important;
}

body article.container .gallery-item {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  background: #f8f9fa !important;
}

body article.container .gallery-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

body article.container .gallery-item img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease !important;
}

body article.container .gallery-item:hover img {
  transform: scale(1.05) !important;
}

/* トレーニングセクション */
article.container .training-sections {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
}

article.container .section-block {
  background: white !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
  scroll-margin-top: 2rem !important;
	margin-top: 3rem !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
	
}

article.container .section-block::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 6px !important;
  background: linear-gradient(90deg, #5b71d7, #e74c3c, #f39c12, #5b71d7) !important;
  background-size: 200% 100% !important;
  animation: gradientShift 3s ease infinite !important;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

article.container .section-title {
  background: linear-gradient(135deg, #5b71d7 0%, #2c5aa0 100%) !important;
  color: white !important;
  padding: 1rem 1.5rem !important;
  border-radius: 12px !important;
  font-size: 2.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.8rem !important;
  box-shadow: 0 4px 12px rgba(91, 113, 215, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
}

/* トレーニンググリッド */
article.container .training-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 1.5rem !important;
  max-width: 100% !important;
}

@media (min-width: 781px) {
  article.container .training-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* パンフレットセクション */
article.container .pamphlet-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 2rem !important;
  border: 2px solid #2c5aa0 !important;
  box-shadow: 0 4px 12px rgba(91, 113, 215, 0.1) !important;
}

article.container .pamphlet-text {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #2c5aa0 !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}

article.container .pamphlet-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  justify-content: center !important;
}

article.container .pamphlet-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.3rem 1.7rem 0.3rem 1rem !important;
  background: white !important;
  border: 2px solid #2c5aa0 !important;
  border-radius: 25px !important;
  color: #2c5aa0 !important;
  text-decoration: none !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(91, 113, 215, 0.15) !important;
}

article.container .pamphlet-link:hover {
  background: linear-gradient(135deg, #5b71d7 0%, #2c5aa0 100%) !important;
  color: white !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 16px rgba(91, 113, 215, 0.3) !important;
  border-color: #2c5aa0 !important;
}

article.container .pamphlet-icon {
  font-size: 2.0rem !important;
  transition: transform 0.3s ease !important;
}

article.container .pamphlet-link:hover .pamphlet-icon {
  transform: scale(1.2) !important;
}

article.container .pamphlet-name {
  white-space: nowrap !important;
}

/* パンフレット一括ダウンロード */
article.container .pamphlet-bulk-download {
  margin-top: 1.5rem !important;
  padding-top: 1.5rem !important;
  border-top: 2px dashed #d1e0ff !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

article.container .bulk-download-link {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #2c5aa0 !important;
  text-decoration: none !important;
  padding: 0.3rem 1.2rem !important;
  background: white !important;
  border: 2px solid #2c5aa0 !important;
  border-radius: 20px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.15) !important;
}

article.container .bulk-download-link:hover {
  background: #e74c3c !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
}

/* トレーニングアイテム */
article.container .training-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  border-left: 5px solid #5b71d7 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  transition: all 0.3s ease !important;
  scroll-margin-top: 2rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  list-style: none !important;
  font-size: 1.8rem !important;
}

article.container .training-item:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  border-left-color: #e74c3c !important;
}

article.container .training-item:target {
  animation: highlight 1.5s ease !important;
}

@keyframes highlight {
  0%, 100% {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  50% {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    box-shadow: 0 8px 24px rgba(91, 113, 215, 0.3);
  }
}

/* トレーニング名 */
article.container .training-name {
  font-weight: bold !important;
  color: white !important;
  font-size: 2.4rem !important;
  margin-bottom: 1.5rem !important;
  padding: 1.2rem 1.5rem !important;
  background: linear-gradient(135deg, #5b71d7 0%, #2c5aa0 100%) !important;
  border-radius: 10px !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

article.container .training-name::before {
  content: '▶' !important;
  color: #ffd700 !important;
  font-size: 1.6rem !important;
}

article.container .training-name span {
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  white-space: nowrap !important;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* スケジュールリスト */
article.container .schedule-list {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
  list-style: none !important;
  padding: 0 1.5rem 0 1.5rem !important;
  margin: 0 !important;
}

article.container .schedule-row {
  margin-bottom: 0.8rem !important;
  display: flex !important;
  gap: 0.8rem !important;
  align-items: center !important;
  padding: 0.6rem !important;
  border-radius: 8px !important;
  transition: background 0.2s ease !important;
  border: none !important;
  list-style: none !important;
}

article.container .schedule-row:hover {
  background: #EEF2F8 !important;
}

article.container .schedule-row:last-child {
  margin-bottom: 0 !important;
}

article.container .schedule-year {
  font-weight: 700 !important;}

article.container .schedule-date {
  color: #3d5ba8 !important;
  font-size: 2.0rem !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  flex: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  white-space: pre !important;
}

article.container .schedule-margin-left1 {
 padding-left: 1em !important;
}

article.container .schedule-margin-left2 {
 margin-left: 3.5em !important;
}
article.container .schedule-margin-left3 {
 margin-left: 4.4em !important;
}


/* スケジュールリンク */
body article.container .schedule-link {
  color: #2c5aa0 !important;
  background: white !important;
  text-decoration: none !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.3rem !important;
  padding: 1.2rem 2rem !important;
  border-radius: 20px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(44, 90, 160, 0.15) !important;
  margin-left: auto !important;
  border: 2px solid #2c5aa0 !important;
  line-height: 1.4 !important;
  min-height: 44px !important;
}

body article.container .schedule-link::after {
  content: '→' !important;
  transition: transform 0.3s ease !important;
}

body article.container .schedule-link:hover {
  background: #e74c3c !important;
  color: white !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.25) !important;
  text-decoration: none !important;
  border-color: #1e3a5f !important;
}

body article.container .schedule-link:hover::after {
  transform: translateX(4px) !important;
}

/* スケジュールリスト内のリンク */
body article.container .schedule-list > .schedule-link {
  display: block !important;
  text-align: center !important;
  margin: 1rem auto 0 !important;
  width: 100% !important;
}

/* 特定のIDに対する調整 */
body article.container #buchou .schedule-row,
body article.container #kachou .schedule-row {
  flex-wrap: wrap !important;
}

body article.container #buchou .schedule-row .schedule-date,
body article.container #kachou .schedule-row .schedule-date {
  flex: 1 !important;
}

body article.container #buchou .schedule-link,
body article.container #kachou .schedule-link {
  flex-basis: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin: 0.5rem 0 0 0 !important;
}

/* 研修一覧へスクロールボタン */
#scroll-to-training {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 100px !important;
  height: 100px !important;
  background:linear-gradient(135deg, #5b71d7 0%, #2c5aa0 100%)  !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(91, 113, 215, 0.4) !important;
  z-index: 1000 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.3 !important;
  padding: 1rem !important;
  text-align: center !important;
}

#scroll-to-training.show {
  opacity: 1 !important;
  visibility: visible !important;
}

#scroll-to-training:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 8px 28px rgba(91, 113, 215, 0.5) !important;
  background: linear-gradient(135deg, #2c5aa0 0%, #5b71d7 100%) !important;
}

#scroll-to-training::before {
  content: '↑' !important;
  display: block !important;
  font-size: 2.2rem !important;
  margin-bottom: 0.2rem !important;
  line-height: 1 !important;
}

/* お問い合わせセクション */
article.container .contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border-radius: 20px !important;
  padding: 2.5rem !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
  margin-top: 3rem !important;
  position: relative !important;
  overflow: hidden !important;
}

article.container .contact-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 6px !important;
  background: linear-gradient(90deg, #5b71d7, #e74c3c, #f39c12, #5b71d7) !important;
  background-size: 200% 100% !important;
  animation: gradientShift 3s ease infinite !important;
}

article.container .contact-title {
  background: linear-gradient(135deg, #5b71d7 0%, #2c5aa0 100%)  !important;
  color: white !important;
  padding: 1rem 1.5rem !important;
  border-radius: 12px !important;
  font-size: 2.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.8rem !important;
  box-shadow: 0 4px 12px rgba(91, 113, 215, 0.3) !important;
  text-align: center !important;
  border: none !important;
}

article.container .contact-box {
  background: white !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  border: none !important;
}

article.container .contact-org {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: #3d5ba8 !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 2px solid #e8ecf1 !important;
}

article.container .contact-info {
  display: flex !important;
  flex-direction: row !important;
  gap: 3rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

article.container .contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

article.container .contact-label {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #2c5aa0 !important;
  flex-shrink: 0 !important;
}

article.container .contact-link,
article.container .contact-text {
  font-size: 2.0rem !important;
  font-weight: 600 !important;
  color: #3d5ba8 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

article.container .contact-link:hover {
  color: #e74c3c !important;
}