@charset "UTF-8";
/* ----------------------------------------------
トップページ
----------------------------------------------- */

/* - hero
----------------------------------------------- */

.p-topHero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  padding: 100px 2.8% 20px;
}

.p-topHero__MV {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
}

.p-topHero__MV img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  border-radius: 10px;
}

.p-topHero__logo {
  position: absolute;
  width: clamp(16.875rem, 13.464rem + 14.55vw, 31.25rem);
  top: 36.7647058824%;
  left: 12.5%;

  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
}

.p-topHero__airplane {
  position: absolute;
  width: clamp(31.25rem, 14.155rem + 35.66vw, 46.25rem);
  top: 21.910448%;
  left: -16px;
  transform: rotate(-5deg);
}

@media screen and (max-width: 767px) {
  .p-topHero {
    padding: 70px 2.8% 20px;
    min-height: 100dvh;
  }

  .p-topHero__MV {
    min-height: 350px;
  }

  .p-topHero__MV img {
    min-height: 350px;
  }

  .p-topHero__logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .p-topHero__airplane {
    width: clamp(25rem, 13.042rem + 51.02vw, 37.5rem);
    top: 15%;
    left: -100px;
  }
}
/* - news お知らせ
----------------------------------------------- */

.p-topNews {
  display: flex;
  gap: 10.4166666667%;
}

.p-topNewsLeftBox {
  flex-shrink: 0;
  padding-top: 20px;
}

.p-topNewsRightBox {
  width: 100%;
  padding: 40px 0px 40px 8%;
  background-color: #fbfcff;
  border-radius: 10px 0 0 10px;

  position: relative;
}

.p-topNewsRightBox::after {
  content: "";
  width: 150%;
  height: 100%;
  position: absolute;
  right: -100%;
  bottom: 0;
  background: #fbfcff;
  z-index: -1;
}

.p-topNews__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-topNews__link {
  display: flex;
  transition: all 0.4s ease-in-out;
}

.p-topNews__date {
  min-width: 120px;
}

.p-topNews__title {
  position: relative;
  width: calc(100% - 120px);
  font-weight: 600;
  padding-right: 24px;
}

.p-topNews__title::after {
  content: "";
  position: absolute;
  margin: auto;
  right: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--pointColor);
  border-right: 1.5px solid var(--pointColor);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-topNews__link:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews {
    flex-direction: column;
    align-items: center;
  }

  .p-topNewsLeftBox {
    padding-top: 0px;
  }

  .p-topNewsRightBox {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    border-radius: 10px;
  }

  .p-topNewsRightBox::after {
    display: none;
  }

  .p-topNews__link {
    flex-direction: column;
  }

  .p-topNews__title {
    width: 100%;
  }
}

/* - overview 大会概要
----------------------------------------------- */

/* - facilities 施設紹介
----------------------------------------------- */

.p-topFacilities {
  position: relative;
  background-color: #fbfcff;

  margin-top: 180px;
  margin-bottom: 180px;
  padding-top: 100px;
  padding-bottom: 80px;
}

.p-topFacilities::before,
.p-topFacilities::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  aspect-ratio: 1440 / 123; /* SVGの比率 */
  background: url("../img/facility-deco.svg") center / 100% 100% no-repeat;
}

.p-topFacilities::before {
  bottom: calc(100% - 3.54027777778vw); /* 画面幅に応じて50px相当をスケール */
  transform: translateX(-50%);
}

.p-topFacilities::after {
  top: calc(100% - 3.54027777778vw); /* 画面幅に応じて50px相当をスケール */
  transform: translateX(-50%) rotate(180deg);
}

.p-topFacilities__heading {
  position: absolute;
  width: 100%;
  bottom: calc(100% - 0.7%);
  left: 50%;
  padding-inline: 20px;
  margin-bottom: 0;
  transform: translateX(-50%);
}

.p-topFacilities__item {
  display: flex;
  justify-content: space-between;
}

.p-topFacilities__item + .p-topFacilities__item {
  margin-top: 80px;
}

.p-topFacilities__item:nth-child(odd) {
  flex-direction: row-reverse;
}

.p-topFacilities__slideList {
  width: 50.9090909091%;
  height: fit-content;
  padding: 0 20px;
}

.p-topFacilities___textBox {
  width: 41.8181818182%;
}

.p-topFacilities__label {
  width: 160px;
  padding: 8px;
  color: var(--pointColor);
  font-weight: 600;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--pointColor);
  border-radius: 10px;
  margin-bottom: 20px;
}

.p-topFacilities__title {
  color: var(--pointColor);
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 16px;
}

.p-topFacilities__title small {
  display: inline;
}

.p-topFacilities__infoList {
  padding: 20px;
  background-color: #f3f8ff;
  border-radius: 10px;
  margin-top: 16px;

  padding-left: calc(1em + 20px);
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  .p-topFacilities {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .p-topFacilities__heading {
    bottom: calc(100% - 1.4%);
  }

  .p-topFacilities__item,
  .p-topFacilities__item:nth-child(odd) {
    flex-direction: column;
    gap: 20px;
  }

  .p-topFacilities__slideList,
  .p-topFacilities___textBox {
    width: 100%;
  }

  .p-topFacilities__label {
    width: fit-content;
    margin-bottom: 8px;
  }
}

/* - entry エントリー・お問い合わせ
----------------------------------------------- */

.p-topEntry__heading {
  margin-bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, #ffffffcc 40%);
}

.p-form__bg {
  background-color: #ffffffcc;
  padding-top: 100px;
  padding-bottom: 80px;
}

.p-form {
  max-width: 840px;
  padding-inline: 20px;
  margin: 0 auto;
}

.p-form__item input,
.p-form__item select,
.p-form__item textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
}

.p-form__item label[for] {
  cursor: default;
}

.p-form__item + .p-form__item {
  margin-top: 40px;
}

.p-form__label {
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  margin-bottom: 0.8em;
}

.p-form__required,
.p-form__onlyEnty {
  color: #fff;
  font-size: 0.875em;
  padding: 4px 16px;
  border-radius: 10px;
  text-align: center;
}

.p-form__required {
  background-color: #d13c3c;
}

.p-form__onlyEnty {
  background-color: var(--pointColor);
}

/* セレクトボックス 三角 */
.p-form__selectWrap {
  position: relative;
}

.p-form__item select {
  appearance: none;
  -webkit-appearance: none;
}

.p-form__selectWrap::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-left: 1.5px solid var(--pointColor);
  border-bottom: 1.5px solid var(--pointColor);
  pointer-events: none;
}

/* ボタン */
.p-form__btnWrap p {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.p-form__btn {
  display: block;
  width: fit-content;
  color: #fff;
  font-weight: 600;

  padding: 8px 16px;
  border-radius: 10px;

  transition: all 0.4s ease-in-out;
}

.p-form__btn.-submit {
  background-color: var(--pointColor);
}

.p-form__btn.-back {
  color: var(--pointColor);
  background-color: #fff;
  border: var(--pointColor) 1px solid;
}


/* 確認画面・完了 */
.p-form__text{
  max-width: 840px;
  padding-inline: 20px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

.p-form__answer > span{
  margin-left: 0.5em;
}

/* WP上書き */
.wpcf7-response-output{
  text-align: center!important;
  padding: 16px 8px!important;
  border: none!important;
  background-color: #ffd6d6!important;
}

/* 参加人数 PCのみ横並び */
@media screen and (min-width: 768px) {
  .p-form__item.-member > p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .p-form__item.-member:not(.-confirm) .p-form__label {
    margin-bottom: 0;
  }

  .p-form__item.-member input {
    width: 10em;
    margin-left: 1em;
    margin-right: 0.5em;
  }

  .p-form__submit:hover {
    opacity: 0.6;
  }

  .p-form__item.-member .p-form__answer{
    margin-left: 1em;
  }

  .p-form__btn:hover{
    opacity: 0.6;
  }

}

@media screen and (max-width: 767px) {
  .p-form__bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-form__item.-member input {
    width: calc(100% - 2em);
    margin-right: 0.5em;
  }
}

/* - バナー
----------------------------------------------- */

.p-topBanner {
  margin-top: 80px;
}

.p-topBannerList {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.p-topBannerItem img {
  height: 80px;
  width: auto;
}

@media screen and (min-width: 768px) {
  .p-topBannerItem:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .p-topBannerList {
    gap: 16px;
  }

  .p-topBannerItem img {
    height: 65px;
  }
}

/* - スライド
----------------------------------------------- */

.p-topFacilities__slideList li {
  aspect-ratio: 525 / 352;
}

.p-topFacilities__slideList li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ドット */
.slick-dots {
  display: flex;
  justify-content: center;
}

.slick-dots li {
  margin: 0 4px;
}

.slick-dots li button {
  font-size: 0; /* 数字を非表示 */
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d9d9d9;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background-color: #ffed4c;
}

/* 矢印 */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10;
}

.slick-prev {
  left: 0px;
}

.slick-next {
  right: 0px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;

  position: absolute;
  top: 0;

  bottom: 0;
  margin: auto;
  transition: all 0.4s ease-in-out;
}

.slick-prev::before {
  left: 6px;
  border-top: solid 2px var(--pointColor);
  border-left: solid 2px var(--pointColor);
  transform: rotate(-45deg);
}

.slick-next::before {
  right: 6px;
  border-top: solid 2px var(--pointColor);
  border-right: solid 2px var(--pointColor);
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .slick-prev:hover::before,
  .slick-next:hover::before {
    opacity: 0.6;
  }
}

/* ----------------------------------------------
下層
----------------------------------------------- */

/* - news お知らせ
----------------------------------------------- */

.p-newsArticle {
  max-width: 800px;
  margin: 0 auto;
}

.p-news__date{
  margin-bottom: 1em;
}

.p-news__title{
  font-size: 1.25em;
  color: var(--pointColor);
  font-weight: 600;
  margin-bottom: 20px;
}

/* - temas 出場チーム
----------------------------------------------- */

.p-teams__list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;

  margin-top: 80px;
}

.p-teams__item{
  position: relative;
  padding: 60px 16px 68px 16px;
  border-radius: 10px;
  border: 1px solid var(--pointColor);
  background-color: var(--bgColor-opacity);

  display: flex;
  justify-content: center;
  align-items: center;
}

.p-teams__pref{
  position: absolute;
  font-size:  0.875em;
  font-weight: 600;
  color: #fff;
  background-color: var(--pointColor);
  top: 0;
  left: 0;
  text-align: center;
  min-width: 120px;
  padding: 4px 20px;
  border-radius: 20px 0 100px 0;
}

.p-teams__name{
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.p-teams__item .c-btnWrap{
  position: absolute;
  width: max-content;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
}

@media screen and (max-width: 767px) {
.p-teams__list{
  margin-top: 40px;
}

.p-teams__pref{
  font-size:  1em;
}
}

/* - temas 出場チーム
----------------------------------------------- */

.p-result .c-matchBox{
  padding-bottom: 48px;
}

.p-result__articleWrap{
  padding-top: 60px;
  margin-top: 140px;
}

.p-result__article{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.p-result__day{
  color: var(--pointColor);
  font-family: var(--font-EN);
  font-weight: 600;
  font-size: 3em;
  position: absolute;
  bottom: calc(100% + 20px);
  right: 50%;
  transform: translateX(50%) scaleX(0.8) ;
}

@media screen and (max-width: 767px) {
  .p-result__articleWrap{
  padding-top: 40px;
  margin-top: 80px;
}

.p-result__day{
  font-size: 2.5em;
  position: absolute;
  bottom: calc(100% + 10px);
}
}

/* - 404 
----------------------------------------------- */
.p-404__text{
  text-align: center;
}