/* ==========================================================================
   リセット
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.7;
  background-color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

main{
  position: relative;
}

ul {
  list-style: none;
}


/* ==========================================================================
   共通スタイル
   ========================================================================== */

/* --- セクション --- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hdg2-sec{
  margin-top: 40px;
}

.lead-section {
  padding: 20px 0 30px;
}

/* --- ページヘッダー --- */
.page-header {
  background-color: #ffffff;
  padding: 50px 0 40px;
  text-align: center;
}

/* --- パンくずリスト --- */
.bread-list{
  font-size: 12px;
  color: #997B9E;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  list-style-type: none;
  padding: 10px 20px;
}
.bread-list li{
  margin-right: 10px;
}

.bread-list a:hover{
  text-decoration: underline;
  color: #601b72;
}

.bread-list a::after{
  content: " > ";
}

/* --- タイトル --- */

.page-title {
  font-size: 28px;
  color: #601b72;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 25px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #601b72;
  border-radius: 2px;
}

.sub-title {
  font-size: 18px;
  color: #601b72;
  font-weight: bold;
  margin-bottom: 10px;
}

/* --- テキスト --- */

.page-lead {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0 auto;
  text-align: left;
}

.lead-text {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}
.text-red {
  color: #d11c1c !important;
}

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

.text-middle {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.copy-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: bold;
}

.copy-sub {
  font-size: 14px;
  color: #444;
}

/* --- リスト --- */

.dot-list {
  list-style: none;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.dot-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 4px;
  font-size: 14px;
}

.dot-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #601b72;
}


.history-dl-wrap {
  margin-top: 20px;
  background-color: #ffffff; /* ベース背景 */
}

.history-dl {
  width: 100%;
}

.history-row {
  display: flex;
  align-items: center;
  padding: 18px 25px;
}

/* ★ 偶数行（2行目、4行目...）に自動で薄い紫背景を適用 */
.history-row:nth-child(even) {
  background-color: #fdf6ff;
}

.history-year {
  width: 18%;
  font-weight: bold;
  font-size: 14px;
  color: #222;
  flex-shrink: 0;
}

.history-desc {
  width: 82%;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* --- コンポーネント: ボタン・ラベル --- */
.btn-more {
  display: inline-block;
  border: 1px solid #601b72;
  color: #601b72;
  border-radius: 20px;
  padding: 6px 40px;
  font-size: 14px;
  transition: all 0.3s;
  background: #fff;
}
.btn-more:hover {
  background: #601b72;
  color: #fff;
}
.btn-more-sm {
  display: inline-block;
  border: 1px solid #601b72;
  color: #601b72;
  border-radius: 15px;
  padding: 4px 25px;
  font-size: 12px;
  background: #fff;
}

/* ボタン群（右寄せまたは中央揃え用） */
.btn-group {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 25px;
  flex-wrap: wrap;
}

.label {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 20px;
  text-align: center;
  min-width: 80px;
}
.label.yosakoi { background-color: #d11c1c; }
.label.soccer { background-color: #59197c; }
.label.agriculture { background-color: #38b474; }
.label.sponsor { background-color: #00a0e9; }

/* CTAエリア（CONTACTバナー） */
.section-cta {
  padding: 40px 0 60px;
}

.cta-box {
  border: 1px solid #71247c;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  background-color: #ffffff;
}

.cta-text {
  font-size: 13px;
  color: #333;
  margin-bottom: 15px;
}

.btn-cta {
  display: inline-block;
  background-color: #601b72;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 45px;
  border-radius: 20px;
  transition: opacity 0.3s;
}

.btn-cta:hover {
  opacity: 0.7;
}

/* --- ヘッダー --- */
.header {
  position: sticky;
  top: 0;
  border-top: 4px solid #601b72;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}
.logo img {
  height: 60px;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}
.nav-item a {
  font-weight: bold;
  font-size: 14px;
  color: #555;
  transition: color 0.3s;
  position: relative;
  display: inline-block;
  padding-bottom: 4px; /* アンダーバー用の余白 */
}
.nav-item a:hover {
  opacity: 0.7;
}

.nav-item a.current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #601b72;
}

.nav-contact a {
  background-color: #601b72;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 20px;
}

/* --- 2カラム Flex ＆ テーブル --- */
.col-flex {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.col-img {
  width: 40%;
}

.col-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.col-text-wrap {
  width: 60%;
}

/* CONTACTボタンなどの特殊スタイル用除外設定（必要に応じて） */
.nav-contact a.current::after {
  display: none;
}

.nav-sp-news {
  display: none; /* PC版では非表示 */
}
.menu-trigger {
  display: none; /* PC版では非表示 */
}

/* --- フッター --- */
.footer {
  background-color: #601b72;
  color: #fff;
  padding: 40px 0;
}

.footer .container{
  display: flex;
  justify-content: right;
}
.footer-sns {
  display: flex;
  padding-top: 20px;
  justify-content: center;
  gap: 20px;
  margin-right: 20px;
}
.footer-sns img {
  width: 35px;
  height: 35px;
}
.copyright {
  font-size: 12px;
  padding-top: 30px;
  margin-right: 20px;
  text-align: center;
}
.footer-bottom-logo img {
  max-width: 300px;
}

/* ==========================================================================
   トップページ
   ========================================================================== */

/* --- メインビジュアル (スライダー基本構造) --- */
.main-visual {
  position: relative; /* 子要素の基準位置 */
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  aspect-ratio: 1210 / 600; 
  overflow: visible;
}

.slider-container {
  width: 100%;
  height: calc(100% - 50px);
  position: relative;
  overflow: hidden;
  background-color: #000;
}

/* ★追加: 画像の上に固定するプレーンテキストブロックのスタイル */
.slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5; /* スライド(2)と矢印(10)の間に配置 */
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  text-align: center;
  padding: 30px 50px;
  width: 85%;
  max-width: 700px;
  pointer-events: none; /* 下にある要素のクリックを邪魔しない */
}

.overlay-sub { font-size: 20px; font-weight: bold; letter-spacing: 0.1em; margin-bottom: 5px; }
.overlay-main { font-size: 32px; font-weight: 900; letter-spacing: 0.05em; line-height: 1.3; margin-bottom: 5px; }
.overlay-club { font-size: 24px; font-weight: bold; letter-spacing: 0.1em; }

/* 既存のスライドスタイル（z-indexの競合を避けるため再確認） */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 矢印やドットはテキストよりさらに上に配置 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;  /* 押しやすいように少し大きく */
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒い丸 */
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10; /* テキストブロック(z-index: 5)より前面に */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.slider-arrow:hover {
  background-color: rgba(113, 36, 124, 0.8); /* ホバー時にブランドカラーに */
}
/* 矢印の「くの字」をCSSで描画 */
.slider-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;  /* 白い太めの線 */
  border-left: 3px solid #ffffff; /* 白い太めの線 */
}
/* 左矢印は反時計回りに45度回転 */
.slider-arrow.prev {
  left: 20px;
  transform: translateY(-50%) rotate(-45deg);
}
/* 右矢印は時計回りに135度回転 */
.slider-arrow.next {
  right: 20px;
  transform: translateY(-50%) rotate(135deg);
}

/* --- ★修正: インジケーター（ドット） --- */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10; /* テキストブロックより前面に */
}
.dot {
  display: block;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4); /* 通常時は半透明の白 */
  border: 1px solid rgba(113, 36, 124, 0.5);   /* うっすら紫の枠線 */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
/* 現在地を表すアクティブなドット */
.dot.active {
  background-color: #601b72; /* 鮮やかな紫 */
  transform: scale(1.2);     /* 少しだけ大きくして強調 */
}

/* --- セクション共通 背景 --- */
.section {
  padding: 60px 0;
}
.section-purple { background-color: #fdf6ff; }

/* --- お知らせセクション --- */
.section-title {
  font-size: 22px;
  color: #601b72;
  border-bottom: 2px solid #601b72;
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title img {
  height: 40px;
}
.news-list {
  margin-bottom: 30px;
}
.news-row {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0e6f2;
  font-size: 14px;
}
.news-row .date {
  margin-left: 15px;
  margin-right: 15px;
  font-weight: bold;
}
.news-row .text {
  flex: 1;
}
.news-row a{
  text-decoration: underline;
}

.news-row a:hover{
  text-decoration: none;
  opacity: 0.7;
}

.news-detail .date{
  text-align: right;
  font-weight: bold;
  font-size: 14px;
}
/* --- 活動カテゴリー --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.activity-card {
  background: #fff;
  text-align: center;
}
.activity-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* アイコンと文字の間の隙間 */
  font-size: 20px;
  color: #111;
  margin-bottom: 15px;
  font-weight: 900;
  text-align: left; /* テキスト自体は左揃えにして綺麗に整列 */
}

.activity-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.activity-title .sub {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: normal;
}
.activity-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 50%;
}
.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-desc {
  font-size: 13px;
  text-align: left;
  color: #444;
  margin-bottom: 20px;
  max-width: 340px;
  height: 120px; /* 高さを揃える */
}

/* --- ミッションセクション --- */

.mvv-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

/* 2行目のVISIONとVALUEを横並び（PC時） */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

/* 1番目のMISSIONのみ、PC時中央寄せ2カラム風レイアウト */
.mvv-item:nth-child(1) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.mvv-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mvv-img {
  width: 45%;
  flex-shrink: 0;
  text-align: center;
}

.mvv-img img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.mvv-content {
  width: 55%;
}

.mvv-sub {
  font-size: 14px;
  font-weight: bold;
  color: #601b72;
  margin-bottom: 2px;
}

.mvv-main {
  font-size: 28px;
  font-weight: 900;
  color: #601b72;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: 0.03em;
}

.mvv-catch {
  font-size: 16px;
  font-weight: bold;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 12px;
}

.mvv-desc {
  font-size: 13px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.mvv-btn-wrap {
  text-align: left;
}

/* --- パートナーセクション --- */
.partners-title {
  font-size: 22px;
  color: #601b72;
  border-bottom: 2px solid #601b72;
  padding-bottom: 10px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;  
}
.partner-logo img {
  max-height: 100%;
  object-fit: contain;
  background: #fff;
}
.partner-logo a:hover {
  opacity: 0.7;
}
.grid-main { grid-template-columns: repeat(3, 1fr); }
.grid-sub { grid-template-columns: repeat(3, 1fr); }
.grid-small { grid-template-columns: repeat(3, 1fr); }


/**********   フェードインアニメーション（方向別バリエーション） **********/

/* ① 【下から】フェードイン（従来のクラスも秒数を2.0sに統一） */
.js-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
              transform 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* ② 【左から】フェードイン（初期状態は左に40pxマイナス） */
.js-fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
              transform 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* ③ 【右から】フェードイン（初期状態は右に40pxプラス） */
.js-fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
              transform 2.0s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* 表示状態（すべてのクラス共通で、透明度1・位置をリセット） */
.js-fade-in.is-visible,
.js-fade-in-left.is-visible,
.js-fade-in-right.is-visible {
  opacity: 1;
  transform: translate(0, 0); /* XもYも0に戻す */
}

/* ==========================================================================
   お問い合わせページ用スタイル
   ========================================================================== */

/* --- お問い合わせフォームセクション --- */
.section-contact-form {
  background-color: #fdf6ff; /* 画像同様の背景トーン */
  padding: 60px 0 80px;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.error {
  max-width: 900px;
  padding: 20px;
  margin: 20px auto 40px;
  background-color: #fff;
  border: 1px solid #c00000;
}

.error p{
  font-size: 16px;
  font-weight: bold;
  color: #c00000;
  margin-bottom: 20px;
}

.error ul{
  padding: 0 20px;
}

.error li{
  font-size: 14px;
  color: #c00000;  
}

/* フォームテーブル */
.form-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #71247c;
  background-color: #ffffff;
}

.form-table tr {
  border-bottom: 1px solid #71247c;
}

.form-table tr:last-child {
  border-bottom: none;
}

.form-table th {
  width: 28%;
  background-color: #f7eff9; /* 紫系の薄い背景 */
  padding: 20px 25px;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  font-size: 15px;
  color: #222;
  border-right: 1px solid #71247c;
}

.form-table td {
  width: 72%;
  padding: 15px 25px;
  vertical-align: middle;
  background-color: #ffffff;
}

/* 必須バッジ */
.badge-required {
  display: inline-block;
  background-color: #c00000;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}

/* 入力要素 */
.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #c8b0d0;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #601b72;
  box-shadow: 0 0 5px rgba(96, 27, 114, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 200px;
}

.is-error{
  border: 2px solid #c00000 !important;
  background-color: #ffb4b4 !important;
}

/* 確認ボタン */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.btn-submit {
  display: inline-block;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #71247c;
  border-radius: 20px;
  padding: 8px 50px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background-color: #601b72;
  color: #ffffff;
}

/* ==========================================================================
   お問い合わせ確認画面用
   ========================================================================== */

/* 確認テーブルのテキスト調整 */
.confirm-table td {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

/* メールアドレスリンク */
.confirm-email-link {
  color: #333;
  text-decoration: underline;
}

/* お問い合わせ内容（改行を保持） */
.confirm-message {
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

/* ボタンエリア（戻る・送信の2連並び） */
.confirm-submit-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

/* 戻るボタン (枠線紫・背景白) */
.btn-back {
  display: inline-block;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #71247c;
  border-radius: 20px;
  padding: 8px 45px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 110px;
}
.btn-back:hover {
  background-color: #f7eff9;
}

/* 送信ボタン (紫色塗りつぶし・文字白) */
.btn-send {
  display: inline-block;
  background-color: #601b72;
  color: #ffffff;
  border: 1px solid #601b72;
  border-radius: 20px;
  padding: 8px 45px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 110px;
}
.btn-send:hover {
  opacity: 0.7;
}
/* ==========================================================================
   ABOUTページ用 スタイル追記
   ========================================================================== */

/* リード文 */
.about-lead-text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0 auto;
  text-align: left;
}

/* クラブ概要 Flexエリア */
.about-overview-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.about-overview-img {
  width: 35%;
  text-align: center;
}

.about-overview-img img {
  max-width: 260px;
  width: 100%;
}

.about-overview-table-wrap {
  width: 65%;
}

/* 概要テーブル */
.about-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #71247c;
  background-color: #ffffff;
}

.about-table tr {
  border-bottom: 1px solid #71247c;
}

.about-table tr:last-child {
  border-bottom: none;
}

.about-table th {
  width: 30%;
  background-color: #f7eff9;
  padding: 12px 20px;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  color: #222;
  border-right: 1px solid #71247c;
}

.about-table td {
  width: 70%;
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
}

/* 見出しアイコン共通 */
.section-title-icon {
  height: 28px;
  width: auto;
  vertical-align: middle;
}

/* 組織図画像 */
.about-organization-img {
  text-align: center;
  margin: 30px auto;
  max-width: 780px;
}

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

/* 役割についてボックス */
.about-roles-box {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 6px;
  margin-top: 20px;
}


.about-mvv-block {
  padding: 20px 0 40px;
}

/* 薄紫背景（全幅適用） */
.about-mvv-block.bg-purple {
  background-color: #fdf6ff;
}

.about-mvv-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* VISIONなど、画像を右側に配置するレイアウト */
.about-mvv-inner.reverse {
  flex-direction: row-reverse;
}

.about-mvv-img {
  width: 25%;
  flex-shrink: 0;
  text-align: center;
  padding-top: 10px;
}

.about-mvv-img img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.about-mvv-content {
  width: 75%;
}

.about-mvv-sub {
  font-size: 15px;
  font-weight: bold;
  color: #601b72;
  margin-bottom: 2px;
}

.about-mvv-main {
  font-size: 32px;
  font-weight: 900;
  color: #601b72;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.about-mvv-catch {
  font-size: 18px;
  font-weight: bold;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-mvv-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.85;
}

.about-mvv-text p {
  margin-bottom: 1.5em;
}

.about-mvv-text p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   カテゴリー共通（SOCCER等）スタイル
   ========================================================================== */

/* --- メインビジュアル --- */
.category-mv {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 1210 / 438;
  overflow: hidden;
}

.category-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-mv-overlay {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  width: 90%;
}

.category-mv-sub {
  display: block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.category-mv-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* --- タブナビゲーション --- */
/* --- タブナビゲーション（H2/Flex構造へ変更） --- */
.tab-nav-wrapper {
  margin-top: 30px;
  margin-bottom: 40px;
}

.tab-nav-container {
  display: flex;
  gap: 15px;
  border-bottom: 2px solid #601b72;
}

.tab-item {
  flex: 0 0 180px;
}

/* H2見出しのリセット */
.tab-heading {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.tab-label,
.tab-item a {
  display: block;
  text-align: center;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 15px;
  color: #601b72;
  background-color: #f7eff9;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s;
}

.tab-item.active .tab-label,
.tab-item a:hover {
  background-color: #601b72;
  color: #ffffff;
}

/* --- チームコンセプト --- */
.soccer-concept-text {
  font-size: 14px;
  color: #333;
  line-height: 1.9;
  text-align: justify;
}

.table-note {
  font-size: 12px;
  color: #666;
}

/* --- Historyテーブル --- */
.history-dl-wrap {
  margin-top: 20px;
}

.history-dl {
  width: 100%;
}

.history-row {
  display: flex;
  align-items: center;
  padding: 18px 25px;
}

/* デザイン通りの交互背景（2行目などの背景色） */
.history-row:nth-child(even) {
  background-color: #fdf6ff;
}

.history-year {
  width: 18%;
  font-weight: bold;
  font-size: 14px;
  color: #222;
  flex-shrink: 0;
}

.history-desc {
  width: 82%;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* ==========================================================================
   SOCCER メンバー紹介スタイル
   ========================================================================== */

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 30px;
  margin-top: 25px;
}

.member-card {
  display: flex;
  background-color: #ffffff;
  border: 1px solid #e2d3e5;
  border-radius: 4px;
  overflow: hidden;
}

.member-img {
  width: 38%;
  background-color:#601b72 ;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* height: auto;         縦横比を保持したまま伸縮 */
  /* max-width: 100%;     親要素からはみ出さない */
  /* object-fit: contain;  画像全体が枠内に収まるように配置 */
  /* display: block; */
}

.member-info {
  width: 62%;
  padding: 12px 15px;
  background-color: #fcf9fd;
}

.member-table {
  width: 100%;
  border-collapse: collapse;
}

.member-table tr {
  border-bottom: 1px solid #71247c;
}

.member-table tr:last-child {
  border-bottom: none;
}

.member-table th {
  width: 35%;
  padding: 8px 5px;
  font-size: 13px;
  font-weight: bold;
  color: #222;
  text-align: left;
  vertical-align: middle;
}

.member-table td {
  width: 65%;
  padding: 8px 5px;
  font-size: 13px;
  color: #333;
  text-align: left;
  vertical-align: middle;
}

/* ==========================================================================
   AGRICULTURE（農業）ページ スタイル
   ========================================================================== */

/* --- お手伝いできること --- */
.agri-help-box {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.agri-help-lead {
  margin-bottom: 15px;
}

.agri-help-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.agri-help-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}

.agri-help-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.agri-help-note {
  font-size: 14px;
  color: #444;
}

/* --- 活動実績について --- */
.agri-work-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}

.agri-work-item {
  background-color: #ffffff;
}

.agri-work-title {
  font-size: 18px;
  font-weight: bold;
  color: #601b72;
  margin-bottom: 5px;
}

.agri-work-sns {
  font-size: 13px;
  color: #333;
  margin-bottom: 15px;
  word-break: break-all;
}

.agri-work-sns a {
  color: #601b72;
  text-decoration: underline;
}

.agri-work-flex {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.agri-work-img {
  width: 40%;
  flex-shrink: 0;
}

.agri-work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.agri-work-table-wrap {
  width: 60%;
}

/* ==========================================================================
   YOSAKOI ページ スタイル
   ========================================================================== */
.yosakoi .category-mv-overlay {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  width: 90%;
}

.yosakoi-concept-text {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
}

/* ==========================================================================
   sponsor（スポンサー一覧）ページ スタイル
   ========================================================================== */

.section-sponsor-list {
  padding: 40px 0 60px;
}

.sponsor-list {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.sponsor-item {
  display: flex;
  align-items: flex-start;
  padding: 30px 40px;
}

.sponsor-item:last-child {
  border-bottom: none;
}

/* ★ 奇数行 (1, 3, 5...) のみ背景に薄い紫 (#fdf6ff) を適用 */
.sponsor-item:nth-child(odd) {
  background-color: #fdf6ff;
}

/* スポンサーロゴ領域 */
.sponsor-logo {
  width: 30%;
  padding-right: 30px;
  flex-shrink: 0;
}

.sponsor-logo img {
  max-width: 100%;
  object-fit: contain;
}

/* スポンサー詳細情報領域 */
.sponsor-detail {
  width: 75%;
  flex-grow: 1;
}

.sponsor-name {
  font-size: 16px;
  font-weight: bold;
  color: #601b72;
  margin-bottom: 10px;
}

.sponsor-desc {
  font-size: 13px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.sponsor-url {
  font-size: 13px;
  color: #333;
  word-break: break-all;
}

.sponsor-url a {
  color: #333;
  text-decoration: underline;
}

.sponsor-btn-wrap {
  text-align: right;
  margin-top: 5px;
}

/* ==========================================================================
   SPONSOR 詳細ページ スタイル
   ========================================================================== */

/* --- ① スポンサーメインビジュアルカード --- */
.sponsor-mv-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background-color: #fdf6ff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 50px;
}

.sponsor-mv-img {
  width: 40%;
  flex-shrink: 0;
  text-align: center;
}

.sponsor-mv-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sponsor-mv-info {
  width: 70%;
}


/* --- セクション共通（お知らせ・お客様の声・会社概要） --- */
.sponsor-sec {
  margin-bottom: 50px;
}

/* --- ③ お客様の声 --- */
.voice-header {
  margin-bottom: 15px;
  border-bottom: 1px dashed #c8b0d0;
  padding-bottom: 10px;
}

.voice-meta {
  display: inline-block;
  font-size: 13px;
  color: #601b72;
  font-weight: bold;
  margin-bottom: 5px;
}

.voice-heading {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.voice-body {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.voice-body p {
  margin-bottom: 1em;
}

.voice-strong {
  font-weight: bold;
  color: #601b72;
  margin-top: 15px;
}

/* --- ④ 会社概要テーブル --- */
.sponsor-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #71247c;
  background-color: #ffffff;
}

.sponsor-table tr {
  border-bottom: 1px solid #71247c;
}

.sponsor-table tr:last-child {
  border-bottom: none;
}

.sponsor-table th {
  width: 28%;
  background-color: #f7eff9;
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  font-weight: bold;
  font-size: 14px;
  color: #222;
  border-right: 1px solid #71247c;
  line-height: 1.6;
}

.sponsor-table td {
  width: 72%;
  padding: 18px 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  vertical-align: top;
}

.sponsor-branch-list p {
  margin-bottom: 12px;
}

.sponsor-branch-list p:last-child {
  margin-bottom: 0;
}

.sponsor-url-link {
  color: #601b72;
  text-decoration: underline;
  word-break: break-all;
}
/* ==========================================================================
   NEWS お知らせ一覧
   ========================================================================== */
.news .news-row{
  padding: 20px;
}
.news .news-row:nth-child(odd) {
  background-color: #fdf6ff;
}

/* ==========================================
   ページネーション（画像デザイン完全再現）
   ========================================== */
.pagination-wrapper {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 数字枠の基本スタイル */
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #9c7ba8; /* 画像の薄紫枠線 */
  background-color: #ffffff;
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline; /* リンク数字の下線 */
  text-underline-offset: 2px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* ホバー時 */
a.page-link:not(.prev):not(.next):hover {
  background-color: #f2eaf5;
}

/* 現在のページ（塗りつぶし・下線なし） */
.page-link.current {
  background-color: #eedff2; /* 画像のアクティブ背景色 */
  border-color: #9c7ba8;
  color: #000000;
  text-decoration: none; /* 現在地は下線なし */
  cursor: default;
}

/* 省略記号（…） */
.page-link.dots {
  border: none;
  background: transparent;
  color: #333333;
  text-decoration: none;
  cursor: default;
  width: auto;
  min-width: 16px;
}

/* 「前へ」「次へ」のグレー丸ボタン */
.page-link.prev,
.page-link.next {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: #888888; /* 画像のグレー背景 */
  color: #ffffff;
  padding: 0;
  text-decoration: none;
}

.page-link.prev:hover,
.page-link.next:hover {
  background-color: #666666;
}

/* SVGアイコンの位置調整 */
.page-link.prev svg,
.page-link.next svg {
  display: block;
  fill: #ffffff;
}

/* ==========================================================================
   NEWS お知らせ詳細
   ========================================================================== */

.news .page-header span{
  margin: 10px 20px 20px;
  vertical-align: middle;
}

/* ==========================================================================
   【記事詳細共通】 お知らせ詳細＆スポンサー様詳細
   ========================================================================== */
.article h2{
  font-size: 22px;
  color: #601b72;
  border-bottom: 2px solid #601b72;
  padding-bottom: 10px;
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article h3{
  font-size: 18px;
  color: #601b72;
  border-bottom: 1px dashed #601b72;
  padding-bottom: 10px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article h4{
  font-size: 16px;
  color: #222;
  font-weight: bold;
  margin: 20px 0;
}

.article blockquote .wp-block-paragraph{
  font-size: 16px;
  color: #601b72;
  font-weight: bold;
  margin-bottom: 10px;
}

.article .wp-block-list{
  position: relative;
  padding-left: 15px;
  margin-bottom: 4px;
  font-size: 14px;
}

.article .wp-block-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #601b72;
}

.article .wp-block-button{
  margin: 20px 0;
}

.article .wp-element-button, .wp-block-button__link{
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-radius: 20px;
  color: #601b72;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding-top: 6px;
  padding-right: 40px;
  padding-bottom: 6px;
  padding-left: 40px;
  text-decoration: none;
  text-transform: inherit;
}

.article .a:hover{
  opacity: 0.7;
}

.wp-block-paragraph{
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 20px 0;
}

/* ==========================================================================
   スマートフォン用スタイル (ブレイクポイント: 768px以下)
   ========================================================================== */
@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200; /* メニュー背景(150)より前に出すため200に指定 */
  }
  .logo {
    position: relative;
    z-index: 200; /* ハンバーガーボタン（200）と同じ高さを指定し、メニュー（150）より前に出します */
  }

  /* ヘッダー＆ハンバーガーメニューの挙動 */
  .menu-trigger {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
  }
  .menu-trigger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #511c5e;
    transition: all 0.3s;
  }
  .menu-trigger span:nth-of-type(1) { top: 0; }
  .menu-trigger span:nth-of-type(2) { top: 11px; }
  .menu-trigger span:nth-of-type(3) { top: 22px; }

  /* ナビゲーション（メニューが閉じている時のデフォルト） */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fdf6ff; /* この背景色の下にロゴが潜り込んでいたのを、上記のz-indexで解決します */
    z-index: 150;
    transition: right 0.4s ease;
    padding: 90px 20px 40px; /* ロゴとメニュー文字が被らないよう、上部の余白を少しだけ広げました */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
  }
  .nav-item a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }
  .nav-contact {
    border-bottom: none;
    margin-top: 20px;
  }
  .nav-contact a {
    display: inline-block;
    width: auto;
    padding: 10px 40px;
  }

  /* メニュー展開時（JavaScriptでbodyまたはnavにクラス付与） */
  html{
      overflow-x: hidden;
  }
  body{
      overflow-x: hidden;
      padding-top: 94px; /*  ヘッダーの実際の高さに合わせて数値を調整してください */
  }
  body.menu-open {
    overflow: hidden; /* 背景スクロール固定 */
  }
  body.menu-open .nav {
    right: 0;
  }
  /* ハンバーガーアイコンを「×」に変形 */
  body.menu-open .menu-trigger span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  body.menu-open .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  body.menu-open .menu-trigger span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }

  .nav-item a.current {
    background-color: #fff;
  }

  /* CTAエリア（CONTACTバナー） */
  .section-cta {
    padding: 40px 0 100px;
  }

  /* レイアウト調整 */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .activity-desc {
    width: 100%;
    height: auto;
  }
  .news-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-row .date {
    margin: 0;
  }
  .btn-group {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .btn-group .btn-more {
    text-align: center;
    width: 100%;
  }
  .col-text-wrap{
    width: 100%;
  }

/* スマホ版に合わせてメインビジュアルの縦横比を調整 */
.main-visual {
    aspect-ratio: 375 / 240; /* スマホ版の比率 */
  }

/* スマホでは矢印を少し小さく、端に寄せる */
  .slider-arrow {
    width: 35px;
    height: 35px;
  }
  .slider-arrow::before {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-left-width: 2px;
  }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }

  .slider-dots {
    bottom: 15px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }

  .slider-overlay {
    padding: 15px 20px;
    width: 90%;
  }
  .overlay-sub { font-size: 13px; margin-bottom: 2px; }
  .overlay-main { font-size: 16px; margin-bottom: 2px; }
  .overlay-club { font-size: 14px; }

  /* パートナーロゴのSP最適化（縦並び・2列に縮小） */
  .grid-main { grid-template-columns: 1fr; }
  .grid-sub { grid-template-columns: 1fr; }
  .grid-small { grid-template-columns: repeat(2, 1fr); }

  .footer .container{
    display: inline-block;
    justify-content: center;
  }

  .footer-sns {
    margin-right: 0px;
  }
  .copyright {
    margin-right: 0px;
  }
  .footer-bottom-logo{
    text-align: center;
    margin: 20px auto 0;
  } 
/********** TOPページ **********/
  .mvv-grid {
    grid-template-columns: 1fr; /* 1カラム表示 */
    gap: 40px;
  }

  .mvv-item,
  .mvv-item:nth-child(1) {
    flex-direction: column; /* 画像とテキストを縦並びに */
    text-align: center;
    gap: 20px;
  }

  .mvv-img,
  .mvv-content {
    width: 100%;
  }

  .mvv-img img {
    max-width: 160px;
  }

  .mvv-btn-wrap {
    text-align: center; /* スマホ時はボタンを中央寄せ */
  }

  .mvv-catch br {
    display: none; /* スマホ画面幅に合わせて改行解除 */
  }
/********** お問い合わせフォーム **********/
  .page-header {
    padding: 30px 0 20px;
  }
  .page-title {
    font-size: 22px;
  }
  .page-lead {
    font-size: 13px;
  }

  /* テーブル要素をすべてブロック化して上（TH）・下（TD）の縦並びにする */
  .form-table,
  .form-table tbody,
  .form-table tr,
  .form-table th,
  .form-table td {
    display: block;
    width: 100%;
  }

  .form-table tr {
    border-bottom: 1px solid #71247c;
  }

  .form-table th {
    border-right: none;
    border-bottom: 1px solid #e5d5eb;
    padding: 12px 15px;
    font-size: 14px;
  }

  .form-table td {
    padding: 12px 15px;
  }

  .btn-submit {
    width: 100%;
    max-width: 200px;
  }
  .confirm-submit-group {
    gap: 15px;
  }
  .btn-back,
  .btn-send {
    flex: 1;
    max-width: 160px;
    padding: 10px 0;
    text-align: center;
  }

/********** ABOUTページ **********/
  .about-overview-flex {
    flex-direction: column;
    gap: 20px;
  }

  .about-overview-img,
  .about-overview-table-wrap {
    width: 100%;
  }

  .about-overview-img img {
    max-width: 180px;
  }

  /* スマホでのテーブル表示（縦並び） */
  .about-table,
  .about-table tbody,
  .about-table tr,
  .about-table th,
  .about-table td {
    display: block;
    width: 100%;
  }

  .about-table th {
    border-right: none;
    border-bottom: 1px solid #e5d5eb;
    padding: 8px 12px;
  }

  .about-table td {
    padding: 8px 12px;
  }

  .about-mvv-block {
    padding: 40px 0;
  }

  .about-mvv-inner,
  .about-mvv-inner.reverse {
    flex-direction: column; /* 全て上：画像 / 下：テキストの1カラムに変更 */
    gap: 25px;
  }

  .about-mvv-img,
  .about-mvv-content {
    width: 100%;
  }

  .about-mvv-img {
    padding-top: 0;
  }

  .about-mvv-img img {
    max-width: 160px;
  }

  .about-mvv-main {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .about-mvv-catch {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .about-mvv-text {
    font-size: 13.5px;
    line-height: 1.8;
  }

/********** SOCCERページ **********/

  /* メインビジュアル */
  .category-mv {
    aspect-ratio: 375 / 200;
  }
  .category-mv-sub {
    font-size: 14px;
  }
  .category-mv-title {
    font-size: 28px;
  }

  /* タブナビゲーション */
  .tab-item {
    flex: 1;
  }
  .tab-label,
  .tab-item a {
    padding: 10px 5px;
    font-size: 13px;
  }

  /* 活動セクション */
  .col-flex {
    flex-direction: column;
    gap: 20px;
  }
  .col-img,
  .col-table-wrap {
    width: 100%;
  }

  /* History（スマホ時縦並び） */
.history-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 8px;
  }
  .history-year,
  .history-desc {
    width: 100%;
  }

/********** SOCCERページ　メンバー紹介 **********/
  .member-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .member-card {
    min-height: 140px;
  }

  .member-img {
    width: 35%;
  }

  .member-info {
    width: 65%;
    padding: 10px;
  }

  .member-table th,
  .member-table td {
    padding: 6px 4px;
    font-size: 12px;
  }
/********** AGRICULTURE（農業）ページ **********/
  .agri-work-flex {
    flex-direction: column;
    gap: 15px;
  }

  .agri-work-img,
  .agri-work-table-wrap {
    width: 100%;
  }

  .agri-work-img img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
/********** スポンサー様一覧ページ **********/
  .sponsor-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
  }

  .sponsor-logo {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    padding-right: 0;
  }

  .sponsor-detail {
    width: 100%;
  }

  .sponsor-btn-wrap {
    margin-top: 15px;
  }

/********** スポンサー詳細 **********/

  .sponsor-mv-card {
    flex-direction: column;
    padding: 25px 20px;
    gap: 20px;
  }

  .sponsor-mv-img,
  .sponsor-mv-info {
    width: 100%;
  }

  /* 会社概要テーブルのスマホ化（縦並び） */
  .sponsor-table,
  .sponsor-table tbody,
  .sponsor-table tr,
  .sponsor-table th,
  .sponsor-table td {
    display: block;
    width: 100%;
  }

  .sponsor-table tr {
    border-bottom: 1px solid #71247c;
  }

  .sponsor-table th {
    border-right: none;
    border-bottom: 1px solid #e5d5eb;
    padding: 12px 15px;
    background-color: #f7eff9;
  }

  .sponsor-table td {
    padding: 15px;
  }
/* お知らせ スマホ表示時の微調整 */
  .pagination {
    gap: 6px;
  }
  .page-link {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .page-link.prev,
  .page-link.next {
    width: 28px;
    height: 28px;
  }
/* --- パンくずリスト --- */
  .bread-list{
    display: inline-block;
    position: absolute;
    bottom: 0;
  }
}
