@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&family=Oswald&display=swap");
/* ============================================================
  kankurou.scss
  - /competition/kankurou/
  - ページ導入
  - スケジュール
  - 実施概要
  - お申込み（フォーム本体は form.scss）
============================================================ */
/* =========================================
  ページ導入
========================================= */
.page-intro {
  padding: 2.4rem 0;
  background-color: #F7FBFF;
}
.page-intro__lead {
  margin: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.9;
  color: rgba(36, 49, 58, 0.85);
}
@media (min-width: 768px) {
  .page-intro {
    padding: 3.2rem 0;
  }
  .page-intro__lead {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

/* =========================================
  セクション
========================================= */
.competition-section {
  padding: 2.4rem 0;
  background-color: #F7FBFF;
}
.competition-section__header {
  margin: 0 0 2rem;
}
.competition-section__title {
  margin: 0;
  padding: 0 0 0.8rem;
  border-bottom: 2px solid #0066A6;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #1B2730;
}
@media (min-width: 768px) {
  .competition-section__title {
    font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
  }
}

/* =========================================
  カード共通
========================================= */
.competition-card {
  overflow: hidden;
  border: 1px solid #D3DEE7;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.competition-card__header {
  margin: 0;
  padding: 1.4rem 1.4rem 0;
}
.competition-card__body {
  display: -ms-grid;
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 1.4rem;
}
.competition-card__subhead {
  position: relative;
  margin: 0 0 1.2rem;
  padding: 0 0 0.6rem 1rem;
  border-bottom: 1px solid #D3DEE7;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: #24313A;
}
.competition-card__subhead::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 4px;
  height: 1.4em;
  background-color: #0066A6;
}
.competition-card__text {
  margin: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.9;
  color: rgba(36, 49, 58, 0.85);
}
.competition-card__form {
  padding-top: 1.4rem;
  border-top: 1px solid #D3DEE7;
}
@media (min-width: 768px) {
  .competition-card__header {
    padding: 1.8rem 1.8rem 0;
  }
  .competition-card__body {
    gap: 1.6rem;
    padding: 1.8rem;
  }
  .competition-card__subhead {
    padding-left: 1.2rem;
    font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  }
  .competition-card__subhead::before {
    height: 1.5em;
  }
  .competition-card__form {
    padding-top: 1.8rem;
  }
}

/* =========================================
  スケジュール
========================================= */
.competition-schedule {
  display: -ms-grid;
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.competition-schedule__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  min-height: 8rem;
  padding: 1.2rem;
  border: 1px solid #D3DEE7;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.competition-schedule__main {
  display: -ms-grid;
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.competition-schedule__round {
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
  color: rgba(36, 49, 58, 0.7);
}
.competition-schedule__date {
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  color: #24313A;
}
.competition-schedule__status {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
  color: #0066A6;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.competition-schedule__item--finished {
  background-color: rgba(0, 0, 0, 0.02);
}
.competition-schedule__item--finished .competition-schedule__round,
.competition-schedule__item--finished .competition-schedule__date,
.competition-schedule__item--finished .competition-schedule__status {
  color: rgba(36, 49, 58, 0.6);
}
.competition-schedule__item--closed .competition-schedule__status {
  color: #d90000;
}
.competition-schedule__item--next {
  border-color: #0066A6;
  background-color: rgba(0, 102, 166, 0.05);
}
.competition-schedule__item--next .competition-schedule__round,
.competition-schedule__item--next .competition-schedule__status {
  color: #0066A6;
}
.competition-schedule__item--none {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 8rem;
  text-align: center;
  background-color: #F7FBFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.competition-schedule__empty {
  width: 100%;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  line-height: 1.8;
  color: #D43B3B;
}
@media (min-width: 768px) {
  .competition-schedule {
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .competition-schedule__item {
    min-height: 10rem;
    padding: 1.6rem;
  }
  .competition-schedule__round {
    font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  }
  .competition-schedule__date {
    font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  }
  .competition-schedule__item--none {
    min-height: 10rem;
    padding: 1.6rem;
  }
  .competition-schedule__empty {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

.contact-form {
  padding-top: 2.4rem;
}
.contact-form .c-form {
  padding-top: 0;
}