@charset "utf-8";
/* CSS Document */

/* ===== COMPONENT STYLES ===== */

/* Cards */
.info-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* 大会概要を目立たせる */
.info-card:first-of-type {
  border: 3px solid #007bff;
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.2);
}

.info-card:first-of-type .section-title {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  font-size: 1.6rem;
  padding: 2.5rem;
}

.contact-card,
.company-card {
  background: #495057;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}

.contact-card h3,
.company-card h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  padding: 0;
}

.contact-card h4,
.company-card h4 {
  color: #adb5bd;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding: 0;
}

/* Section Titles */
.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 12px 12px 0 0;
}

.section-title i {
  font-size: 1.3rem;
  opacity: 0.9;
  flex-shrink: 0;
}

/* Content Boxes */
.content-box {
  padding: 2.5rem;
}

.alert-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.warning-box {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-left: 4px solid #dc3545;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.highlight-section {
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

/* 日付を自然に目立たせる */
.attention {
  color: #dc3545 !important;
  font-weight: 700;
  font-size: 1.1em;
  background: #fff5f5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #f8d7da;
  display: inline-block;
  margin: 0 0.1rem;
}

.timeline-period {
  color: #007bff !important;
  font-weight: 700;
  font-size: 1.2rem;
  background: #f0f8ff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 2px solid #cce7ff;
  display: inline-block;
  margin: 0.5rem 0;
}

.info-value {
  font-size: 1.1rem;
  color: #212529;
  font-weight: 600;
}

/* 日付が含まれる値を強調 */
.info-value:contains("2026年"),
.info-value:contains("月"),
.info-value:contains("日") {
  background: #f0f8ff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  font-weight: 700;
}

/* Area Cards */
.area-card {
  display: block;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  text-decoration: none;
}

.area-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  display: inline-block;
}

.area-sports {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  padding: 0.5rem 0;
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
  color: white;
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(0);
}

/* タイムラインを削除して、シンプルなカード形式に変更 */
.timeline-section {
  margin: 3rem 0;
  padding: 0 1rem;
}

.timeline-section h3 {
  margin-bottom: 2rem;
}

.timeline-section p {
  margin-bottom: 2rem;
  padding: 0.5rem 0;
}

/* タイムラインアイテムをシンプルなカードに変更 */
.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  border-left: 5px solid #007bff;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  padding: 0;
}

.timeline-content {
  /* タイムライン関連のスタイルを削除 */
}

.timeline-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #495057;
}

.timeline-description p {
  padding: 0;
  margin-bottom: 1rem;
}

.timeline-notes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}

.timeline-notes li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #6c757d;
  padding-left: 1.5rem;
  position: relative;
}

.timeline-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #6c757d;
  font-weight: bold;
}

/* Tables - センター揃えとレスポンシブ対応 */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}

.data-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 1.25rem 0.75rem;
  text-align: center;
  border: 1px solid #dee2e6;
  vertical-align: middle;
  word-wrap: break-word;
}

.data-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #007bff;
  white-space: nowrap;
}

.data-table td {
  color: #212529;
  background: white;
}

.data-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.data-table tbody tr:hover {
  background: #e3f2fd;
}

/* 料金テーブル専用スタイル */
.rate-table {
  font-size: 0.85rem;
}

.rate-table th,
.rate-table td {
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 600;
}

.rate-table .price-cell {
  background: #e8f5e8;
  color: #155724;
  font-weight: 700;
}

/* Cancellation Table */
.cancellation-table {
  font-size: 0.85rem;
}

.cancellation-table th,
.cancellation-table td {
  text-align: center;
  padding: 1rem 0.5rem;
  border: 1px solid #dee2e6;
  font-weight: 600;
}

.cancellation-table .highlight-cell {
  background: #fff3cd !important;
  font-weight: 700;
  color: #856404;
  border: 2px solid #ffc107;
}

.cancellation-table thead th {
  background: #007bff;
  color: white;
  border: 1px solid #0056b3;
}

/* Important Notice */
.important-notice {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid #dee2e6;
  margin: 2rem 0;
}

/* Contact Info Sections */
.contact-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #007bff;
}

.contact-info p {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

/* Badges & Labels */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: #007bff;
  color: white;
}

.badge-warning {
  background: #ffc107;
  color: #212529;
}

.badge-danger {
  background: #dc3545;
  color: white;
}

.badge-success {
  background: #28a745;
  color: white;
}

/* 日程強調用のスタイル */
.date-highlight {
  background: #fff8e1;
  border: 2px solid #ffb74d;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  color: #e65100;
}

.schedule-highlight {
  background: #f0f8ff;
  border: 2px solid #64b5f6;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  color: #1565c0;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 -1rem;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideIn 0.8s ease-out;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Focus Indicators */
.focus-visible {
  outline: 3px solid #007bff;
  outline-offset: 3px;
}

/* Dividers */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #dee2e6, transparent);
  margin: 3rem 0;
}

.divider-thick {
  height: 3px;
  background: linear-gradient(to right, transparent, #007bff, transparent);
  margin: 4rem 0;
}

/* Status Indicators */
.status-dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.status-dot.active {
  background: #28a745;
}

.status-dot.inactive {
  background: #6c757d;
}

.status-dot.warning {
  background: #ffc107;
}

.status-dot.error {
  background: #dc3545;
}

/* Tooltips */
.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #212529;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  margin-bottom: 0.5rem;
}

.tooltip:hover::after {
  opacity: 1;
}

/* Progress Indicators */
.progress {
  width: 100%;
  height: 0.75rem;
  background: #e9ecef;
  border-radius: 0.375rem;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transition: width 0.8s ease;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 1.2rem;
  border-radius: 0.3rem;
  margin-bottom: 0.75rem;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 80%;
}

.skeleton-text.long {
  width: 100%;
}

/* Special Sections */
.timeline-section {
  margin: 3rem 0;
  padding: 0 1rem;
}

.timeline-section h3 {
  margin-bottom: 2rem;
}

.timeline-section p {
  margin-bottom: 2rem;
  padding: 0.5rem 0;
}
/* フッター関連 - スペースを詰める */
footer {
  background: #f8f9fa;
  color: #666;
  padding: 1.5rem 1rem 0.5rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid #dee2e6;
}

footer section {
  margin-bottom: 1rem;
}

footer h2,
footer h3 {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

footer a {
  color: #007bff;
}

footer a:hover {
  color: #0056b3;
}

footer p {
  padding: 0;
  margin-bottom: 0.5rem;
  color: #666;
  line-height: 1.4;
}

footer .section-title {
  font-size: 1.1rem;
  background: #e9ecef;
  color: #666;
  padding: 1rem 1.5rem;
  margin-bottom: 0;
}

footer .contact-card,
footer .company-card {
  background: #fff;
  color: #666;
  border: 1px solid #dee2e6;
  padding: 1rem;
  margin-bottom: 1rem;
}

footer .contact-card h3,
footer .company-card h3 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
  padding: 0;
}

footer .contact-card h4,
footer .company-card h4 {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 0.25rem;
  padding: 0;
}

footer .attention {
  color: #dc3545 !important;
  background: #fff5f5;
  border-color: #f8d7da;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.1rem 0.3rem;
}

.footer-info {
  text-align: center;
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  color: #777;
}

.footer-info p {
  margin-bottom: 0.25rem;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.footer-logos img {
  height: 2.5rem;
  width: auto;
}

.p-m{
	width: auto;
	min-height: 90px!important;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.footer-links a {
  font-size: 0.9rem;
  padding: 0.25rem;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  padding: 0.75rem 0 0.25rem 0;
  border-top: 1px solid #dee2e6;
  margin-bottom: 0;
}

/* フッター内のコンタクト情報のスペースを詰める */
footer .contact-details {
  margin: 0.5rem 0;
  padding: 0;
}

footer .contact-item {
  margin-bottom: 0.25rem;
  padding: 0.25rem 0;
}

footer .contact-item i {
  width: 1.2rem;
}

footer .address-info {
  padding: 0;
  margin: 0.5rem 0;
}

footer .address-info p {
  margin-bottom: 0.25rem;
  padding: 0.25rem 0;
}

footer .manager-info {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #dee2e6;
}

footer .manager-info p {
  margin-bottom: 0.25rem;
}

footer .registration-info {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

footer .certification-info {
  padding: 0.5rem;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

footer .certification-info span {
  font-size: 0.9rem;
}

footer .company-info {
  margin: 0.5rem 0;
  padding: 0;
}

/* ===== NAVIGATION STYLES ===== */

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Main Navigation */
.main-nav {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  position: static;
  top: auto;
}

.nav-container {
  position: relative;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ハンバーガーメニューボタン */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hamburger-btn:hover {
  background-color: #f8f9fa;
}

.hamburger-line {
  width: 1.5rem;
  height: 2px;
  background-color: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* ハンバーガーメニューアニメーション */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ナビゲーションメニュー */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: #495057;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: #007bff;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-link i {
  font-size: 0.8rem;
  opacity: 0.8;
}

.nav-link:hover i {
  opacity: 1;
}

/* アクティブ状態 */
.nav-link.active {
  background-color: #007bff;
  color: white;
}

/* ヘッダー画像（独立） */
.header-image {
  text-align: center;
  margin: 8rem 0 2rem 0; /* 固定ヘッダー分の上マージン追加 */
  padding: 0 1rem;
}

.header-image img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* スムーズスクロール用のオフセット */
html {
  scroll-padding-top: 5rem; /* 固定ヘッダーの高さ分 */
}

/* セクションにIDを追加したときの調整 */
section[id] {
  scroll-margin-top: 5rem; /* 固定ヘッダーの高さ分 */
}

/* Body padding for fixed header */
body {
  padding-top: 0; /* 固定ヘッダー用のパディングは不要（画像で調整） */
}
/* ===== YES/NO PAGE SIMPLE STYLES ===== */

/* メインコンテンツエリア */
#yesnocontents {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* センター揃えテキスト */
.center {
  text-align: center;
  font-size: 1rem;
  margin: 1.5rem 0;
}

/* 利用規約リスト */
#yesnocontents > div ul {
  margin: 2rem 0;
  padding: 0;
}

#yesnocontents > div ul li {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* リンクスタイル */
#yesnocontents ul li a {
  color: #007bff;
  text-decoration: underline;
}

#yesnocontents ul li a:hover {
  color: #0056b3;
}

/* YES/NO ボタンセクション */
.yes_no {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.yes_no p {
  margin: 0;
  flex: 1;
  max-width: 300px;
}

.yes_no a {
  display: block;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  border: 2px solid;
}

/* YES ボタン */
.yes_no p:first-child a {
  background: #28a745;
  color: white;
  border-color: #28a745;
}

.yes_no p:first-child a:hover {
  background: #218838;
  border-color: #218838;
}

/* NO ボタン */
.yes_no p:last-child a {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}

.yes_no p:last-child a:hover {
  background: #c82333;
  border-color: #c82333;
}

/* ボタン内のspan */
.yes_no a span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* 確認テキスト */
#yesnocontents > p.center:last-of-type {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 1rem;
  margin: 2rem 0;
  font-weight: 600;
}

/* シンプル版 */
.header-title-simple {
  text-align: center;
  margin: 8rem 0 3rem 0;
  padding: 0 1rem;
}

.header-title-simple h1 {
  background: #007bff;
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.header-title-simple .main-title {
  display: block;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.header-title-simple .sub-title {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.header-title-simple .area-list {
  display: block;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.6;
}

.header-title-simple .area-group {
  display: inline-block;
  margin: 0.25rem 0.5rem;
}