@charset "UTF-8";
/* ----------------------------------------------
共通
----------------------------------------------- */

:root {
  --bgColor: linear-gradient(315deg, #ffffff 0%, #e7f0ff 50%, #edf4ff 100%);
  --bgColor-opacity: rgba(255, 255, 255, 0.8);

  --pointColor: #001351;
  --textColor: #333;

  --U11Color: #4681d3;
  --U12Color: #3e6498;

  --font-EN: "Michroma", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--textColor);
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
  background-image: var(--bgColor);

  /* footer下固定のため */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  /* footer下固定のため */
  flex: 1;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */

@media screen and (min-width: 768px) {
  .-pc {
    display: block;
  }

  .-sp {
    display: none;
  }
}

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

  .-sp {
    display: block;
  }
}

/* ----------------------------------------------
コンテンツ
----------------------------------------------- */

.l-container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-container--secondary {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-inner {
  background-color: var(--bgColor-opacity);
  padding: 40px 20px;
  margin: 0 auto;
  border-radius: 10px;
}

.l-topSpacer {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .l-topSpacer {
    margin-top: 80px;
  }
}

/* ----------------------------------------------
共通パーツ
----------------------------------------------- */
/* 
見出し / heading
----------------------------------------------- */

.c-headingWrap {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
}

.c-heading--jp {
  font-size: 2.5em;
  font-weight: 600;
}

.c-heading--en {
  margin-top: -0.25em;
  font-size: 1.5em;
  color: rgba(0, 19, 81, 0.7);
  font-family: var(--font-EN);
  font-weight: 600;
  /* 長体 */
  transform: scaleX(0.8);
}

@media screen and (max-width: 767px) {
  .c-headingWrap {
    margin-bottom: 20px;
  }

  .c-heading--jp {
    font-size: 1.75em;
  }

  .c-heading--en {
    font-size: 1.25em;
  }
}

/* 
ボタン / btn
----------------------------------------------- */

.c-btnWrap {
  width: fit-content;
  margin: 0 auto;

  margin-top: 40px;
}

.c-btn {
  display: flex;
  font-weight: 600;
  gap: 8px;
  transition: 0.4s ease-in-out;
}

.c-arrow {
  display: inline-block;
  width: 36px;
  height: 24px;
  background: url("../img/btn-arrow.svg") no-repeat center / contain;
  transition: 0.4s ease-in-out;
}

.c-btn.-back {
  flex-direction: row-reverse;
}

.c-btn.-back .c-arrow {
  background: url("../img/btn-arrow_back.svg") no-repeat center / contain;
}

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

  .c-btn:hover .c-arrow {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 767px) {
  .c-btnWrap {
    margin-top: 20px;
  }
}

/* ----------------------------------------------
表
----------------------------------------------- */
.c-dlListWrap {
  max-width: 800px;
  margin: 0 auto;
}

.c-dlItem {
  display: flex;
  gap: 20px;
  padding: 20px 12px;
  border-bottom: 1px dotted var(--pointColor);
  line-height: 1.4;
}

.c-dlItem:first-child {
  border-top: 1px dotted var(--pointColor);
}

.c-dlItem dt {
  min-width: 10rem;

  color: var(--pointColor);
  font-weight: 600;
}

.c-dlItem img{
    height: auto;
    max-width: 100%;
    width: auto;
}

@media screen and (max-width: 767px) {
  .c-dlItem {
    flex-direction: column;
    gap: 8px;
  }
}

/* ----------------------------------------------
表内 箇条書きリスト
----------------------------------------------- */

.c-dlItem ul,
.c-dlItem ol {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.c-dlItem ul + p,
.c-dlItem p + ul,
.c-dlItem ol + p,
.c-dlItem p + ol,
.c-dlItem p + p{
  margin-top: 0.5em;
}

.c-dlItem ul {
  padding-left: 1em;
  text-indent: -1em;
}

.c-dlItem ul {
  list-style: none;
}

/* 通常 リスト */
.c-dlItem ul li::before {
  content: "・";
}

/* ※ リスト */
.c-dlItem ul.is-kome li::before {
  content: "※";
}

/* 数字 リスト */
.c-dlItem ol {
  list-style: decimal;
  padding-left: 1.5em;
}

/* ----------------------------------------------
一覧
----------------------------------------------- */

.c-archive__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-archive__link {
  position: relative;
  padding: 24px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  gap: 20px;

  background-color: var(--bgColor-opacity);
  border-radius: 10px;

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

.c-archive__link::after {
  content: "";
  position: absolute;
  margin: auto;
  right: 24px;
  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%);
}

.c-archive__label {
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  line-height: 1;
}

.c-archive__label.-u11 {
  background-color: var(--U11Color);
}

.c-archive__label.-u12 {
  background-color: var(--U12Color);
}

.c-archive__titleWrap {
  display: flex;
  gap: 1em;
}

.c-archive__title {
  font-weight: 600;
}

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

@media screen and (max-width: 767px) {
  .c-archive__link {
    padding: 16px;
    padding-right: 32px;
    gap: 8px;
  }

  .c-archive__link::after {
    right: 16px;
  }

  .c-archive__titleWrap {
    flex-direction: column;
    gap: 0;
  }
}

/* ----------------------------------------------
記事
----------------------------------------------- */


.c-articleTextBox{
  word-break: break-all;
}

.c-articleTextBox p + p{
  margin-top: 1em;
}

.c-articleTextBox a{
  display: inline-block;
  color: var(--pointColor);
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

.c-articleTextBox figure + figure,
.c-articleTextBox p + figure,
.c-articleTextBox figure + p {
    margin-top: 2em;
}

.c-articleTextBox figcaption{
  font-size: 0.875rem;
  margin-top: 4px;
}

.c-articleTextBox img{
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-articleTextBox a:hover{
      opacity: 0.6;
  }
}

/* ----------------------------------------------
ただいま準備中です
----------------------------------------------- */

.c-comingSoon{
  text-align: center;
}

/* ----------------------------------------------
試合タイトル
----------------------------------------------- */

.c-matchBox {
  position: relative;

  width: 100%;
  padding: 32px 20px 20px 20px;
  background-color: var(--bgColor-opacity);
  border-radius: 10px;
  margin-top: 60px;

  text-align: center;
}

.c-match__label {
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  line-height: 1;

  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
}

.c-match__label.-u11 {
  background-color: var(--U11Color);
}

.c-match__label.-u12 {
  background-color: var(--U12Color);
}

.c-match__title {
  font-size: 1.5em;
  font-weight: 600;
}

.c-match__date {
  font-size: 1.25em;
}

.c-match__daysList{
  display: flex;
  justify-content: center;

  position: absolute;
  bottom: -20px;
  right: 50%;
  transform: translateX(50%);
}

.c-match__daysLink{
  display: flex;
  gap: 8px;
  align-items: center;

  font-family: var(--font-EN);
  font-weight: 600;
  /* 長体 */
  transform: scaleX(0.8);
  color: #fff;
  background-color: var(--pointColor);
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.c-match__daysLink .c-arrow {
  background: url("../img/btn-arrow_anchor.svg") no-repeat center / contain;
}

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

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

  .c-match__title {
    font-size: 1.25em;
  }

  .c-match__date {
    font-size: 1em;
  }
}

/* ----------------------------------------------
header
----------------------------------------------- */

.c-header__logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;

  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 0 0 10px 0;
}

.c-header__logo a {
  display: block;
}

.c-header__logo img {
  width: 100%;
  height: auto;
}

.c-header__drawerWrap {
  position: fixed;
  z-index: 998;
}

.c-drawer {
  display: none;
}

.c-globalNav__item > a {
  display: block;
  font-weight: 600;
  color: var(--pointColor);
}

@media screen and (min-width: 768px) {
  .c-header__logo {
    padding: 32px 40px;
  }

  .c-header__logo a {
    width: clamp(12.5rem, 8.929rem + 7.44vw, 15.625rem);
  }

  .c-header__drawerWrap {
    top: 40px;
    right: 0;
  }

  .c-globalNav {
    padding: 24px 32px;
    border-radius: 10px 0 0 10px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
  }

  .c-globalNav__list {
    display: flex;
    gap: 1.5vw;
    align-items: center;
    justify-content: flex-end;
  }

  .c-globalNav__list .c-globalNav__item {
    position: relative;
    font-size: clamp(0.875rem, 0.732rem + 0.3vw, 1rem);
  }

  .c-globalNav__list .c-globalNav__item > a {
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
  }

  .c-globalNav__list .c-globalNav__item > a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  html.open,
  body.open {
    overflow: hidden;
  }

  .c-header__drawerWrap {
    width: 100%;
    height: 100dvh;
    top: 0;
    right: 0;

    padding: 160px 20px 20px;
    background-image: var(--bgColor);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }

  .c-header__logo {
    padding: 20px;
  }

  .c-header__logo a {
    width: 160px;
  }

  .c-globalNav {
    width: 100%;
  }

  .c-globalNav__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .c-globalNav__list .c-globalNav__item > a {
    font-size: 1.25rem;
  }

  .c-globalNav__icon {
    display: block;
    width: 25px;
  }

  .c-globalNav__icon img {
    width: 100%;
  }

  /* ハンバーガー */
  .c-drawer.open .navbar_toggle_icon:nth-child(1) {
    top: 32px;
    left: 20px;
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(2) {
    top: 25px;
    left: 20px;
  }

  .c-header__drawerWrap.open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .c-drawer {
    height: 70px;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
  }

  .navbar_toggle {
    position: absolute;
    z-index: 100;
    height: 70px;
    right: 20px;
    top: 0;
  }

  .navbar_toggle_icon {
    position: relative;
    display: block;
    height: 2px;
    width: 24px;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: var(--pointColor);
  }

  .navbar_toggle_icon:nth-child(1) {
    top: calc(50% + 8px);
    transition: 0.4s;
  }

  .navbar_toggle_icon:nth-child(2) {
    transition: 0.4s;
  }

  .navbar_toggle_icon:nth-child(3) {
    top: calc(50% - 8px);
    transition: 0.4s;
    opacity: 1;
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(1) {
    top: 36px;
    left: 0px;
    transform: rotate(45deg);
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(2) {
    top: 33px;
    left: 0px;
    transform: rotate(-45deg);
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(3) {
    opacity: 0;
  }
}

/* ----------------------------------------------
footer
----------------------------------------------- */

.c-footer {
  background-color: var(--pointColor);
  padding: 40px 20px;
  margin-top: 180px;
}

.c-footer__copyright {
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-footer {
    background-color: var(--pointColor);
    padding: 20px;
    margin-top: 100px;
  }
}

/* ----------------------------------------------
ページトップへ
----------------------------------------------- */

.c-pageTop {
  position: fixed;
  bottom: 0;
  right: 16px;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.c-pageTop.is-show {
  opacity: 1;
  visibility: visible;
}

.c-pageTop__icon {
  display: inline-block;
  width: 60px;
  aspect-ratio: 1 / 1;
  background: url("../img/page-top.svg") no-repeat center / contain;
}

.c-pageTop__text {
  font-family: var(--font-EN);
  text-align: center;
  font-weight: 600;
    /* 長体 */
  transform: scaleX(0.8);
}

@media screen and (max-width: 767px) {
  .c-pageTop__icon {
    width: 40px;
  }
}

/* ----------------------------------------------
下層 飛行機
----------------------------------------------- */

.c-pageAirplane {
  position: relative;
  margin-top: 200px;
}

.c-pageAirplane::before {
  content: "";
  position: absolute;
  width: clamp(43.75rem, 22.321rem + 44.64vw, 62.5rem);
  height: auto;
  aspect-ratio: 755/175;
  bottom: calc(100% - 100px);
  left: -16px;
  transform: rotate(-2.5deg);
  z-index: -1;
  background: url("../img/page-airplane.svg") no-repeat center / contain;
}

@media screen and (max-width: 767px) {
  .c-pageAirplane {
    margin-top: 120px;
  }

  .c-pageAirplane::before {
    max-width: 100%;
    width: clamp(21.875rem, 0.949rem + 89.29vw, 43.75rem);
    bottom: calc(100% - 50px);
  }
}
