@charset "UTF-8";
/* =======================================
   support.css
======================================= */
/*黄色の枠*/
.page-hero {
    background: var(--yellow);
    text-align: center;
    margin-top: 70px;
    height: 110px;
    /*下がラウンド*/
    border-bottom-left-radius: 100% 65%;
    border-bottom-right-radius: 50% 30%;
    padding-top: 21px;
    margin-bottom: 30px;
}


/*シャトル*/
.page-hero img  {
    /*白*/
    filter: brightness(0) invert(1);
    width: 36px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8px;
    display: block;
    animation: shuttle-poyo 2.4s ease-in-out infinite;
    filter: brightness(0) invert(1);
    /*ぽよぽよ動く*/
    transform-origin: center;
    padding-top: 0px;
}
/*動き制御*/
@keyframes shuttle-poyo{
  0%   { transform: translateY(0) rotate(0deg); }
  40%  { transform: translateY(-6px) rotate(-6deg); }
  60%  { transform: translateY(-4px) rotate(4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}


/*大会概要の文字*/
.page-hero h2{
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 1px; /* 下線の“距離” */
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--blue);
  z-index: 0;          /* 基準 */
  isolation: isolate;  /* ←超重要：背面に逃がすため */
}

.page-hero h2::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;          /* ← 下線の位置（ここを微調整） */
  height: 10px;         /* ← 線の太さ */
  background: #fff;     /* 白い線 */
  z-index: -1;
}
/*本文*/
.lead {
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    margin-top: 0px;
}


/*======メインサポート企業======*/
.main-support-card {
    margin-bottom: 80px;
}
/*社名*/
.main-support-card h3 {
	text-align: center;
    color: var(--blue);
    border-bottom-style: dashed;
    border-bottom-width: 1px;
    font-size: 18px;
    letter-spacing: 0.05rem;
    margin-bottom: 14px;
}
/*説明文*/
.main-support-card p {
    text-align: justify;
    font-size: 12px;
}
/*ロゴ*/
.main-support-card a img {
    width: 160px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 0px;
}
.main-support-card a .line {
    width: 70px;
    height: 70px;
}
.main-support-card .tuzumi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 280px;
    margin-right: auto;
    margin-left: auto;
}
.support-card {
    margin-bottom: 50px;
}
.support-card a img {
    width: 160px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5px;
}
.support-card h4 {
    font-size: 12px;
    text-align: center;
}
.support-card a .xb {
    width: 80px;
}


/*区切り線*/
#support hr {
	width: 90%;
    background-color: var(--blue);
    border-style: none;
    height: 1px;
}



/* =========================
   Tablet（768px〜）
========================= */
@media (min-width: 768px) {
/*セクション幅*/
.section-inner {
    width: 70%;
  }

/* =========================
   タイトル周り（少し大きく）
========================= */
/*黄色の枠*/
.page-hero {
    height: 126px;
    /*下がラウンド*/
}

/*シャトル*/
.page-hero img  {
    width: 40px;
    margin-bottom: 10px;
}
	
/*タイトル*/
.page-hero h2{
  font-size: 24px;
}

/*本文（少し大きくセンター合わせ）*/
.lead {
    font-size: 18px;
    margin-bottom: 60px;
    text-align: center;
}

	
/* =========================
   support：協賛企業（tablet 2カラム）
========================= */

  /* 文章あり企業 */
  .main-support-cards{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .main-support-card{
    margin-bottom: 0; /* grid管理に任せる */
  }

/*説明文*/
.main-support-card p {
    font-size: 14px;
    margin-bottom: 20px;
}
	
  /* 文章なし企業 */
  .support-cards{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  .support-card{
    margin-bottom: 0; /* grid管理に任せる */
  }


.support-main{
    margin-bottom: 100px;		
	}
.support-sub {
    margin-bottom: 100px;
}

}


/* =========================
   pc（1024px〜）
========================= */
@media (min-width: 1024px) {

/*セクション幅*/
.section-inner{
    max-width: 900px;
    width: 100%;
  }

/* =========================
   support：協賛企業（tablet 2カラム）幅少し大きく
========================= */

  /* 文章あり企業 */
  .main-support-cards{
    gap: 80px;
  }

}