@charset "utf-8";
/* CSS Document */

body, html {
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0; /* これで画面の左端に固定 */
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    transition: background-color 0.3s, backdrop-filter 0.3s;
    z-index: 1000;
}

body {
    max-width: 1000px; /* 全体のコンテンツ幅を設定 */
    margin: 0 auto; /* 中央に配置 */
    background-color: #f5f5f5; /* 背景色 */
    color: #333;
    font-family: Arial, sans-serif;
    padding: 0;
}

/* Header and Footer adjustments remain the same */

.event-image {
    padding: 40px 0px 0px 0px;
    background-color: #ffffff;
    text-align: center;
    margin-bottom: 0; /* イベント画像セクションの下のスペースを無くす */
}

.large-font{font-size: 150%; font-weight: bolder}
.small-font{font-size: 70%;}

.event-image img {
    width: 100%; /* 100%幅にする */
    max-width: 1000px; /* 最大幅を制限 */
    height: auto;
	display: block;
}

/* Venue Information Section */
.venue-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* イベント詳細 */
.event-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-box {
    background-color: #fff;
    border-left: 5px solid #FF9600;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.detail-box h2 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.detail-box p {
    margin: 0;
    font-size: 16px;
    color: #444;
}

.large-font {
    font-size: 1.2em;
    font-weight: bold;
}

.small-font {
    font-size: 0.9em;
    color: #666;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .event-details {
        grid-template-columns: 1fr; /* モバイル時は1列表示 */
    }
}



footer {
    background-color: #ffffff;
    padding: 20px 0;
    border-top: 1px solid #ccc;
}

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

.contact-heading {
    background-color: #ff6600; /* Orange background */
    color: #ffffff; /* White text */
    padding: 10px 15px;
    border-radius: 5px 0 0 5px; /* Slight rounding for a neat effect */
    flex: 1;
    text-align: center;
}

.contact-info {
    flex: 2;
    text-align: left;
    padding-left: 50px;
}

.contact-qr {
    flex: 1;
    text-align: center;
}

.contact-qr img {
    max-width: 80px; /* QR code size */
    height: auto;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-heading, .contact-info, .contact-qr {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-heading {
        border-radius: 5px; /* Adjusted for mobile display */
    }
}

@media (max-width: 768px) {
    .venue-info {
        flex-direction: column;
    }
	.main-content {
    margin-left: 0;
  }

    header {
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(5px);
    }

    .event-image img {
        max-width: 100%; /* モバイル時はフル幅で表示 */
		  padding-top: 60px; /* headerの高さ分 */
    }
}

.styled-title {
    display: flex;
	align-items: center; /* 垂直方向に中央揃え */
	font-weight: bold;
    color: #007bff; /* 青文字 */
    font-size: 1em; /* サイズ調整（必要に応じて変更） */
    text-shadow: 
        -1px -1px 0 #ffffff,  
        1px -1px 0 #ffffff,  
        -1px 1px 0 #ffffff,  
        1px 1px 0 #ffffff; /* 白いフチ */
    font-family: 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif; /* 見やすいフォント */
}



.styled-title img {
    margin-right: 10px; /* 画像とテキストの間にスペースを追加 */
}

.styled-title span {
    line-height: 1; /* 画像とテキストの高さを揃える */
}

@media (min-width: 769px) {
  .main-content {
    margin-left: 220px;
  }
}



/* 普通の枠 */
.text-section {
  background-color: #ffffff;
  padding: 20px;
  margin: 0px auto;
  max-width: 1000px;
  font-size: 1em;
  line-height: 1.8;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}


/* ボタン */
.form-button-wrapper {
  text-align: center;
  margin: 30px 0;
}

.form-button {
  display: inline-block;
  background: linear-gradient(to right, #ff8c42, #ff6f61);
  color: #fff;
  padding: 14px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}



/* テーブルのCSSスタイルを追加 */

  .schedule-table {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .schedule-table caption {
    font-size: 1.5em;
    font-weight: bold;
    padding: 16px;
    background-color: #007BFF;
    color: white;
    text-align: left;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 0.95em;
  }

  .schedule-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .schedule-table tr:hover {
    background-color: #f1f7ff;
  }

  .schedule-table td:first-child {
    width: 160px;
    font-weight: bold;
    color: #333;
  }

  @media (max-width: 768px) {
    .schedule-table caption {
      font-size: 1.2em;
    }
    .schedule-table th,
    .schedule-table td {
      font-size: 0.9em;
      padding: 12px;
    }
    .schedule-table td:first-child {
      width: auto;
    }
  }

/* タイトル用のスタイル */
  .schedule-title {
    font-size: 150%;
    font-weight: bold;
    color: #0056b3;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #cce5ff;
    padding-bottom: 0.5rem;
  }

/* スケジュール切り替え */
.schedule-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  padding: 10px 0;
}

.schedule-nav a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e6f4ff; /* 薄い水色 */
  color: #0056b3;             /* 青文字 */
  text-decoration: none;
  border: 1px solid #b3d7f0;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.schedule-nav a:hover {
  background-color: #cce6ff;
  color: #003f8a;
  transform: scale(1.05);
}

/* ページタイトル */
.page-title {
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  color: #0056b3;
  margin: 2rem auto 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #cce5ff;
  max-width: 800px;
}

/* 見出し（section用） */
.section-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
  margin: 2rem 0 1rem;
  padding-left: 8px;
  border-left: 4px solid #007bff;
}

/* オンライン視聴ボタン */

.video-section {
  text-align: center;
  padding: 50px 20px;
}

.video-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  gap: 30px;
}

.video-text {
  flex: 2;
}

.video-text h2 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.video-btn {
  display: inline-block;
  background: linear-gradient(to right, #ff8c42, #ff6f61);
  color: #fff;
  padding: 12px 28px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.video-qr {
  flex: 1;
}

.video-qr img {
  width: 120px;
  height: auto;
}

/* モバイル表示 */
@media (max-width: 768px) {
  .video-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .video-text h2 {
    font-size: 1.1em;
  }

  .video-qr img {
    width: 140px;
  }
}
