@charset "UTF-8";
/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
}
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  color: #000;
  line-height: 1.5;
  background: #fff;
  font-weight: 400;
}

p {
  margin-top: 10px;
}

.center {
  align-items: center;
  text-align: center;
}

.sp-br {
  display: none;
}

@media (max-width: 991px) {
  .sp-br {
    display: block;
  }
}
/* ==== スプラッシュ動画 ==== */
/* スプラッシュを画面いっぱいに */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* 余白が黒く見えないように */
  z-index: 1000; /* 最前面に */
  transition: opacity 0.8s ease; /* フェード用 */
}

#splash-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 16:9 → 全画面トリミング */
}

/* フェードアウト用クラス */
#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* メインは最初に非表示 → フェードイン */
#main.hidden {
  opacity: 0;
}

#main.visible {
  transition: opacity 0.8s ease;
  opacity: 1;
}

@media (max-width: 991px) {
  #splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.8s ease;
  }
  #splash-video {
    width: 100%;
    height: auto;
    /* アスペクト比を維持 */
    -o-object-fit: contain;
       object-fit: contain;
    /* 余白部分を黒背景にフィットさせるなら cover のままでも可 */
    position: absolute;
    /* 親の padding-top で比率ボックス内に収める場合 */
    top: 1;
    left: 0;
  }
}
.hidden {
  display: none;
}

/* ===== 固定 CTA ボタン（共通）===== */
.fixed-cta {
  position: fixed;
  left: 0;
  bottom: env(safe-area-inset-bottom, 0); /* iOS のホームバーを避ける */
  width: 100%;
  /* 見た目 */
  background: linear-gradient(to right, #005BAC 0%, #00C0F3 100%);
  color: #fff;
  font: 700 18px/1.2 "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 16px 0;
  text-decoration: none;
  /* 影とアニメ */
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
  z-index: 900; /* ヘッダーより上にしておく */
}

@media (min-width: 992px) { /* PC 幅では非表示 */
  .fixed-cta {
    display: none;
  }
}
@media (max-width: 991px) {
  body {
    padding-bottom: 52px;
  } /* ボタン高 + 余白 */
}
#main-content {
  display: flex;
  align-items: flex-start;
}

#main-content .column--left {
  flex: 0 0 320px;
  position: sticky;
  top: 0;
  /* ビューポート上端からの余白 */
  align-self: flex-start;
  /* 親の高さに合わせてくる */
}

#main-content .column--right {
  flex: 1 1 auto;
  /* grow=1 で余白をすべて取得 */
  min-width: 0;
  /* 子要素のはみ出し防止用 */
}

@media (max-width: 991px) {
  #main-content .column--left {
    display: none;
  }
  #main-content .column--right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ハンバーガー共通 */
.hamburger {
  position: fixed;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px; /* タップしやすい最小サイズ */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: none;
  cursor: pointer;
  z-index: 1100;
  /* ★ 背後に半透明の丸 + ぼかし */
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 900;
}

/* 三本線 */
.hamburger span {
  width: 24px;
  height: 3px;
  margin-left: 10px;
  background: #005bac;
  border-radius: 2px;
  transition: transform 0.4s, opacity 0.4s, background 0.3s;
}

/* 開いたときの×アイコン */
.hamburger.is-active {
  background: #005bac; /* 円を濃色に切り替え */
}

.hamburger.is-active span {
  background: #fff;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== モバイル用ナビ（スライドパネル） ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh; /* Safari のアドレスバー対策で 100svh */
  width: 80%;
  max-width: 300px;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%); /* 隠しておく */
  transition: transform 0.4s ease;
  z-index: 800;
  overflow-y: auto;
  padding: 90px 24px 32px; /* 上に余白（アイコン分）*/
}

.mobile-nav .logo {
  padding: 0 0px 20px;
}

.mobile-nav.open {
  transform: none;
} /* 表示時 */
/* メニューリスト */
.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__list li + li {
  margin-top: 10px;
}

.mobile-nav__list a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #005bac;
}

/* ===== 991px まではハンバーガーを見せ、PC 幅では非表示 ===== */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
    flex-direction: column;
  }
  /* PC 版のグローバルメニュー（例：.global-nav）を非表示にする場合 */
  .global-nav {
    display: none;
  }
}
/* 992px 以上ではモバイルナビ不要 */
@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
  .hamburger {
    display: none;
  }
  /* 念のため */
}
/* ===== 背景スクロール禁止クラス ===== */
.scroll-lock {
  position: fixed;
  inset: 0; /* top:0 right:0 bottom:0 left:0 と同じ */
  overflow: hidden; /* 念のため */
  touch-action: none; /* モバイルの慣性スクロールも防止 */
}

.global-nav {
  background-color: #fff;
  padding: 15px 0;
}

.logo {
  padding: 0 15px 20px;
  border-bottom: 1px solid #eee;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.nav-menu {
  list-style: none;
  padding: 0;
}

.nav-menu li {
  border-bottom: 1px solid #eee;
}

.nav-menu a {
  display: block;
  padding: 14px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.nav-menu a:hover {
  background-color: #f5f5f5;
}

.event-info {
  padding: 10px 15px;
  color: #333;
  font-size: 14px;
}

.event-info p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.event-info .icon {
  color: #f39800;
  margin-left: 5px;
}

.apply-btn {
  padding: 15px 15px 0;
}

.apply-btn a {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #005BAC 0%, #00C0F3 100%);
  color: white;
  padding: 20px 20px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.apply-btn a:hover {
  background-color: #005b99;
}

.apply-btn .arrow {
  margin-left: 10px;
}

.date {
  padding: 0 15px 0px;
}

.date img {
  max-width: 100%;
  height: auto;
}

/* アニメーション */
/* Intersection Observer 対象のベース */
.animate-on-scroll {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 1. 下から上にフェードイン */
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 2. 左からスライドイン */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* 2. 右からスライドイン */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* 3. 拡大ズームイン */
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
}

.zoom-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* 4. ブラー → シャープ */
.blur-in {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.6s ease-out, filter 0.6s ease-out;
}

.blur-in.is-visible {
  opacity: 1;
  filter: blur(0);
}

/* 5. Y軸でフリップイン */
.flip-in {
  opacity: 0;
  backface-visibility: hidden;
  transform-origin: center;
}

.flip-in.is-visible {
  animation: flipInY 0.8s ease-out forwards;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flip-in2 {
  opacity: 0;
  backface-visibility: hidden;
  transform-origin: center;
}

.flip-in2.is-visible {
  animation: flipInY 1.2s ease-out forwards;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotateY(180deg);
    opacity: 0;
  }
  to {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
/* 6. バウンスイン */
.bounce-in {
  opacity: 0;
}

.bounce-in.is-visible {
  animation: bounceIn 0.8s ease forwards;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* === メインビジュアルセクション === */
#mv-section {
  width: 100%;
  text-align: center;
  background-color: #f5f5f5;
}

.mv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
}

.mv-date {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

@media (max-width: 480px) {
  .mv-date {
    width: 40%;
  }
}
.mv-logo {
  margin: 160px 0 260px;
  width: 60%;
  z-index: 10;
}

/* === フォーラムセクション === */
.forum-section {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
}

.forum-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.content-container {
  position: relative;
  max-width: 1120px;
  margin: auto;
  padding: 100px 16px 160px;
  margin-top: -130px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.forum-container {
  max-width: 820px;
  margin: 80px 0 40px;
}

.forum-title {
  font-family: "Montserrat", sans-serif;
  font-size: 108px;
  font-weight: 800;
  color: #ffffff;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}

.forum-small-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 8.1px;
  color: #0057B8;
  margin-bottom: 40px;
  letter-spacing: 1px;
  z-index: 10;
  align-items: center;
  text-align: center;
}

.forum-description {
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  z-index: 1;
}

.forum-description p.text-left {
  text-align: left;
  margin-bottom: 20px;
}

.forum-description p.small {
  font-size: 14px;
}

.video-wrapper {
  margin: 20px auto 20px;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 800px;
}

@media (max-width: 991px) {
  .forum-title {
    font-size: 100px;
    font-weight: 900;
    color: #ffffff;
    position: absolute;
    top: 80px;
    left: 0%;
    transform: translateX(0%);
    z-index: -10;
  }
  .forum-small-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 8.1px;
    color: #0057B8;
    margin-bottom: 40px;
    letter-spacing: 1px;
    z-index: 10;
    align-items: center;
    text-align: center;
  }
  .forum-width {
    width: 90%;
  }
  .forum-description {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    font-weight: 400;
    z-index: 1;
  }
  .forum-description p.small {
    font-size: 11px;
  }
}
/* === 講演セクション === */
.lecture-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0099ff 0%, #33ccff 100%);
}

.background-primary,
.background-secondary,
.background-tertiary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lecture-small-heading {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  margin-bottom: 8px;
  z-index: 2;
}

.lecture-heading {
  font-family: "Montserrat Subrayada", sans-serif;
  font-size: 128px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  opacity: 0.2;
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
}

/* コンテナ */
.main__head {
  position: relative;
  /* 必要に応じて高さを調整 */
  height: 200px;
  overflow: hidden;
  /* はみ出しテキストを隠す */
}

/* 横スクロールテキスト本体 */
.rooptext {
  position: absolute;
  top: 50%;
  /* 垂直中央寄せ例 */
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  /* 2つの<ul>を横並び */
  overflow: hidden;
  pointer-events: none;
  /* クリックを抜けさせる */
  white-space: nowrap;
}

/* 各リストを左右スクロール */
.rooptext ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: hscroll2 40s linear infinite;
}

/* テキスト間隔 */
.rooptext ul li {
  margin-right: 4rem;
}

/* テキストスタイル */
.loop-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 8rem;
  /* 例：大きな文字 */
  line-height: 1;
  margin: 0;
}

.lecture-en-title {
  color: rgba(255, 255, 255, 0.2);
}

/* キーフレーム：一周分左へ移動 */
@keyframes hscroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.japanese-title {
  font-family: "M PLUS 1", sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 8.1px;
  margin: 0 0 20px 5px;
  padding: 0;
  position: relative;
  top: -60px;
}

@media (max-width: 991px) {
  .japanese-title {
    font-size: 22px;
    letter-spacing: 8.1px;
  }
}
.lecture-jp-title {
  color: #ffffff;
}

.lecture-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 80px;
  color: #fff100;
  margin-top: 0px;
  text-align: center;
  line-height: 1;
}

.lecture-subtitle {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 1000;
  color: #ffffff;
  margin-top: 10px;
  text-align: center;
}

.lecture-description {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin: 40px auto;
  max-width: 800px;
  line-height: 1.8;
  text-align: left;
}

.speaker-profile {
  margin-top: 20px;
}

.profile-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.profile-image-column {
  width: 35%;
}

.speaker-image {
  margin-top: 20px;
  width: 100%;
  border-radius: 15px;
}

.profile-info-column {
  width: 65%;
  display: flex;
  flex-direction: column;
}

.company-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 1000;
  color: #ffffff;
  line-height: 1.5;
}

.speaker-name-container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
}

.speaker-name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 1000;
  font-size: 40px;
  color: #fff100;
}

.speaker-name span.small {
  font-size: 22px;
}

.speaker-name-roman {
  font-size: 17px;
  font-weight: 500;
  color: #fff100;
  white-space: nowrap;
}

.speaker-bio {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.8;
}

/* CSS */
/* 横スクロール用ラッパー（必要に応じて） */
.speaker-bio .table-responsive {
  overflow-x: auto;
  margin: 6px 0;
}

/* テーブル本体 */
.speaker-bio .timeline-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.speaker-bio .timeline-table th,
.speaker-bio .timeline-table td {
  border: none;
  /* ボーダーなし */
  padding: 8px;
  text-align: left;
  /* 全セル左寄せ */
}

.speaker-bio .timeline-table td:nth-of-type(1) {
  display: inline-block;
  width: 12%;
  /* ２つで100%弱 */
  box-sizing: border-box;
  padding: 0px 2px;
}

.speaker-bio .timeline-table td:nth-of-type(2) {
  display: inline-block;
  width: 10%;
  /* ２つで100%弱 */
  box-sizing: border-box;
  padding: 0px 2px;
}

.speaker-bio .timeline-table td:nth-of-type(3) {
  display: inline-block;
  width: 70%;
  /* ２つで100%弱 */
  box-sizing: border-box;
  padding: 0px 2px;
}

@media (max-width: 1280px) {
  .speaker-bio .timeline-table td:nth-of-type(1) {
    display: inline-block;
    width: 18%;
    /* ２つで100%弱 */
    box-sizing: border-box;
    padding: 0px 2px;
  }
}
@media (max-width: 991px) {
  .speaker-bio .timeline-table thead {
    display: none;
    /* ヘッダ非表示 */
  }
  .speaker-bio .timeline-table,
  .speaker-bio .timeline-table tbody,
  .speaker-bio .timeline-table tr {
    display: block;
    width: 100%;
  }
  .speaker-bio .timeline-table tr {
    margin-bottom: 8px;
  }
  /* 年・月を横並び */
  .speaker-bio .timeline-table td:nth-of-type(1),
  .speaker-bio .timeline-table td:nth-of-type(2) {
    display: inline-block;
    width: 80px;
    box-sizing: border-box;
    padding: 0px 2px;
  }
  /* 内容はフル幅で下に */
  .speaker-bio .timeline-table td:nth-of-type(3) {
    display: block;
    width: 100%;
    padding: 0px 6px;
  }
}
@media (max-width: 1400px) {
  .lecture-title {
    font-size: 50px;
  }
}
/* === レスポンシブ === */
@media (max-width: 991px) {
  .content-container {
    padding: 80px 16px 80px;
  }
  .lecture-title {
    font-size: 38px;
    text-align: left;
  }
  .lecture-subtitle {
    font-size: 17px;
  }
  .lecture-description {
    font-size: 14px;
    margin: 20px auto;
  }
  .profile-grid {
    flex-direction: column;
  }
  .profile-image-column,
  .profile-info-column {
    width: 100%;
  }
}
.panel-section {
  position: relative;
  overflow: hidden;
}

.background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #005BAC 0%, #007FF0 100%);
  z-index: -1;
}

.panel-en-title {
  color: rgba(255, 255, 255, 0.2);
}

.panel-jp-title {
  color: #fff100;
}

.panel-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 80px;
  color: #ffffff;
  margin-top: 0px;
  text-align: center;
  line-height: 1;
}

@media (max-width: 1400px) {
  .panel-title {
    font-size: 54px;
  }
}
.panelist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.panelist-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  align-items: center;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.panelist-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.panelist-info {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: center;
}

.panelist-name {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px;
  text-align: center;
}

.panelist-suffix {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin: 0 4px 10px;
  text-align: center;
}

.panelist-description {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .panel-title {
    font-size: 38px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .panelist-grid {
    grid-template-columns: 1fr;
  }
  .panel-title-en {
    font-size: 80px;
  }
}
.events-section {
  position: relative;
  overflow: hidden;
}

.events-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-color: #00a7e1;
  z-index: -1;
}

.event-en-title {
  color: rgba(255, 255, 255, 0.2);
}

.event-jp-title {
  color: #ffffff;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: -40px auto 0;
}

.event-card {
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 5px 5px 0px rgba(0, 91, 172, 0.7);
  padding: 24px;
}

.event-card:first-of-type {
  margin-top: 50px;
}

.event-layout {
  gap: 20px;
  display: flex;
}

.event-image-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 45%;
  margin: 0;
}

.event-image {
  aspect-ratio: 1.44;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  border-radius: 8px;
  flex-grow: 1;
}

.event-details-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 55%;
  margin-left: 20px;
}

.event-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  color: #000000;
}

.event-heading {
  font-size: 20px;
  font-weight: 600;
  align-self: flex-start;
  margin: 0 0 10px 0;
}

.event-description {
  font-weight: 400;
  line-height: 20px;
  margin: 10px 0;
}

.event-divider {
  border: 0;
  border-top: 1px solid #989898;
  margin: 8px 0;
  width: 100%;
  max-width: 100%;
}

.event-info {
  margin: 0;
}

.event-info-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 10px 0;
}

.event-info-term {
  font-weight: 800;
  min-width: 20px;
  margin: 0;
}

.event-info-description {
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  flex: 1;
}

.event-note {
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  align-self: flex-start;
  margin-top: 19px;
}

.event__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: block;
  border-radius: 30px;
  width: 284px;
  max-width: 100%;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none; 
}

.button-outline {
  background-color: #ffffff;
  border: 2px solid #fbac2d;
  margin-top: 16px;
  padding: 14px 0;
  font-size: 15px;
  color: #fbac2d;
}

.button-filled {
  background-color: #fbac2d;
  margin-top: 16px;
  padding: 15px 0;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 2.28px;
  width: 282px;
}

@media (max-width: 991px) {
  .button-outline,
  .button-filled {
    width: 100%;
  }
}
.city-silhouette {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("img/city.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

@media (max-width: 991px) {
  .events-wrapper {
    max-width: 100%;
    padding: 40px 20px 0;
  }
  .events-content {
    max-width: 100%;
  }
  .events-title {
    font-size: 40px;
  }
  .events-subtitle {
    font-size: 18px;
  }
  .event-card {
    max-width: 100%;
    padding: 20px;
    margin-top: 30px;
  }
  .event-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .event-image-column {
    width: 100%;
  }
  .event-image {
    max-width: 100%;
    margin-top: 0;
  }
  .event-details-column {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .event-content {
    max-width: 100%;
  }
  .event-description,
  .event-info-description {
    max-width: 100%;
  }
  .city-silhouette {
    height: 50px;
  }
}
.events-container {
  padding-bottom: 14px;
}

.events-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 50px 80px 0 80px;
  overflow: hidden;
}

.events-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-color: #00a7e1;
  z-index: -1;
}

.events-content {
  position: relative;
  align-self: center;
  display: flex;
  width: 100%;
  height: auto;
  max-width: 1200px;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 160px;
}

.excursion-section {
  position: relative;
  overflow: hidden;
}

.excursion-en-title {
  color: #E5F8FE;
}

.excursion-jp-title {
  color: #005bac;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}

.excursion {
  margin-bottom: 20px;
  width: 100%;
}

.excursion__container {
  display: flex;
  gap: 20px;
}

.excursion__column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
}

.excursion__column--left {
  width: 50%;
  margin-left: 0;
}

.excursion__column--right {
  width: 50%;
  margin-left: 20px;
}

.excursion__blue-box {
  border-radius: 20px;
  background-color: #00c0f3;
  box-shadow: 5px 5px 0px #005bac;
  display: flex;
  flex: 0 0 auto;
  padding: 17px 21px 27px;
  flex-direction: column;
  align-items: stretch;
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  color: #ffffff;
}

.excursion__figure {
  margin: 0;
  padding: 0;
}

.excursion__image {
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  border-radius: 10px;
}

.excursion__subtitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  align-self: start;
  margin-top: 11px;
  margin-bottom: 0;
}

.excursion__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 11px;
  margin-bottom: 0;
}

.mySlider {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-slide .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: clamp(14px, 1.8vw, 18px);
}

.swiper-slide .caption .caption2 {
  font-size: clamp(10px, 1.8vw, 12px);
}

.slider-block {
  position: relative;
  /* ← これが基準座標 */
  padding-bottom: 40px;
  /* 青いボックス下端とドットの間隔 */
}

/* ドットを中央＆一列に */
.slider-block .swiper-pagination {
  position: absolute;
  /* .slider-block を基準にする */
  left: 0;
  right: 0;
  bottom: 12px;
  /* ← 画像すぐ下に配置 */
  text-align: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bbb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0076ff;
}

.excursion__details {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  color: #000000;
}

.excursion__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  align-self: start;
  margin: 0;
}

.excursion__long-description {
  font-weight: 400;
  line-height: 21px;
  margin-top: 20px;
  margin-bottom: 0;
}

.excursion__divider {
  border: 0;
  border-top: 1px solid #9f9f9f;
  margin: 14px 0;
  width: 100%;
  height: 1px;
}

.excursion__info-group {
  display: flex;
  align-self: start;
  margin: 10px 0 0;
  align-items: baseline;
  width: 100%;
  gap: 34px;
}

.excursion__info-term {
  font-weight: 800;
  margin: 0;
  width: 40px;
}

.excursion__info-description {
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.excursion__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

/* Accordion 全体 */
.accordion {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.accordion summary {
  display: block;
  /* ブロック化 */
  width: 284px;
  /* ボタン幅固定 */
  margin: 0 auto;
  /* 常に中央 */
  cursor: pointer;
  list-style: none;
}

/* WebKit のマーカーを完全に消す */
.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion-trigger {
  display: flex;
  /* 文字を中央に置く */
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* クリックしても反転しない */
  cursor: pointer;
  width: 284px;
  margin: 0 auto;
  padding: 14px 0;
  border: 2px solid #fbac2d;
  border-radius: 30px;
  background: #fff;
  color: #fbac2d;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
}

.accordion-trigger::-webkit-details-marker {
  display: none;
}

/* 折りたたまれたときのコンテンツ */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
  /* 左右余白だけ確保 */
}

/* open 時は十分な max-height を与えて表示 */
.accordion[open] .accordion-content {
  max-height: 2000px;
  /* 中身の高さに合わせて適宜調整 */
  padding-top: 16px;
  /* summary との間隔 */
}

@media (max-width: 991px) {
  .landing-container {
    padding: 30px 20px;
  }
  .excursion-main-title {
    font-size: 72px;
  }
  .excursion-japanese-title {
    font-size: 20px;
    top: -10px;
  }
  .excursion__container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .excursion__column {
    width: 100% !important;
  }
  .excursion__column--right {
    margin-left: 0;
    margin-top: 20px;
  }
  .excursion__blue-box {
    padding: 15px;
  }
  .excursion__description {
    margin-right: 0;
  }
  .excursion__title {
    margin-left: 0;
  }
  .excursion__long-description {
    max-width: 100%;
  }
  .excursion__divider {
    margin-right: 0;
  }
  .excursion__button {
    width: 100%;
  }
  .accordion summary {
    width: 100%;
    /* ボタン幅固定 */
  }
}
@media (max-width: 640px) {
  .landing-container {
    padding: 20px 15px;
  }
  .excursion-main-title {
    font-size: 48px;
  }
  .excursion-japanese-title {
    font-size: 16px;
    top: -5px;
    margin-bottom: 20px;
  }
  .excursion__blue-box {
    padding: 12px;
  }
  .excursion__title {
    font-size: 18px;
  }
  .excursion__long-description {
    font-size: 13px;
    margin-top: 15px;
  }
  .excursion__info-group {
    gap: 20px;
  }
  .excursion__info-term {
    width: 35px;
  }
  .excursion__actions {
    margin-top: 20px;
  }
}
.souvenirs-section {
  position: relative;
  overflow: hidden;
}

.souvenirs-en-title {
  color: rgba(255, 255, 255, 0.2);
}

.souvenirs-jp-title {
  color: #ffffff;
}

.souvenirs-subtitle {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 1000;
  color: #ffffff;
  margin: 0px 0 20px;
  text-align: center;
}

.souvenirs-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.souvenirs-image-column {
  width: 50%;
}

.souvenirs-image {
  margin-top: 20px;
  width: 100%;
  border-radius: 15px;
}

.souvenirs-info-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin: 0px auto;
  max-width: 800px;
  line-height: 1.8;
  text-align: left;
}

.souvenirs-info1 {
  color: #ffffff;
  margin: 40px 0;
}

.souvenirs-info2 {
  color: #ffffff;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .souvenirs-grid {
    flex-direction: column;
  }
  .souvenirs-subtitle {
    font-size: 17px;
  }
  .souvenirs-image-column,
  .souvenirs-info-column {
    width: 100%;
    font-size: 14px;
  }
}
.reservation-section {
  position: relative;
  overflow: hidden;
}

.reservation-text {
  position: absolute;
  top: 40px;
  left: 20px;
  color: #005BAC;
  font-size: 24px;
  font-weight: bold;
}

.reservation-content {
  position: relative;
  align-self: center;
  display: flex;
  width: 100%;
  height: auto;
  max-width: 1200px;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 160px;
}

.reservation-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 0px;
}

/* コンテナを Flex 化 */
.hotel-responsive-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.responsive-item {
  flex: 1 1 0;
}

/* 画像を幅にフィット */
.hotel-responsive-wrapper .image-item img {
  aspect-ratio: 1.5;
  width: 100%;
  border-radius: 10px;
}

/* テーブルは必要なら横スクロール */
.hotel-responsive-wrapper .table-item {
  overflow-x: auto;
}

/* テーブル基本スタイル */
.hotel-responsive-wrapper .table-item table {
  width: 100%;
  border-collapse: collapse;
}

/* スマホで縦積み */
@media (max-width: 1200px) {
  .hotel-responsive-wrapper {
    flex-direction: column;
  }
  .hotel-responsive-wrapper .responsive-item {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}
.responsive-table {
  overflow-x: auto;
  margin-bottom: 30px;
}

.hotel-table {
  width: 100%;
  min-width: 300px;
  border-collapse: collapse;
  table-layout: fixed;
}

.hotel-table .hotel-info {
  width: 70%;
}

.hotel-table th,
.hotel-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}

.hotel-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.section-header {
  background-color: #d0e8f2;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  font-size: 1.1em;
  border: 1px solid #ccc;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .hotel-table {
    font-size: 14px;
  }
  .section-header {
    font-size: 1em;
    padding: 8px;
  }
  .hotel-table th,
  .hotel-table td {
    padding: 8px;
    font-size: 0.95em;
  }
}
/*
table.hotel-table{
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table.hotel-table th, td {
  border: 1px solid #005BAC;
  padding: 10px;
  text-align: center;
}

table.hotel-table th {
  background-color: #f9f9f9;
}

.hotel-table-color{
 background-color:rgba(0, 192, 243, 0.1);
}
*/
.first-column {
  width: 15%;
  text-align: center;
}

.access-row {
  height: 100px;
}

.notes {
  margin: 20px 0;
  line-height: 1.8;
  padding: 0 14px;
}

@media (max-width: 991px) {
  .notes {
    margin: 16px 0;
    line-height: 1.8;
    padding: 0 14px;
    font-size: 14px;
  }
}
.reservation-button {
  display: block;
  width: 360px;
  background-color: #FBAC2D;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
  margin: 30px auto;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}

.message {
  text-align: center;
  color: #FF6600;
  margin-top: 40px;
}

.access-section {
  position: relative;
  overflow: hidden;
}

.access-en-title {
  color: rgba(255, 255, 255, 0.2);
}

.access-jp-title {
  color: #ffffff;
}

.access-wrapper {
  margin: 0px 0 -100px;
}

@media (max-width: 991px) {
  .access-wrapper {
    margin: 0px 0 -20px;
  }
}
.location-container {
  display: flex;
  gap: 20px;
  /* 要素間の余白 */
  align-items: flex-start;
}

.location-container .building-image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
}

.location-container .location-info {
  flex: 0 0 60%;
  max-width: 60%;
  color: #fff;
  align-self: flex-end;
}

/* スマホ（任意のブレイクポイント）では縦並びに */
@media (max-width: 991px) {
  .location-container {
    flex-direction: column;
  }
  .location-container .building-image-wrapper,
  .location-container .location-info {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}
.building-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 5px 5px 0px 0px #005BAC;
}

.location-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.location-address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 35px;
  margin-top: 10px;
  display: block;
}

.access-button {
  position: relative;
  margin: 0;
}

.access-button-wrapper {
  position: relative;
  width: 352px;
  height: 64px;
  margin-top: 20px;
}

.access-button-background {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  position: absolute;
  background-color: #FBAC2D;
}

.access-button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #FFF;
  line-height: 64px;
  text-align: center;
  position: absolute;
  width: 100%;
}

.map-wrapper {
  margin: 40px 0 60px;
  position: relative;
  width: 100%;
  padding-top: 299px;
  overflow: hidden;
}

.map-wrapper iframe,
.map-wrapper .map-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .map-wrapper {
    margin: 20px 0 60px;
    padding-top: 50%;
  }
  .location-title {
    font-size: 24px;
  }
}
.program-section {
  position: relative;
  overflow: hidden;
}

.program-en-title {
  color: #E5F8FE;
}

.program-jp-title {
  color: #005bac;
}

.program-wrapper {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.program-title {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 4px;
  background-color: #00c0f3;
  border-radius: 15px;
  padding: 13px 24px;
  margin: 0;
}

.program-content {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  letter-spacing: 1px;
  padding: 20px 28px;
  margin: 0;
}

@media (max-width: 991px) {
  .program-title {
    font-size: 18px;
    padding: 10px 20px;
  }
  .program-content {
    font-size: 14px;
    padding: 20px 10px;
  }
}
.schedule-table {
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.schedule-table tr {
  border-bottom: 1px solid #ccc;
  /* 各行の下端の線 */
}

.schedule-table th,
.schedule-table td {
  padding: 12px 28px;
  text-align: left;
  border: none;
  /* 縦線はなし */
}

.schedule-table th {
  font-weight: 400;
  width: 10%;
  /* 時間列の幅を固定 */
  white-space: nowrap;
}

.schedule-table td {
  width: 90%;
  /* 内容列 */
}

@media (max-width: 991px) {
  .schedule-table {
    font-size: 14px;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 12px 6px;
  }
}
.sponser-section {
  position: relative;
  overflow: hidden;
}

.sponser-en-title {
  color: rgba(255, 255, 255, 0.2);
}

.sponser-jp-title {
  color: #fff100;
}

.sponser-wrapper {
  margin: 0;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* アイテム間の余白 */
  margin-bottom: 40px;
}

.item {
  text-align: center;
  box-sizing: border-box;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* レスポンシブ例：スマホはすべて 1 列に */
@media (max-width: 600px) {
  .grid .item {
    flex: 0 0 100%;
  }
}
.img-fluid {
  width: 100%;
}

.sponser-text {
  color: #fff;
  text-align: center;
}

.sponser-text p {
  display: inline-block;
  margin-right: 20px;
  vertical-align: top;
}

.message-section {
  position: relative;
  overflow: hidden;
}

.message-en-title {
  color: #E5F8FE;
}

.message-jp-title {
  color: #005bac;
}

.message-wrapper {
  margin: 0px 0 0px;
}

@media (max-width: 991px) {
  .message-wrapper {
    margin: 0px 0 0px;
  }
}
.message-container {
  border-radius: 20px;
  background-image: url("img/event_bg.svg");
  box-shadow: 5px 5px 0px #005bac;
  padding: 40px 100px 40px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* 要素間の余白 */
  align-items: flex-start;
  margin-bottom: 40px;
}

.message-container .message-image-wrapper {
  flex: 4 1 0;
  max-width: 40%;
}

.message-container .message-info {
  flex: 6 1 0;
  max-width: 60%;
  color: #fff;
  align-self: flex-end;
}

.message-container .message-text {
  flex: 0 0 100%;
  margin-top: 20px;
  /* 上の行から余白 */
  line-height: 1.6;
  word-break: break-all;
}

/* スマホ（任意のブレイクポイント）では縦並びに */
@media (max-width: 991px) {
  .message-container {
    padding: 40px 20px 40px;
    flex-direction: column;
  }
  .message-container .message-image-wrapper,
  .message-container .message-info {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}
.message-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.message-position {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
}

.message-name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 1000;
  font-size: 40px;
  color: #fff100;
}

@media (max-width: 600px) {
  .message-position {
    font-weight: 400;
    font-size: 14px;
  }
  .message-name {
    font-weight: 600;
    font-size: 32px;
    color: #fff100;
  }
}
/* === 参加セクション === */
.application-section {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
}

.application-background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #d3d3d3 0%, #f5f5f5 100%);
  z-index: -3;
}

.application-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 700px;
  height: auto;
  z-index: -2;
}

@media (max-width: 991px) {
  .application-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 380px;
    height: auto;
    z-index: -2;
  }
}
.application-container {
  max-width: 820px;
  margin: 80px 0 40px;
}

.application-title {
  font-family: "Montserrat", sans-serif;
  font-size: 108px;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.4;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}

.application-small-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 8.1px;
  color: #0057B8;
  margin-bottom: 40px;
  letter-spacing: 1px;
  z-index: 10;
  align-items: center;
  text-align: center;
}

.application-botton {
  margin: 80px 0;
  font-size: 18px;
}

@media (max-width: 991px) {
  .application-title {
    font-size: 100px;
    font-weight: 900;
    color: #ffffff;
    position: absolute;
    top: 80px;
    left: 0%;
    transform: translateX(0%);
    z-index: -10;
  }
  .application-width {
    width: 100%;
  }
  .application-botton {
    margin: 80px 0;
    font-size: 14px;
  }
}
.application__divider {
  margin: 40px 0px;
}

/* === メインビジュアルセクション === */
.footer-section {
  width: 100%;
  text-align: center;
  background-color: #f5f5f5;
}

.footer-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
}

.footer-logo {
  margin: 60px 0 60px;
  z-index: 10;
}

.footer-text {
  color: #000;
}

@media (max-width: 991px) {
  .footer-text {
    color: #000;
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */