@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 横スクロール禁止（ページ全体に適用） */
html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  /* ✅ 標準的なゴシック体に変更 */
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  color: #000;
  text-align: center;
  background-color: #fff;
  font-size: 18px; /* ✅ 全体的にやや大きめ（40代以上でも読みやすい） */
  line-height: 1.8; /* ✅ 行間を少し広めにして読みやすく */
}
html, body {
  height: 100%;
}
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}
/* ✅ 段落の文字サイズ・余白調整 */
p {
  margin: 0 0 1.2em 0;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}
/* ✅ 見出しサイズ（PCとスマホでバランスを取る） */
h1 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}

/* ✅ スマホで少し大きめ＆読みやすく */
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
  p {
    font-size: 17px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
}

img {
  border: 0;
  text-align: center;
  max-width: 100%;
}
a {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
input {
  overflow: visible;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  max-width: 100%;
}
li {
  list-style-position: inside;
  margin-bottom: 14px;
  font-size: 18px;
}
ul {
  margin-bottom: 1em;
}
.weight700 {
  font-weight: 700
}

h2 {
  line-height: 1.3;
  font-size: 32px;
}
h3 {
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 26px;
  margin-bottom: 1em;
}
@media (max-width: 640x) {   
  h3 {
    font-size: 22px;
  }
}
h4 {
  font-size: 38px;
  line-height: 1.3;
  color: #0e49a8;
}
h5 {
  font-size: 22px;
  line-height: 1.4;
}
h6 {
  font-size: 18px;
  text-align: center;
}
ul li {
  text-align: left;
  line-height: 1.4;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.p_center {
  text-align: center;
}

.p_left {
  text-align: left;
}

.sankaku01 {
  width: 0;
  height: 0;
  border-left: 128px solid transparent;
  border-right: 128px solid transparent;
  border-top: 50px solid #eaebef;
  margin: 0 auto 20px;
}
.sankaku02 {
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 18px solid #eaebef;
  margin: 0 auto 20px;
}
.sankaku03 {
  width: 0;
  height: 0;
  border-left: 128px solid transparent;
  border-right: 128px solid transparent;
  border-top: 50px solid #d5e5f3;
  margin: 0 auto 20px;
}
.txt_pink {
  color: #e5397b;
}
.txt_pink02 {
  color: #e5397b;
  font-weight: 700;
}
.txt_orange {
  color: #ffb400;
}
.txt_red {
  color: #ef0000;
  font-weight: 700;
}
.txt_orange02_400 {
  color: #dd371b;
}
.txt_blue {
  color: #0e49a8;
}
.txt_blue02 {
  color: #014272;
}
.txt_white {
  color: #fff;
}
.mark_yellow {
  background: linear-gradient(transparent 0%, #f5ee71 0%);
}
.txt_under {
  text-decoration: underline;
  font-weight: 700;
}
.txt_bold {
  font-weight: 700;
}
.line-through {
  text-decoration: line-through;
}



/* =========================
   ヘッダー画像
========================= */
.hero-header {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

/* 共通設定 */
.header-img {
  width: 100%;
  height: auto;
  display: block;
}

/* PC表示：スマホ画像を非表示 */
.header-img.sp {
  display: none;
}

/* スマホ表示：PC画像を非表示 */
@media screen and (max-width: 767px) {
  .header-img.pc {
    display: none;
  }
  .header-img.sp {
    display: block;
  }
}



/* =========================
   ストライプ背景セクション
========================= */
.stripe-bg {
  padding: 130px 20px;
  background-color: #fff9d9; /* ベース色 */

  /* 斜めストライプ（左下→右上） */
  background-image: repeating-linear-gradient(
    135deg,              /* ← 角度（左下→右上） */
    #fff9d9 0,           /* ベース色 */
    #fff9d9 40px,        /* ベース色の幅 */
    #fffdf4 40px,        /* ストライプ色の開始 */
    #fffdf4 80px         /* ストライプ色の幅 */
  );

  position: relative;
}


/* 左右の紙吹雪（オプション） */
.stripe-bg::before,
.stripe-bg::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.stripe-bg::before {
  left: 0;
  background-image: url("img/confetti_left.png");
}

.stripe-bg::after {
  right: 0;
  background-image: url("img/confetti_right.png");
}

/* 中央の内容用 */
.container {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9); /* 背景を少し白っぽく重ねて文字を読みやすく */
  padding: 30px 30px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .stripe-bg {
    padding: 70px 20px;
    }
  
  .container {
    padding: 30px 20px 30px;
  }
}



/* =========================
   スペシャルゲスト用
========================= */
.guest-container {
  position: relative;
  max-width: 860px;
  margin: 0 auto; /* ← 中央寄せ */
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 30px 50px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible; /* はみ出しを許可 */
}

/* 上の画像（img_01.png） */
.guest-img-top {
  position: absolute;
  top: 70px; /* ← はみ出す量を調整可能 */
  left: 50%;
  transform: translateX(-50%);
  width: 750px; /* ← 自分で調整OK（例：300px〜500pxなど） */
  height: auto;
  z-index: 3; /* コンテナより前面に表示 */
}

/* 下の画像（img_02.png） */
.guest-img-bottom {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  position: relative;
  top: -10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .guest-container {
    padding: 70px 0 65px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden; /* ← 拡大しても枠から出ないように */
  }

  .guest-img-top {
    width: 420px; /* ← 自分で調整OK（例：300px〜500pxなど） */    
    border-radius: 0;
    top: 40px;
  }

  /* img_02.png（下の画像）を拡大トリミング */
  .guest-img-bottom {
    border-radius: 0;
    width: 100%;
    height: 280px; /* ← トリミング範囲の高さ。好きな数値に変更OK */
    object-fit: cover; /* ← 画像を枠にフィットさせて切り取り */
    object-position: center center; /* ← トリミングの中心を画像の中央に */
    transform: scale(1.3); /* ← 拡大率を調整（1.2〜1.6が自然） */
    transform-origin: center center; /* ← 拡大の基点を中央に固定 */
    transition: transform 0.3s ease;
  }
}



/* =========================
   決勝進出者セクション全体
========================= */
.final-section {
  position: relative;
  margin-top: 80px;
  overflow: visible; /* ← 画像が外にはみ出せるように */
}

/* コンテナ本体 */
.final-container {
  position: relative;
  max-width: 860px;
  margin: 130px auto 0px;
  background: rgba(255, 255, 255, 0.95);
  padding: 100px 30px 60px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: visible;
  z-index: 2; /* ← タイトル画像より下に */
}

/* タイトル画像（img_03.png） */
.final-img-top {
  position: absolute;
  top: -60px; /* ← 上下位置を調整 */
  left: 50%;
  transform: translateX(-50%);
  width: 740px; /* ← 枠を飛び出して拡大（100%→120%〜140%が自然） */
  max-width: none; /* ← 親幅に制限されないように */
  height: auto;
  z-index: 3;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .final-container {
    max-width: 100%;
    margin: 50px auto 0px;
    padding: 60px 15px 50px;
    border-radius: 0;
    overflow: hidden;
  }

  .final-img-top {
    width: 105%; /* ← スマホでも少しはみ出す */
    top: -30px;
  }
}



/* 出場者紹介ブロック */
.performer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; /* スマホ対応用 */
  border-top: dotted 3px #93c4e5;
  padding-top: 40px;
  padding-bottom: 30px;
}

/* 左側（名前・曲目・プロフィール） */
.performer-info {
  padding-top: 10px;
  text-align: left;
  flex: 1;
  min-width: 250px;
}

/* 右側（顔写真） */
.performer-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* 名前 */
.performer-name {
  font-size: 1.6rem; /* 大きめ */
  font-weight: 700;
  margin-bottom: 0.3em;
}

/* 名前の装飾 */
.name-highlight {
  background-color: #bbeefc;
  color: #024882;
  padding: 3px 10px 0px;
}

/* カナ */
.performer-kana {
  font-weight: normal;
  font-size: 1rem;
}

/* 曲目 */
.performer-song {
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8em;
  color: #444;
}

/* プロフィール */
.performer-profile {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .performer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .performer-kana {
    display: block;
    margin-top: 8px; /* 少し余白をつけて見やすく */
  }  
  
  .performer-song {
    text-align: center;
  }  

  /* 写真を一番上に */
  .performer-photo {
    order: -1;
    margin-bottom: 0px;
  }

  .performer-info {
    text-align: center;
    padding-top: 0px;
  }
}



/* =========================
   YouTube 埋め込み
========================= */
.video {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 50px;
}

/* iframe をレスポンシブ化する共通処理 */
.video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* ← 高さを自動調整 */
  max-width: 860px;     /* ← PCでの最大幅 */
  display: block;
  margin: 0 auto;
  border-radius: 12px;   /* ← 角を少し丸めておしゃれに（任意） */
}

/* スマホ用 */
@media (max-width: 768px) {
  .video iframe {
    max-width: 100%;
    border-radius: 0; /* スマホは全幅優先 */
  }
}




/* ==============================
   スケジュールセクション
============================== */
.schedule-section {
  background: #daf8ff;
  padding: 80px 20px;
}

.schedule-heading{
  font-weight: 700;
  background-color: #ffe67b;
  color: #0e49a8;  
  padding: 8px 20px 6px;
}

.schedule-block {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-block h3 {
  font-weight: 700;
  color: #0e49a8;
  border-bottom: 2px solid #93c4e5;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1.4;
  padding-top: 50px;
  padding-bottom: 10px;
}

.schedule-block .date {
  font-size: 1.2rem;
  font-weight: 700;
}

.schedule-block p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.schedule-note {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}

/* 国際フォーラム画像 */
.forum-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.forum-images img {
  width: 48%;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* アクセスブロック */
.access-block {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 1rem;
}

.access-block h3 {
  margin-top: 5px;
  color: #0e49a8;
  font-weight: 700;  
  border-bottom: 2px solid #93c4e5;
  display: inline-block;  
  line-height: 1.4;
  padding-top: 50px;
  padding-bottom: 10px;
}

.access-block a {
  color: #0077cc;
  text-decoration: underline;
}

.access-block a:hover {
  text-decoration: none;
}

/* Googleマップ */
.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .forum-images img {
    width: 100%;
  }

  .schedule-section {
    padding: 60px 15px;
  }

  .access-block {
    font-size: 0.95rem;
  }
}



/* ==============================
   国際フォーラム画像スライドショー
============================== */
.forum-slideshow {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9; /* ← 画像の比率を固定 */
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  line-height: 0;
}

.forum-slideshow .slides {
  display: flex;
  transition: transform 1s ease-in-out;
  height: 100%; /* ← これも追加 */
}

.forum-slideshow img {
  display: block;
  width: 100%;
  height: 100%; /* ← 高さをスライド枠に合わせる */
  object-fit: cover; /* ← 枠いっぱいにトリミング */
  vertical-align: bottom;
}

/* ナビゲーションボタン */
.forum-slideshow button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.forum-slideshow button:hover {
  background-color: rgba(0,0,0,0.7);
}

.forum-slideshow .prev {
  left: 15px;
}

.forum-slideshow .next {
  right: 15px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .forum-slideshow {
    max-width: 100%;
  }

  .forum-slideshow button {
    font-size: 1.5rem;
    padding: 6px 10px;
  }
}


/* ▼ 複数申込ボタンエリア ---------------------------- */
.multi-ticket-area {
  margin-top: 40px;
  text-align: center;
}

.multi-ticket-msg {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.multi-btn-wrap img {
  max-width: 480px;
  width: 80%;
  height: auto;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ふわっとアニメーション */
.multi-btn-wrap img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* スマホ */
@media (max-width: 768px) {
  .multi-btn-wrap img {
    width: 90%;
  }
}



/* ==============================
   価格セクション
============================== */

/* タイトル装飾（スケジュール・アクセスと統一） */
.title-deco {
  font-weight: 700;
  background-color: #0e49a8;
  color: #fff;  
  padding: 8px 20px 6px;
}



/* ===============================
   申し込みフォーム
=============================== */
.form-container {
  max-width: 860px;
  margin: 0 auto;
}

.form-wrapper {
  background: #fff;
  border: 3px solid #82c4e8; /* 淡いブルー系枠 */
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 40px 50px;
  margin: 40px 0;
}

/* 見出しの装飾（他セクションと統一） */
.title-deco {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 1.5em;
}


/* ラベルとフォーム欄 */
.form-group {
  margin-bottom: 20px;
  padding-bottom: 30px;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.required::after {
  content: " *";
  color: #ff3366;
}

/* 入力欄全体のデザイン */
.form-control {
  width: 100%;
  margin: 0 auto 0;
  padding: 14px 16px;         /* ← 枠の内側の余白（高さ調整） */
  border: 2px solid #cacccc;  /* ← 枠線の太さと色 */
  border-radius: 8px;         /* ← 角丸 */
  font-size: 16px;            /* ← 文字の大きさ */
  box-sizing: border-box;     /* ← 幅計算を正しく */
  transition: all 0.2s ease;  /* ← フォーカス時のアニメーションを滑らかに */
}

/* フォーカス（クリックして入力中）のとき */
.form-control:focus {
  border-color: #219ebc;      /* ← フォーカス時の枠線色 */
  box-shadow: 0 0 6px rgba(33, 158, 188, 0.3); /* ← うっすら光るように */
  outline: none;              /* ← ブラウザ標準の青枠を消す */
}


/* ラジオボタン */
.radio-group label {
  margin-right: 20px;
  cursor: pointer;
}

.radio-group input {
  margin-right: 6px;
}

/* 注意書き */
.note-box {
  background: #f7f9fc;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 6px;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.2rem;
}

.note a {
  color: #0074c8;
  text-decoration: underline;
  font-weight: 600;
}
.note a:hover {
  opacity: 0.8;
}


.text-r01 {
  color: #d6336c;
  font-weight: 600;
}

/* ボタン */
/* 外枠 */
.btn-outer {
  overflow: visible;         /* ← 影を隠さない */
  text-align: center;
}

.btn-wrap {
  text-align: center; 
  overflow-x: hidden; /* ← 横スクロール防止 */  
}

.btn-wrap input[type="image"] {
  max-width: 500px;
  height: auto;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .form-container {
    padding: 0 20px;
  }  
  
  .form-wrapper {
    padding: 25px 20px;
  }
  
  /* 見出しの装飾 */
  .title-deco {
    font-size: 1.5rem;
  }

  .form-control {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  /* ボタン（スマホ時） */
  .btn-outer {
    overflow: hidden;        /* ← スマホ時は切れないようにする */
  }
  
  .btn-wrap {
    text-align: center;
    padding: 0 5%;           /* ← 左右に10%の余白を確保 */
    overflow: visible;        /* ← 切れ防止（hiddenになっていないかチェック） */
  }

  .btn-wrap input[type="image"] {
    display: inline-block;
    width: 100%;
    max-width: 80%;           /* ← 拡大しても切れないよう80%に縮小 */
    height: auto;
    border-radius: 18px;
    animation: pulseButton 3s ease-in-out infinite;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
  }
}



/* ===============================
   ボタンのアニメーション効果
=============================== */
/* ボタン画像（さらに控えめな影） */
.btn-wrap input[type="image"] {
  display: inline-block;
  max-width: 500px;
  height: auto;
  border-radius: 28px;
  /* ↓ 影をさらに短く＆薄く */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseButton 2.8s ease-in-out infinite;
}

/* 拡大縮小アニメーション */
@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18); /* ← アニメ中も控えめ */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }
}

/* ホバー時（マウスを乗せた時） */
.btn-wrap input[type="image"]:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22); /* ← 少し強調、でも短め */
}



/* ==============================
   ▼ フローティングボタン（最新・統一）
============================== */
#floating {
  position: fixed;
  z-index: 99999;
  bottom: 18px;
}

/* フローティングボタン画像（共通デザイン） */
#floating img {
  width: 300px;        /* PC の標準 */
  max-width: 90vw;     /* スマホは画面内に収まる */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  animation: floatPulse 2.8s ease-in-out infinite;
}

/* PC 固定位置（右下） */
@media (min-width: 769px) {
  #floating {
    right: 20px;
    left: auto;
  }
}

/* スマホ中央寄せ */
@media (max-width: 768px) {
  #floating {
    left: 50%;
    transform: translateX(-50%);
  }

  #floating img {
    max-width: 85vw;  /* スマホは少し小さめ */
  }
}

/* アニメーション（控えめなサイズ変化） */
@keyframes floatPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}




/* ==============================
   審査員
============================== */
  /* --- 審査項目 --- */
/* 外枠 */
.criteria-box {
  border: 2px solid #ccc;       /* 枠線のみ */
  border-radius: 8px;           /* 少し角を丸く */
  padding: 20px 30px;
  margin: 40px auto;
  max-width: 700px;             /* 全体の横幅 */
  background: none;             /* 背景なし */
}

/* 内部レイアウト */
.criteria-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 各列 */
.criteria-column {
  flex: 1 1 300px;
}

/* テキスト */
.criteria-column p {
  font-size: 18px;
  line-height: 1.8;
  margin: 4px 0;
}


  /* --- 審査員 --- */
  .judges {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }

  .judge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f4f4; /* 柔らかいグレー */
    border-radius: 16px;
    padding: 24px;
    gap: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* 立体感の影 */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .judge-photo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

  .judge-text {
    flex: 1;
  }

  /* PC時：名前と（氏名）を1行で表示 */
  .judge-name-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: flex-start;
  }

  .judge-name {
    padding-top: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
  }

  .judge-kana {
    font-size: 1rem;
    color: #555;
    margin: 0;
  }

  .judge-profile {
    font-size: 1rem;    
    margin-top: 10px;
    line-height: 1.7;
  }

  /* スマホ（768px以下） */
  @media screen and (max-width: 768px) {
    .judge {
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }

    .judge-photo {
      order: -1; /* 画像を一番上に */
    }

    .judge-name-line {
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .judge-kana {
      text-align: center;
    }
  }



/* ==============================
   理事 主催
============================== */
  /* --- 理事 --- */
  .directors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
    margin: 40px 0;
  }

  .director {
    width: 45%;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .director img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .director-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .director-text .org {
    font-weight: bold;
  }

  .director-text .title {
    font-weight: bold;
    margin-bottom: 8px;
  }

  .director-text .space {
    display: block;
    height: 10px;
  }

  .manage-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* --- スマホ表示 --- */
  @media screen and (max-width: 768px) {
    .directors {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .director {
      width: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
    }

    .director img {
      order: 1;
      margin-bottom: 10px;
    }

    .director-text {
      order: 2;
      text-align: left;
    }
  }




/* ==============================
   お問合せリンク
============================== */
.contact-link {
  color: #007acc;              /* ← 青系の色（好みで変更OK） */
  text-decoration: underline;  /* ← 下線を表示 */
  font-weight: 600;            /* ← 少し太字で見やすく */
  transition: color 0.2s ease;
}

/* ホバー時（マウスを乗せたとき） */
.contact-link:hover {
  color: #005f99;              /* ← 少し濃い青に変化 */
  text-decoration-thickness: 2px; /* ← 下線をやや太く */
}




.content01 {
  background-color: #daf8ff;
  padding: 30px 20px;  
}

.content02 {
  background-color: #fff5bf;
  padding: 50px 20px;  
  margin-bottom: 20px;
}

.content03 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

.content04 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
}

.content05 {
  font-weight: 700;
  color: #0e49a8;
  border-bottom: 2px solid #93c4e5;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1.4;
  padding-top: 70px;
  padding-bottom: 10px;
  font-size: 25px;  
}

/* ▼ よくあるご質問内のリンクを強調表示 */
#link02 a {
  color: #0074c8;
  text-decoration: underline;
  font-weight: 700;
}

/* ▼ ホバー時（オプション：少し濃くするなど） */
#link02 a:hover {
  opacity: 0.8;
}

.content06 {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 700;
  margin: 30px 0px 10px;
}

  /* --- スマホ表示 --- */
  @media screen and (max-width: 768px) {
    .content01 {
      padding: 10px 20px; 
  }
    .content47 {
      font-size: 21px;
      margin: 30px 0px 10px;
  }
}





@media (max-width: 665px) {
  .main01 {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }   
  .main02 {
    max-width: 100%;
    margin: 0px auto 0px;
    padding-left: 0;
    padding-right: 0;
  }   
}
@media (min-width: 666px) {
  .main01 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .main02 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }  
}

#countdownArea {
  font-variant-numeric: tabular-nums; /* 等幅数字 */
  min-height: 1.6em;                  /* 初回描画時の高さ確保 */
}



.margin-01{
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-02{
  padding-bottom: 3em;
}
.margin-03{
  margin-top: 2em;
}

.mt-01{
  margin-top: 1em;
}
.mt-02{
  margin-top: 2em;
}
.mt-03{
  margin-top: 3em;
}
.mt-04{
  margin-top: 4em;
}
.mt-05{
  margin-top: 5em;
}

.mb-01{
  margin-bottom: 1em;
}
.mb-02{
  margin-bottom: 2em;
}
.mb-03{
  margin-bottom: 3em;
}
.mb-04{
  margin-bottom: 4em;
}
.mb-05{
  margin-bottom: 5em;
}

.pt-01{
  padding-top: 1em;
}
.pt-02{
  padding-top: 2em;
}
.pt-03{
  padding-top: 3em;
}

.pb-01{
  padding-bottom: 1em;
}
.pb-02{
  padding-bottom: 2em;
}
.pb-03{
  padding-bottom: 3em;
}
.pb-04{
  padding-bottom: 4em;
}
.pb-05{
  padding-bottom: 5em;
}




.m-0 {
  margin: 0 0 4em 0 !important;
}
.row {
  display: -ms-flexbox;
  display: flex;
}
.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}
.py-3 {
  padding-top: 1rem !important;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
*, ::after, ::before {
  box-sizing: border-box;
}
ユーザー エージェント スタイルシート label {
  cursor: default;
}
.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}
.py-3 {
  padding-top: 1rem !important;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.py-3 {
  padding-top: 12px !important;
}
.under-black {
  border-bottom: 1px solid gray;
  padding-bottom: 4px;
  height: 50px;
}
.row2 {
  max-width: 600px;
  margin: 0 auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bg-light {
  background-color: #f8f9fa !important;
}
.footer {
  padding-bottom: 80px;
  padding-top: 40px;
}
.footer p {
  font-size: 12px;
  text-align: center;
  argin-left: auto;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}
.footer div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.footer a:hover {
  color: #666;
  text-decoration: underline;
}
.button {
  position: fixed;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.button img {
  max-width: 100%;
}
.button2 {
  position: fixed;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.button2 img {
  max-width: 100%;
}
.active {
  opacity: 1;
  visibility: visible;
}
.content_txt12 {
  text-align: center;
  line-height: 1.6;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 700;
  padding-left: 0;
}
.py-4 {
  padding-bottom: 1.5rem !important;
}
.text-muted p {
  color: #6c757d !important;
  font-size: 12px;
  line-height: 1.4;
  padding-left: 0;
}

input {
  overflow: visible;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* 通常の必須マーク */
.required:before {
  margin-left: 1em;
  padding: 0px 6px 0px 6px;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.8em;
  color: white;
  background-color: #dd371b;
  content: "必須";
}


.text-center {
  text-align: center;
}
#frame {
  border: none;
  height: 1000px;
}
.w-100 {
  width: 100% !important;
}
.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.my-4 {
  margin-top: 4em;
  margin-bottom: 3em;
}

@media screen and (max-width: 640px) {
  .btn01 {
    margin-left: 1em;
    margin-right: 1em;
  }
}


/* 旧ボタン完全無効化 */
.button,
.button2 {
  display: none !important;
}


/*PCで表示させたい時に有効な改行*/
@media screen and (max-width: 769px){
.pc-valid {display: none; }
}

/*スマホで表示させたい時に有効な改行*/
@media screen and (min-width: 768px){
.sp-valid {display: none; }
}