@charset "UTF-8";
/* =======================================
   contact.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: 20px;
}
.form-row label {
    font-size: 12px;
}
.form-row label .required {
    color: red;
}
.form-row input {
    width: 100%;
}
.form .form-row #message {
    width: 100%;
}


/*フォーム*/
.form {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}
.form-note {
    text-align: justify;
    font-size: 12px;
}
.btn-yellow {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
  font-size: 15px;
}



/* =========================
   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;
}
	
/*フォーム文字（少し大きく）*/
.form-row label {
    font-size: 14px;
}
.form-row label .required {
    color: red;
}	
.form-note {
    font-size: 14px;
}
	
}



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

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

}
