@charset "UTF-8";
/*----------------------------------
		フォント
-----------------------------------*/
/*Noto Serif JP(日本語)*/
/*Roboto  Italic(900 数字)*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Roboto:ital,wght@1,900&display=swap");
/* ============
reset
============= */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  /* font: inherit; */
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* ========
mixin
==========*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .is-sp {
    display: none;
  }
}
/*フォント一括指定*/
/*----------------------------------
		カラー
-----------------------------------*/
/* ==================
インナー
=================== */
/* インナー */
.l-inner {
  max-width: 1080px;
  padding: 0 2.5rem;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.25rem;
  }
}
@media (max-width: 374px) {
  .l-inner {
    padding: 0 0.625rem;
  }
}

/* ==============
base
================= */
body {
  font-size: 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
  color: #181818;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #e1eef1;
  /* フォントサイズ（スマホ時大きくなるのを防止） */
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

a {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
a:hover {
  opacity: 0.7;
}

.l-voice__inner {
  max-width: 1080px;
  padding: 0 2.5rem;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .l-voice__inner {
    padding: 0 0.625rem;
  }
}

.l-voice__inner--s {
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .l-voice__inner--s {
    padding-inline: 0;
  }
}

.l-footer__inner {
  max-width: 47.125rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 0 1.65rem;
  }
}

.l-footer__sponsorInner {
  max-width: 811px;
  padding: 0 1.25rem;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .l-footer__sponsorInner {
    max-width: 728px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sponsorInner {
    max-width: 315px;
  }
}
@media (max-width: 374px) {
  .l-footer__sponsorInner {
    max-width: 290px;
  }
}

/*----------------------------------
     ボタン
-----------------------------------*/
.c-btn {
  margin-top: 0.6875rem;
}

.c-btn a {
  position: relative;
  display: block;
  width: clamp(19.688rem, 17.289rem + 10.23vw, 26.5rem);
  max-width: 100%;
  padding: 1.25rem 0.3125rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
  background: linear-gradient(91deg, #fbbc41 0%, #fbdd41 109.95%);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0.375rem;
  color: #181818;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-btn a {
    padding: 1.05rem 0.3125rem;
    max-width: 19.6875rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 374px) {
  .c-btn a {
    width: 17.85rem;
    font-size: 1rem;
  }
}
.c-btn a i {
  color: #4127e1;
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 0.3125rem;
}

.c-btn a:hover {
  color: #fcbe41;
  opacity: 1;
}
.c-btn a:hover i {
  -webkit-transform: translate(0.5rem);
  transform: translate(0.5rem);
}

.c-btn a:hover::before,
.c-btn a:focus::before {
  content: "";
  position: absolute;
  background: #fff; /* 白抜き用の背景 */
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border-radius: 0.25rem; /* border-radiusを調整 */
  z-index: -1; /* z-indexを指定 */
}

/* 第一回大会へボタン */
.c-btn--before a {
  padding-inline: 2rem;
  display: block;
  text-align: center;
  padding: 0.95rem 0.3125rem;
  font-weight: 300;
  max-width: 21.25rem;
  min-width: 17.6375rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.c-btn--before a i {
  color: #4127e1;
  font-weight: 900;
  margin-left: 0.3125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 374px) {
  .c-btn--before a {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-size: 1rem;
    padding-inline: 1rem;
    min-width: 16.6875rem;
  }
}

/* 外部リンクアイコン */
.c-btn--before img {
  width: 1.0625rem;
  margin-left: 1.25rem;
  margin-bottom: 0.1875rem;
}

.c-btn--before a:hover {
  opacity: 1;
}
.c-btn--before a:hover i {
  -webkit-transform: translate(0.5rem);
  transform: translate(0.5rem);
}

/*----------------------------------
    トップへ戻るボタン
-----------------------------------*/
.c-topBtn {
  position: fixed;
  right: 7.24%;
  bottom: 1.9875rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-topBtn {
    right: 1.075rem;
    bottom: 0.9375rem;
  }
}
.c-topBtn.is-show {
  opacity: 1;
  visibility: visible;
}
.c-topBtn a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-topBtn a:hover {
  opacity: 0.7;
}
.c-topBtn a img {
  width: 5.6625rem;
}
@media screen and (max-width: 767px) {
  .c-topBtn a img {
    width: 4rem;
  }
}
@media (max-width: 500px) {
  .c-topBtn a img {
    width: 2.7rem;
  }
}

/*----------------------------------
    見出し
-----------------------------------*/
.c-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  color: #fff;
  padding-block: 0.95rem;
  padding-left: 3.125rem;
  background: #4127e1;
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
    padding-block: 0.6rem;
    padding-left: 0.9375rem;
    margin-top: 6.35rem;
  }
}

.c-subHeading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2rem;
  letter-spacing: 0em;
  padding-left: 1.125rem;
  position: relative;
}
.c-subHeading::after {
  position: absolute;
  content: "";
  background: #7277f2;
  width: 0.375rem;
  height: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-subHeading::after {
    top: 60%;
    margin-left: 0.3125rem;
  }
}

.c-logo img {
  min-width: 8.3125rem;
}
@media screen and (max-width: 767px) {
  .c-logo img {
    min-width: auto;
  }
}

/*----------------------------------
    ローディング
-----------------------------------*/
.p-loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(149, 233, 243)), to(rgb(106, 135, 235)));
  background-image: linear-gradient(90deg, rgb(149, 233, 243), rgb(106, 135, 235));
  z-index: 500;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.p-loader__imgWrap {
  pointer-events: none;
  pointer-events: none;
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-loader__imgWrap img {
  position: absolute;
  width: 10.4375rem;
}

.logo-white {
  z-index: 2;
}

.logo-blue {
  z-index: 1;
}

.logo-white,
.logo-blue {
  opacity: 0;
  visibility: hidden;
}

.loader-hidden {
  display: none;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 5rem;
  padding: 0 2.5rem;
  background: #4127e1;
  z-index: 100;
}
@media (max-width: 1034px) {
  .p-header {
    height: 3.75rem;
    padding: 0 1.25rem;
  }
}

.p-header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  margin: 0 auto;
}
@media (min-width: 1441px) {
  .p-header-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: auto;
  }
}
@media (max-width: 1440px) {
  .p-header-wrap {
    max-width: 1000px;
  }
}
@media (max-width: 1034px) {
  .p-header-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-header-logo img {
  aspect-ratio: 167/167;
  width: 10.4375rem;
  margin-right: 1.75rem;
}
@media (max-width: 1080px) {
  .p-header-logo img {
    margin-right: 1.5625rem;
  }
}
@media (max-width: 1350px) {
  .p-header-logo img {
    width: 8.3125rem;
  }
}
@media (max-width: 374px) {
  .p-header-logo img {
    width: 7.3125rem;
  }
}

.p-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.9625rem;
  -moz-column-gap: 2.9625rem;
  column-gap: 2.9625rem;
  height: inherit;
}
@media (max-width: 1080px) {
  .p-header-nav {
    -webkit-column-gap: 1.5625rem;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
  }
}
@media (max-width: 1035px) {
  .p-header-nav {
    display: none;
  }
}

.p-header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.1125rem;
  -moz-column-gap: 2.1125rem;
  column-gap: 2.1125rem;
  height: inherit;
}
@media (max-width: 1080px) {
  .p-header-list {
    -webkit-column-gap: 2.05rem;
    -moz-column-gap: 2.05rem;
    column-gap: 2.05rem;
  }
}

.p-header__item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.200625;
  letter-spacing: 0em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
  position: relative;
  white-space: nowrap;
}

.p-header__item span,
.drawer-item span {
  position: relative;
}
.p-header__item span::before,
.drawer-item span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  height: 0.125rem;
  background: #fff;
  top: calc(100% + 0.2rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-header__item span:hover::before,
.drawer-item span:hover::before {
  width: 100%;
}

.drawer-item span::before {
  background: #181818;
}

.c-arrow-item span::before {
  background: #181818;
}

.p-header-list .c-arrow-item {
  padding-right: 1.1375rem;
  position: relative;
}
.p-header-list .c-arrow-item::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 1;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  top: 46%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-header-snsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
@media (max-width: 1080px) {
  .p-header-snsList {
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

.p-header-snsItem {
  width: 2.1875rem;
}

/* サブメニュー */
.c-subList {
  background: #d9d9d9;
  border-radius: 0.375rem;
  padding: 1rem;
  padding-right: 0.6rem;
  white-space: nowrap;
  color: #181818;
  height: auto;
}
.c-subList::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 13px solid #d9d9d9;
  border-top: 0;
  top: -0.8125rem;
}

.p-header__subList {
  display: none;
  position: absolute;
  top: 4.5rem;
  left: -3.7%;
}

.drawer-item {
  position: relative;
}
.drawer-item .drawer-subList {
  position: absolute;
  top: 2.45rem;
  right: -0.5px;
  max-width: 8.4125rem;
  width: 100%;
  left: auto;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 300;
  text-align: left;
}
.drawer-item .drawer-subList::after {
  right: 1.5375rem;
}

.c-subItem {
  font-weight: 400;
}
.c-subItem:not(:first-child) {
  margin-top: 1.325rem;
}

.drawer-item .c-arrow-item {
  position: relative;
}

.drawer-item:last-child {
  margin-top: 10.725rem;
}

/* ドロワーメニュー */
.drawer-icon {
  margin-right: 0.75rem;
  width: 1.625rem;
  display: none;
}
@media (max-width: 1034px) {
  .drawer-icon {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.drawer-icon.js-open {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.drawer-menu {
  position: fixed;
  z-index: 99;
  top: 3.75rem;
  right: 1.25rem;
  width: 48.6%;
  height: auto;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0px 0px 6px 6px;
  background: rgba(250, 250, 250, 0.6);
  background: #fff;
  padding: 1.375rem 0.75rem;
}
.drawer-menu.js-open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.drawer-item {
  font-weight: 500;
  text-align: right;
}
.drawer-item:not(:last-child) {
  padding-bottom: 1.45rem;
}
@media (max-width: 374px) {
  .drawer-item:not(:last-child) {
    padding-bottom: 0.95rem;
  }
}

.drawer-bg {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-bg.js-open {
  display: block;
}

body.no-scroll {
  overflow: hidden;
}

.drawer-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-top: 1.9375rem;
}

.drawer-sns-item img {
  width: 1.6875rem;
}

/* スクロールでヘッダー透過 */
.p-header.js-header-scroll {
  background: rgba(65, 39, 225, 0.7);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* スクロールでロゴサイズ変更 */
.p-header-logo.js-logo-scroll img {
  width: 7.3125rem;
  opacity: 0.6;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* 外部リンクアイコン */
.c-subItem--link {
  padding-right: 1.3125rem;
  position: relative;
}
.c-subItem--link::after {
  position: absolute;
  content: "";
  background: url(/img/link.png) no-repeat center center/contain;
  width: 1.0625rem;
  height: 1.0625rem;
  bottom: 0;
  right: 0;
}

/*----------------------------------
    FV
-----------------------------------*/
.swiper-container {
  margin-top: 5rem;
}
@media (max-width: 1034px) {
  .swiper-container {
    margin-top: 3.75rem;
  }
}

.p-fv__slide {
  position: relative;
}

.p-fv__content {
  white-space: nowrap;
  position: absolute;
  /* bottom: 1.0875rem; */
  bottom: 3.0875rem; /* 参加者リストの下余白ver */
  left: clamp(2.5rem, -1.945rem + 18.97vw, 15.125rem);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    /* bottom: 4%; */
    bottom: 6%; /* 参加者リストの下余白ver */
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-fv__date {
  width: 15.3125rem;
}
@media (max-width: 1400px) {
  .p-fv__date {
    width: 11.5rem;
  }
}
@media (max-width: 1110px) {
  .p-fv__date {
    width: 9.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__date {
    position: absolute;
    z-index: 2;
    top: 8.2125rem;
    left: 2.05rem;
  }
}
@media (max-width: 600px) {
  .p-fv__date {
    width: 9.5rem;
  }
}
@media (max-width: 374px) {
  .p-fv__date {
    top: 7.2125rem;
  }
}

@media (max-width: 374px) {
  .p-fv__date img {
    width: 80%;
  }
}

.p-fv__date--sp {
  position: absolute;
  top: 0;
  left: 0;
}

.p-fv__subTitle span {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.216325;
  letter-spacing: 0em;
  color: #fff;
  text-shadow:
    1px 0 0 #181818,
    0 1px 0 #181818,
    -1px 0 0 #181818,
    0 -1px 0 #181818;
  margin-right: 0.875rem;
  font-size: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
}
@media screen and (max-width: 767px) {
  .p-fv__subTitle span {
    margin-right: 0.075rem;
  }
}
@media (max-width: 374px) {
  .p-fv__subTitle span {
    font-size: 2.1875rem;
  }
}

.p-fv__subTitle {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0em;
  color: #fff;
  margin-top: -1.875rem;
  padding-left: 1.475rem;
  font-size: clamp(1.25rem, 0.81rem + 1.88vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .p-fv__subTitle {
    padding-left: 0.275rem;
  }
}
@media (max-width: 374px) {
  .p-fv__subTitle {
    text-align: center;
  }
}

.p-fv__title {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1.028078125;
  letter-spacing: 0em;
  color: #fff;
  text-shadow:
    1px 0 0 #181818,
    0 1px 0 #181818,
    -1px 0 0 #181818,
    0 -1px 0 #181818;
  padding-left: 1rem;
  font-size: clamp(4rem, 1.143rem + 7.62vw, 8rem);
  margin-top: -8.9px;
}
@media (max-width: 600px) {
  .p-fv__title {
    font-size: clamp(4rem, -0.375rem + 18.67vw, 6.625rem);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    padding-left: 0.3rem;
    margin-top: 7.8px;
  }
}
@media (max-width: 374px) {
  .p-fv__title {
    font-size: 3.75rem;
    text-align: center;
  }
}
.p-fv__title span {
  display: inline-block;
}

.p-fv__btnWrap {
  margin-top: 1.25rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__btnWrap {
    margin-top: 0.95rem;
    padding-left: 0.5625rem;
  }
}
@media (max-width: 374px) {
  .p-fv__btnWrap {
    padding-left: 0;
  }
}

.swiper-container {
  position: relative;
}
.swiper-container .p-fv__catchWrap {
  position: absolute;
  bottom: -82px;
  left: 0;
  width: 100%;
  height: 5.25rem;
  padding-block: 0.875rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.04%, #b5dbfc), color-stop(19.27%, #4127e1), color-stop(81.25%, #4127e1), to(#b5dbfc));
  background: linear-gradient(90deg, #b5dbfc 1.04%, #4127e1 19.27%, #4127e1 81.25%, #b5dbfc 100%);
  color: #fff;
  padding-left: clamp(1.25rem, -4.186rem + 23.19vw, 16.688rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .swiper-container .p-fv__catchWrap {
    padding-left: 0;
  }
}

.p-fv__catchGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.8625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__catchGroup {
    display: block;
    margin: 0 auto;
  }
}

.p-fv__catchText {
  margin-right: 1.5625rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
  font-size: clamp(1.5rem, 0.78rem + 1.36vw, 2rem);
}
@media screen and (max-width: 767px) {
  .p-fv__catchText {
    margin-right: 0;
  }
}

.p-fv__catchSub {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
  font-size: clamp(1.25rem, 0.89rem + 0.68vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-fv__catchSub {
    font-size: 1.25rem;
  }
}

/*---------------------------------------------
swiperのレスポンシブ
--------------------------------------------- */
/* 幅1441px以上は高さ817px固定・画像は拡大していき、上下が見切れる */
@media (min-width: 1441px) {
  .swiper-slide img,
  .swiper-slide source {
    width: 100%;
    height: 817px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
/* 幅1440〜778pxでは、画像の幅1440px固定高さauto  width:1440px*/
/* 幅1440px以下では縮小 */
@media (max-width: 1440px) {
  .swiper-slide img,
  .swiper-slide source {
    width: 100%;
    height: auto;
    min-height: 37.5rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 1440px) and (max-width: 600px) {
  .swiper-slide img,
  .swiper-slide source {
    width: 100%;
    min-height: auto;
    max-height: 53.125rem;
  }
}
/*----------------------------------
    news
-----------------------------------*/
.p-news__heading {
  margin-top: 11.875rem; /* 通常ver */
  /* margin-top: 40px;大会終了案内ver */
}
@media screen and (max-width: 767px) {
  .p-news__heading {
    margin-top: 7.875rem; /* 通常ver */
    /* margin-top: 40px;大会終了案内ver */
  }
}

.p-news__wrap {
  background: #b5dbfc;
  border-radius: 0.375rem;
  padding: 2.275rem 1.875rem 2.875rem 2.5rem;
  max-width: 58.75rem;
  width: 100%;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news__wrap {
    margin: 1.25rem auto 0;
    padding: 1.125rem 0.9375rem;
  }
}

.p-news__scrollArea {
  height: 18.2125rem;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
}
@media screen and (max-width: 767px) {
  .p-news__scrollArea {
    height: 18.7125rem;
  }
}

.p-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-news__item:not(:first-child) {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-news__item:not(:first-child) {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news__item {
    display: block;
  }
}

.p-news__date {
  width: 16.97%;
  max-width: 100%;
  margin-top: 0.975rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-news__date {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}

.p-news__content {
  width: calc(100% - 6.25rem);
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-news__content {
    width: 100%;
  }
}

.p-news__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0em;
  display: inline-block;
  position: relative;
  margin-top: 0.975rem;
}
.p-news__title::after {
  position: absolute;
  content: "";
  background: #181818;
  width: 97.5%;
  height: 1px;
  left: 52%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -0.45rem;
}
@media screen and (max-width: 767px) {
  .p-news__title::after {
    bottom: -0.75rem;
    left: 50%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-news__title {
    margin-top: 0.3125rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.p-news__text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0em;
  margin-top: 0.7875rem;
  padding-left: 0.95rem;
}
@media screen and (max-width: 767px) {
  .p-news__text {
    margin-top: 1.5625rem;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.4769333333;
    letter-spacing: 0em;
    padding-left: 0;
  }
}

/* ライブラリSimpleBar */
/* スクロールバー本体の中身*/
.simplebar-scrollbar::before {
  background-color: #fabe42;
  border-radius: 20px;
  width: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* スクロールバー本体の透明度（デフォルトだと透過） */
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track {
  background-color: #fff;
  border-radius: 1.25rem;
  height: 100%;
}

.simplebar-track.simplebar-vertical {
  width: 1.25rem;
}
@media screen and (max-width: 767px) {
  .simplebar-track.simplebar-vertical {
    width: 0.9375rem;
  }
}

/* スクロールバーがダブルで表示されないように */
.p-news__wrap {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

.p-news__wrap ::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

/*----------------------------------
    大会の特徴
-----------------------------------*/
.p-about__wrap {
  background: url(/img/about_bg_pc.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-about__wrap {
    background: url(/img/about_bg_sp.png) no-repeat center center/cover;
  }
}

.p-about__list {
  gap: 2.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  padding: 2.5rem 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-about__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr 1fr;
    padding: 1.25rem 4.2% 4rem;
    gap: 1.3rem 0.8rem;
  }
}
@media (max-width: 500px) {
  .p-about__list {
    padding: 1.25rem 0;
  }
}

.p-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-about__item {
    max-width: 313px;
  }
}

.p-about__img {
  text-align: center;
}
.p-about__img img {
  width: 61%;
}

.p-about__content {
  border-radius: 6px;
  background: rgba(239, 245, 246, 0.8);
  position: relative;
  width: 100%;
  /* height: 100%; */
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: -1.4375rem;
  aspect-ratio: 313/287;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    min-height: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 585px) {
  .p-about__content {
    aspect-ratio: 161/220;
    margin-top: -0.2375rem;
  }
}

.p-about__number {
  font-family: "Roboto", sans-serif;
  font-size: 12.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0em;
  font-size: clamp(7.813rem, 2.455rem + 11.16vw, 12.5rem);
  color: rgba(252, 190, 65, 0.8);
  position: absolute;
  top: -22%;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-about__number {
    font-size: clamp(6rem, -1.143rem + 30.48vw, 10rem);
  }
}
@media (max-width: 585px) {
  .p-about__number {
    font-size: clamp(6rem, -1.143rem + 30.48vw, 10rem);
    top: -17%;
  }
}

.p-about__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0em;
  position: relative;
  z-index: 4;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-about__text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0em;
    font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
    bottom: auto;
    line-height: 1.4;
    position: relative;
    top: 19%;
  }
}
@media (max-width: 374px) {
  .p-about__text {
    line-height: 1.2;
  }
}

.p-about__textArea {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-inline: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__textArea {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-inline: 0.9rem;
  }
}
.u-bottom-l {
  padding-bottom: 1.5625rem;
}

.u-bottom-s {
  padding-bottom: 1.125rem;
}

.p-about__text02 {
  padding-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__text02 {
    padding-top: 0;
  }
}

.p-about__text:nth-child(3) {
  bottom: 1.125rem;
}

/*----------------------------------
    大会概要
-----------------------------------*/
.p-summary__heading {
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-summary__heading {
    margin-top: 6.525rem;
  }
}

.p-summary__content {
  /* 仮 zcroll消えたら訂正する*/
}
.p-summary__content:not(:first-child) {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-summary__content:not(:first-child) {
    margin-top: 1.825rem;
  }
}
@media screen and (max-width: 767px) {
  .p-summary__content:nth-child(n + 4):nth-child(-n + 7) {
    margin-top: 2.5rem;
  }
}

.u-summary-contactMt {
  margin-top: 1.25rem;
}

.p-summary__wrap {
  padding: 1.6rem 1.8125rem 0;
}
@media screen and (max-width: 767px) {
  .p-summary__wrap {
    padding: 1.75rem 0 0;
  }
}

.p-summary__date,
.p-summary__course {
  margin-top: 1.1375rem;
  padding-left: 1.15rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-summary__date,
  .p-summary__course {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0em;
    margin-top: 0.7375rem;
    padding-left: 1.0125rem;
    text-align: left;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-summary__course {
    margin-top: 1.225rem;
    padding-left: 0.475rem;
  }
}

.p-summary__categoryWrap {
  margin-top: 1.35rem;
}

/* table 種目・参加資格と大会詳細共通 */
.p-summary__categoryTable,
.p-summary__detailTable {
  background: #b5dbfc;
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.p-summary__categoryTable td,
.p-summary__categoryTable th,
.p-summary__detailTable td,
.p-summary__detailTable th {
  border: none;
  border-left: 2px solid #e1eef1;
  border-top: 2px solid #e1eef1;
  vertical-align: middle;
}
.p-summary__categoryTable tr:first-child td,
.p-summary__categoryTable tr:first-child th,
.p-summary__detailTable tr:first-child td,
.p-summary__detailTable tr:first-child th {
  border-top: none;
}
.p-summary__categoryTable td:first-child,
.p-summary__categoryTable th:first-child,
.p-summary__detailTable td:first-child,
.p-summary__detailTable th:first-child {
  border-left: none;
}

/*******/
/* 種目・参加資格 */
.p-summary__categoryWrap {
  overflow-x: auto;
}

.p-summary__categoryTable {
  width: 58.8125rem;
  border-radius: 0.375rem;
}

.p-summary__categoryTable th {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
  height: 5rem;
}

.p-summary__categoryTable td {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0em;
}

.table-category-th {
  width: 8.5rem;
}

/* 最初の４つまで */
.p-summary__categoryTable td:nth-of-type(-n + 4) {
  white-space: nowrap;
}

.p-summary__categoryTable {
  text-align: left;
  table-layout: fixed;
}
.p-summary__categoryTable .u-table-start {
  width: 20.375rem;
  white-space: normal;
}
.p-summary__categoryTable th {
  padding-left: 1.25rem;
  height: 4.8125rem;
}
.p-summary__categoryTable td {
  padding: 0.65625rem 1.125rem;
}

.p-summary__categoryTable th:nth-of-type(5) {
  text-align: left;
}

/* スケジュール */
.p-summary__scheduleWrap {
  overflow-x: auto;
}

.p-summary__scheduleList {
  margin-bottom: 0.3125rem;
  width: 43.125rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0em;
  margin-top: 1.0625rem;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-summary__scheduleList {
    margin-top: 1.2625rem;
    margin-left: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.27;
    letter-spacing: 0em;
  }
}

.schedule-low {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .schedule-low {
    padding-block: 0.755rem;
    display: block;
    padding-left: 1.25rem;
  }
}
.schedule-low dt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12.875rem;
  flex: 0 0 12.875rem;
  padding-left: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .schedule-low dt {
    padding-left: 0;
  }
}
.schedule-low:nth-child(odd) {
  background: rgba(249, 201, 101, 0.8);
}
.schedule-low:nth-child(even) {
  background: #efefef;
}

/* 大会詳細 */
.p-summary__detailWrap {
  overflow-x: auto;
}

.p-summary__detailTable {
  width: 56.875rem;
  margin-top: 1.2625rem;
  border-radius: 0.375rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-summary__detailTable {
    margin-left: 0;
  }
}
.p-summary__detailTable th {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  padding-left: 2.375rem;
  width: 11.8625rem;
  text-align: left;
  padding-block: 2.1rem;
}
@media screen and (max-width: 767px) {
  .p-summary__detailTable th {
    font-size: 1rem;
  }
}
.p-summary__detailTable td {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-left: 1.75rem;
  padding-block: 0.9375rem;
}

/* エントリー方法 */
.p-summary__entryWrap {
  margin-top: 1.4625rem;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 30.625rem 1fr 7.9%;
  grid-column-gap: 2.2125rem;
  padding-inline: 1.125rem 2.6375rem;
  width: 100%;
}
@media (max-width: 991px) {
  .p-summary__entryWrap {
    display: block;
    padding-inline: 0;
    margin-bottom: 9.65rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-summary__entryWrap {
    margin-top: 1.3625rem;
    display: block;
    padding-inline: 0;
  }
}

.p-summary__entryStep {
  background: #b5dbfc;
  border-radius: 0.375rem;
  position: relative;
}
@media (max-width: 991px) {
  .p-summary__entryStep {
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .p-summary__entryStep:not(:first-child) {
    margin-top: 1.6875rem;
  }
}

.p-summary__entryStep1::after,
.p-summary__entryStep2::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.25rem solid transparent;
  border-bottom: 1.25rem solid transparent;
  border-left: 1.5rem solid #b5dbfc;
  border-right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -1.4rem;
}
@media (max-width: 991px) {
  .p-summary__entryStep1::after,
  .p-summary__entryStep2::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 1.2875rem solid transparent;
    border-left: 1.2875rem solid transparent;
    border-top: 1.5625rem solid #b5dbfc;
    border-bottom: 1.1625rem;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -1.0625rem;
  }
}

.p-summary__entryStep1 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  padding: 1.25rem 1.875rem 2.5rem;
}
@media (max-width: 991px) {
  .p-summary__entryStep1 {
    padding: 2.175rem 0.3125rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-summary__btnWrap {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-summary__btnWrap {
    margin-top: 1.2875rem;
  }
}

.p-summary__entryStep2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  padding: 2.075rem 2.01875rem;
}
@media (max-width: 1030px) {
  .p-summary__entryStep2 {
    padding: 1.875rem 1rem;
  }
}
@media (max-width: 991px) {
  .p-summary__entryStep2 {
    text-align: left;
    padding: 1.875rem 1.125rem;
  }
}
.p-summary__entryStep2 ul {
  margin-top: 1.7375rem;
}
.p-summary__entryStep2 li:not(:first-child) {
  margin-top: 0.3125rem;
}
.p-summary__entryStep2 .p-entryStep2__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
}

.p-entryStep2__note {
  margin-top: 1.9375rem;
}

.p-summary__entryStep3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
  letter-spacing: 0.4em;
}
@media (max-width: 991px) {
  .p-summary__entryStep3 {
    text-align: left;
  }
}

.p-summary__entryStep3 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .p-summary__entryStep3 {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    display: block;
    padding: 2.175rem 1.125rem;
  }
}

.p-summary__contentEntry {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  .p-summary__contentEntry {
    margin: 0;
    width: 100%;
  }
}
.p-summary__contentEntry .p-summary__cutOff {
  width: 12.6875rem;
  position: absolute;
  right: 1.775rem;
  bottom: -10.675rem;
}
@media (max-width: 991px) {
  .p-summary__contentEntry .p-summary__cutOff {
    right: 0;
    bottom: -8.975rem;
  }
}
@media (max-width: 374px) {
  .p-summary__contentEntry .p-summary__cutOff {
    width: 11.6875rem;
  }
}

/* 主催 */
.p-summary__host {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  margin-top: 1.05rem;
  padding-left: 1.25rem;
  line-height: 1.4;
}

/* お問い合わせ */
.p-summary__contact {
  font-size: 1rem;
  font-weight: 400;
  line-height: 0.9411875;
  letter-spacing: 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.25rem;
  margin-top: 1.0625rem;
}

.p-summary__email {
  text-decoration-line: underline;
  padding-right: 2.1rem;
  position: relative;
}
.p-summary__email::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #181818;
  top: 0;
  right: 0;
}

.p-summary__tel {
  padding-left: 1.5rem;
}

/*----------------------------------
    コースマップ
-----------------------------------*/
.p-course__mapWrap {
  padding-inline: 0.875rem;
  margin-top: 3.75rem;
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (max-width: 767px) {
  .p-course__mapWrap {
    margin-top: 1.25rem;
    padding-inline: 0;
  }
}

@media (max-width: 991px) {
  .p-course__map img {
    width: 48.875rem;
  }
}

.p-course__youtube {
  margin-top: 3.0375rem;
  padding-inline: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-course__youtube {
    padding-inline: 0;
  }
}

.p-course__youtube p {
  margin-bottom: 0.4375rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-course__youtube p {
    margin-top: 3.5375rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}

@media screen and (max-width: 767px) {
  .p-youtube-wrap {
    position: relative;
    width: 100%;
    padding-top: 55.82%; /* = height ÷ width × 100 */
  }
  .p-youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/*----------------------------------
    過去大会
-----------------------------------*/
.p-before__wrap {
  margin-top: 2.7375rem;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .p-before__wrap {
    padding-inline: 0;
    margin-top: 1.7375rem;
  }
}

.p-before__subHeading {
  display: inline;
}

.p-before__date {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
  padding-left: 0.6875rem;
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-before__date {
    padding-left: 1.0875rem;
    display: block;
    margin-top: 0.4125rem;
  }
}

.p-before__cardList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 0.875rem;
  margin-top: 0.812rem;
}
@media screen and (max-width: 767px) {
  .p-before__cardList {
    margin-top: 1.0875rem;
    display: block;
  }
}

.p-before__cardItem {
  width: calc(33.333% - 0.5833333333rem);
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-before__cardItem {
    width: calc(50% - 0.625rem);
  }
}
@media screen and (max-width: 767px) {
  .p-before__cardItem {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-before__cardItem:not(:first-child) {
    margin-top: 0.625rem;
  }
}

/* 画像フィット */
.p-before__cardItem picture {
  aspect-ratio: 300/200;
  position: relative;
}
.p-before__cardItem picture source img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-before__cardItem img {
  aspect-ratio: 300/200;
}

.p-beforeBtn--group {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-beforeBtn--group {
    margin-top: 1.875rem;
  }
}

.p-voice__subHeading {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-voice__subHeading {
    margin-top: 3.4rem;
  }
}

/* 参加者からの声 */
.p-voice__bg {
  background: #b5dbfc;
  padding: 1.6875rem 1.6875rem 3.4375rem;
  margin-top: 2.0375rem;
  margin-right: 0.75rem;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .p-voice__bg {
    margin-top: 1.2rem;
    padding: 1.25rem 0.625rem;
    margin-right: 0;
  }
}

.p-voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.2375rem;
  -moz-column-gap: 3.2375rem;
  column-gap: 3.2375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-voice__item:not(:first-child) {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item:not(:first-child) {
    margin-top: 0.95rem;
  }
}
.p-voice__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.p-voice__img {
  aspect-ratio: 1/1;
  width: 5.6875rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice__img {
    width: 4.375rem;
  }
}
.p-voice__img .p-voice__name {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -1.6875rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-voice__img .p-voice__name {
    bottom: -1.2875rem;
  }
}

.p-voice__name {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-voice__name {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}

.p-voice__textArea {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0em;
  width: 60.64%;
  border-radius: 0.375rem;
  background: #fff;
  padding: 1.575rem 1.1375rem;
  min-height: 5.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice__textArea {
    max-width: 26.125rem;
    padding: 1.075rem 1.3375rem;
    width: calc(100% - 4.375rem);
  }
}
.p-voice__textArea::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.6875rem solid transparent;
  border-bottom: 0.6875rem solid transparent;
  border-right: 1.6875rem solid #ffffff;
  border-left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -1.5875rem;
}
@media screen and (max-width: 767px) {
  .p-voice__textArea::after {
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-right: 1rem solid #fff;
    top: 1.6875rem;
    -webkit-transform: none;
    transform: none;
    left: -0.95rem;
  }
}

.p-voice__item:nth-of-type(even) .p-voice__textArea::after {
  border-left: 1.6875rem solid #fff;
  border-right: 0;
  right: -1.5875rem;
  left: auto;
}
@media screen and (max-width: 767px) {
  .p-voice__item:nth-of-type(even) .p-voice__textArea::after {
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 1rem solid #fff;
    right: -0.95rem;
  }
}
/* 2025.0607追加・過去大会ボタングループ */
.p-beforeBtn--group {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 970px) {
  .p-beforeBtn--group {
    flex-direction: column;
  }
}

/*----------------------------------
    sns
-----------------------------------*/
.p-sns {
  margin-top: 4.55rem;
}
@media screen and (max-width: 767px) {
  .p-sns {
    margin-top: 1.85rem;
  }
}

.p-sns__list {
  display: grid;
  grid-template-rows: 47.5rem;
  grid-template-columns: repeat(3, 18.75rem);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1010px) {
  .p-sns__list {
    grid-template-rows: repeat(3, 26.4rem);
    grid-template-columns: 18.75rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-row-gap: 1.25rem;
  }
}

.p-sns__item {
  overflow-y: hidden;
}

.p-sns__heading img {
  border-radius: 0.375rem 0.375rem 0 0;
}

.p-sns__item .instagram-media {
  min-width: auto !important;
  width: 18.75rem;
}

@media screen and (max-width: 767px) {
  .p-sns__facebook {
    border: none;
    margin: 0px;
  }
}

.p-sns__item--instagram iframe {
  width: 18.75rem;
}

body.plugin {
  cursor: pointer;
}

/*----------------------------------
    アクセス
-----------------------------------*/
.p-access-wrap {
  margin-top: 3.875rem;
  position: relative;
  width: 100%;
  padding-top: 50%; /* = height ÷ width × 100 */
}
@media screen and (max-width: 767px) {
  .p-access-wrap {
    margin-top: 1.375rem;
  }
}
@media (max-width: 374px) {
  .p-access-wrap {
    padding-top: 60%;
  }
}

.p-access-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__mapWrap {
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-access__mapWrap {
    margin-top: 0.8875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-place__wrap {
    margin-top: 0.6rem;
  }
}

@media screen and (max-width: 767px) {
  .p-place__wrap:not(:first-child) {
    margin-top: 1rem;
  }
}
.p-place__wrap:not(:first-child) .p-place__title {
  margin-right: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-place__wrap:not(:first-child) .p-place__title {
    margin-right: 0.7875rem;
  }
}

.p-place__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  margin-right: 2.6875rem;
}
@media (max-width: 870px) {
  .p-place__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
    margin-right: 1.7875rem;
  }
}
@media (max-width: 600px) {
  .p-place__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}

.p-place__name {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0em;
  margin-right: 0.4375rem;
}
@media (max-width: 870px) {
  .p-place__name {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
@media (max-width: 600px) {
  .p-place__name {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}

.p-place__address {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media (max-width: 870px) {
  .p-place__address {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: 0em;
  }
}

/* アクセス追加 */
.p-access__contentGroup {
  margin-top: 2.575rem;
}
@media screen and (max-width: 767px) {
  .p-access__contentGroup {
    margin-top: 1.075rem;
  }
}

.p-access__contentWrap {
  margin-top: 0.8125rem;
  overflow-x: auto;
}

.p-access__contentWrap img {
  width: 1000px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-access__contentWrap img {
    width: 750px;
  }
}

.p-access__content:not(:first-child) {
  margin-top: 1.2125rem;
}
@media screen and (max-width: 767px) {
  .p-access__content:not(:first-child) {
    margin-top: 0.9125rem;
  }
}

.p-access__contentTitle {
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 1.55rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-access__contentTitle {
    padding-left: 0.95rem;
    font-size: 1rem;
    font-weight: 700;
  }
}
.p-access__contentTitle::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #4127e1;
  border-right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-access__contentTitle::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #4127e1;
  }
}

.p-access__mapWrap {
  position: relative;
}

.p-access__scaleBtn {
  position: absolute;
  right: 0;
  bottom: -2.55rem;
}
.p-access__scaleBtn img {
  width: 3.75rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-access__scaleBtn img {
    display: block;
  }
}

/* 会場マップ拡大 */
.p-access__mapWrap {
  position: relative;
  overflow: hidden;
}

#map {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition:
    transform 0.25s ease,
    -webkit-transform 0.25s ease;
}

#zoom-btn {
  position: absolute;
  bottom: -0.8875rem;
  bottom: -2.6875rem;
  right: 0;
  cursor: pointer;
}

.p-access__scaleText {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
  margin-top: 0.5625rem;
  text-align: right;
  margin-right: 4.4375rem;
}

#map.zoomed {
  cursor: -webkit-grab;
  cursor: grab;
}

.p-access__mapWrap {
  position: relative;
}
.p-access__mapWrap .p-access__mapText {
  position: absolute;
  bottom: 2.2%;
  left: 1.6%;
  width: 49.8%;
}
@media screen and (max-width: 767px) {
  .p-access__mapWrap .p-access__mapText {
    bottom: 1.7%;
  }
}

.p-access__mapWrap {
  overflow: visible;
}

#map-container {
  overflow: auto;
}

/*----------------------------------
    footer
-----------------------------------*/
.p-footer {
  padding-block: 4.375rem 3.6375rem;
  padding-bottom: 6.1rem;
  background: #4127e1;
  margin-top: 8.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: 7.35rem;
    padding-block: 2.475rem 3.6375rem;
    padding-bottom: 6.1rem;
  }
}

.p-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.25rem;
  -moz-column-gap: 4.25rem;
  column-gap: 4.25rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.55rem;
  }
}

.p-footer-logo img {
  width: clamp(9.375rem, 7.79rem + 6.76vw, 13.875rem);
}

.p-footer__sportsentryBtn {
  margin-top: 0.625rem;
}

.p-footer__hostingWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2.375rem;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
  color: #fff;
}
@media (max-width: 991px) {
  .p-footer__hostingWrap {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__hostingWrap {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 2.675rem;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__hostingLine {
    display: none;
  }
}

.p-footer__hostingContact {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__hostingContact {
    margin-top: 0.3rem;
  }
}

.p-footer__mail {
  border-bottom: 1px solid #fff;
}

.p-footer__copyright,
.p-footer__privacy {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright,
  .p-footer__privacy {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}

.p-footer__copyright {
  margin-top: 1.8625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 2.0625rem;
  }
}

.p-footer__privacy {
  margin-top: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    margin-top: 0.2375rem;
  }
}

/* 追加分・協賛リンク */
.p-footer__sponsor {
  margin-top: 5rem;
  margin-right: 4.4rem;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-footer__sponsor {
    margin-right: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__sponsor {
    margin-top: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__sponsor {
    margin-right: 0;
  }
}

.p-footer__sponsorWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-footer__sponsorTitle,.p-footer__plannerTitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-right: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .p-footer__sponsorTitle,.p-footer__plannerTitle {
    font-size: 1.125rem;
    font-weight: 400;
    margin-right: 0.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__sponsorTitle,.p-footer__plannerTitle {
    font-size: 0.9375rem;
    font-weight: 400;
    margin-right: 0.2rem;
  }
}

.p-footer__sponsorList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.275rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sponsorList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.8rem;
  }
}

.p-footer__sponsorItem
 {
  width: 13.75rem;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-footer__sponsorItem
  {
    width: 13rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__sponsorItem {
    width: 16.625rem;
  }
}
@media (max-width: 374px) {
  .p-footer__sponsorItem {
    width: 13.375rem;
  }
}
.p-footer__sponsorItem2,.p-footer__plannerLogo {
  width: 12.75rem;
}
.p-footer__sponsorItem a {
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px #b5dbfc;
  box-shadow: 0px 4px 4px 0px #b5dbfc;
  /* padding: 12px 30px; */
  padding-block: 12px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  display: block;
}
@media (max-width: 991px) {
  .p-footer__sponsorItem a {
    font-size: 1.125rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__sponsorItem a {
    font-size: 1rem;
    font-weight: 400;
  }
}

.p-footer__sponsorItem:not(:last-child) {
  margin-right: 1.175rem;
}
@media (max-width: 991px) {
  .p-footer__sponsorItem:not(:last-child) {
    margin-right: 1.075rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__sponsorItem:not(:last-child) {
    margin-top: 0;
  }
}
.p-footer__plannerWrap {
  display: flex;
  margin-top: 1.275rem;
}
/*----------------------------------
-----------------------------------*/
.p-afterText__area {
  margin-top: 120px;
}

.p-afterText__inner {
  max-width: 926px;
  /* margin: 60px auto; */
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 2.5rem;
  box-sizing: content-box;
}
@media (max-width: 374px) {
  .p-afterText__inner {
    padding-inline: 1.25rem;
  }
}

.p-afterText__box {
  border: 3px solid #4127e1;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-afterText__box {
    padding: 20px;
  }
}

.p-afterText__title {
  font-weight: bold;
  color: #4127e1;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-afterText__title {
    font-size: 20px;
  }
}

.p-afterText__title02 {
  margin-top: 20px;
}

.p-afterText__content {
  font-size: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-afterText__content {
    font-size: 16px;
  }
}

.p-afterText02 {
  margin-top: 20px;
}

.p-resultLink__wrap {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-resultLink__wrap {
    display: block;
  }
}

.p-resultLink {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .p-resultLink.c-btn a {
    max-width: none;
    width: auto;
  }
}
