@charset "UTF-8";

/*==================================
Common - 共通
==================================*/
body {
  background-color: #f7f2e5;
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;

  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.l-wrapper {
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .l-wrapper {
    font-size: 1.6rem;
  }
}

.l-wrap {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/*==================================
Utility - 共通
==================================*/
/* font */
.u-en {
  font-family: "Montserrat", sans-serif;
}

/* color */
.u-green {
  color: #3d7a60;
}
.u-pink {
  color: #ff2e90;
}

/* bg */
.u-bgWhite {
  background: #fff;
}

/*==================================
Scroll - アニメーション
==================================*/
.scrollin,
.scrollins__item {
  opacity: 0;
  -webkit-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  transform: translate(0, 30px);
}

.scrollin.is-visible,
.scrollins__item.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.noscript {
  color: red;
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
}

/*==================================
header
==================================*/
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  text-align: right;
  padding: 20px;
  z-index: 100;
}

@media only screen and (max-width: 767px) {
  .l-header {
    padding: 10px;
  }
}

.menu-btn {
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
  position: relative;
  z-index: 101;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #fff;

  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transition: 0.4s;
}

.menu-btn span:nth-child(1) {
  top: 22px;
}

.menu-btn span:nth-child(2) {
  top: 34px;
}

.menu-btn.is-opend span:nth-child(1) {
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
}

.menu-btn.is-opend span:nth-child(2) {
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
}

.l-navi {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.5);
  overflow-y: auto;
  z-index: 100;
}

.l-navi__inner {
  width: 50%;
  background: rgba(247, 242, 229, 1);
  min-height: 100%;
  margin-left: auto;
  margin-right: 0;
  overflow: scroll;

  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .l-navi__inner {
    width: 100%;
    background: rgba(247, 242, 229, 0.9);
    padding: 0 20px;
  }
}

.navi {
  width: 100%;
}

.navi-list {
  padding: 80px 0;
}

.navi-list__item {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

.navi-list__item:not(:last-child) {
  margin-bottom: 38px;
}

.navi-list__item a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.navi-list__item a:hover {
  opacity: 0.6;
}

.copyright {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  padding-bottom: 60px;
}

/*==================================
Title
==================================*/
.c-pageTtl {
  font-size: 2.6rem;
  font-weight: 700;
  width: 100%;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .c-pageTtl {
    font-size: 1.8rem;
    padding: 20px;
  }
}

.c-secTtl01 {
  font-size: 5.4rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .c-secTtl01 {
    font-size: 3.2rem;
  }
}

.c-secTtl02 {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .c-secTtl02 {
    font-size: 2.8rem;
  }
}

/*==================================
section 01 - Outline
==================================*/
.c-outline_inr {
  display: flex;
  max-height: 100vh;
  background-image: url(/wrp_2026/assets/images/stripe.svg), url(/wrp_2026/assets/images/circle.svg);
  background-repeat: no-repeat;
  background-size: auto, 42%;
  background-position: left bottom, top right;
}

.c-outline_inr > div {
  width: 50%;
}

.c-outline_det {
  display: flex;
  align-items: center;
}

.c-outline_ttl {
  position: relative;
  max-width: 700px;
  margin: 0 12%;
  padding-top: calc(70px + 40px);
}

.c-outline_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: url(/wrp_2026/assets/images/ribbon.svg) no-repeat bottom center/contain;
}

.c-outline_img figure {
  width: 100%;
  height: 100%;
  text-align: right;
}
.c-outline_img figure img {
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .c-outline_inr {
    flex-direction: column;
    max-height: none;
    background-size: 50%, 80%;
  }
  .c-outline_inr > div {
    width: 100%;
  }
  .c-outline_det {
    margin-top: 14vw;
    justify-content: center;
  }
  .c-outline_ttl {
    padding-top: calc(70px + 20px);
    margin: 0 20px;
  }
  .c-outline_img figure img {
    height: auto;
  }
}

/*==================================
section 02 - Movie
==================================*/
.c-movie_body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
  border: 5px solid #333333;
}

.c-movie_body video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==================================
section 03 - About
==================================*/
.c-about_inr {
  width: 100%;
  max-width: 1460px;
  padding: 0 20px;
  margin: 0 auto;
}

.c-about_det {
  display: flex;
}

.c-about_ttl {
  width: 100%;
  max-width: 600px;
}

.c-about_txt {
  flex: 1;
  margin-left: 8%;
}

.c-about_txt_p > p:not(:first-of-type) {
  margin-top: 10px;
}

.c-about_copy {
  font-weight: 700;
  font-size: 120%;
}

@media only screen and (max-width: 1199px) {
  .c-about_det {
    flex-direction: column;
  }
  .c-about_txt {
    margin-left: auto;
    margin-top: 40px;
  }
}

/* アンバサダー選手紹介 */
.c-ambassador-wrap {
  width: 90%;
  margin: 0 auto;
}
.c-ambassador {
  border: solid 2px #333333;
  border-radius: 10px;
  padding: 60px 8%;
}
.c-playerList {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
.c-playerItem figcaption {
  text-align: center;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .c-ambassador-wrap {
    width: 100%;
  }
  .c-ambassador {
    padding: 20px;
  }
  .c-playerList {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*==================================
section 04 - Join
==================================*/
.c-join_inr {
  display: flex;
}

.c-join_ttl {
  position: relative;
  width: calc(20% + 30px);
}
.c-join_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 276px;
  height: auto;
  aspect-ratio: 276 / 551;
/*
  background: url(/wrp_2026/assets/images/image03.png) no-repeat center/contain;
*/
}

.c-join_ttl h2 {
  margin-top: -0.6em;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.c-join_ttl_inr {
  background: #e8ddcb;
  border-radius: 0 40px 40px 0;

  width: 100%;
  max-width: 470px;
  height: 100%;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 1199px) {
  .c-join_inr {
    flex-direction: column;
    border-radius: 0 20px 20px 0;
  }
  .c-join_ttl {
    width: 100%;
  }
  .c-join_ttl::before {
    width: 30%;
    top: -40px;
    right: 20px;
  }
  .c-join_ttl h2 {
    margin-top: 0;
    writing-mode: horizontal-tb;
  }
  .c-join_ttl_inr {
    max-width: 90%;
    border-radius: 0 20px 20px 0;
    display: block;
    padding: 40px 10% 140px 10%;
  }
}

.c-joinList {
  flex: 1;
  width: calc(100% - 500px);
  margin: 0 10%;
}

.c-joinList_item {
  padding: 60px;
  background: #fff;
  border-radius: 40px;
  position: relative;
}
.c-joinList_item:not(:first-of-type) {
  margin-top: 80px;
}

.c-joinList_item:not(:last-of-type)::after {
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);

  position: absolute;
  width: 160px;
  height: 40px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media only screen and (max-width: 1199px) {
  .c-joinList {
    width: 100%;
    padding: 0 20px;
    margin: -100px auto 0;
  }
  .c-joinList_item {
    padding: 30px;
    border-radius: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .c-joinList_item:not(:first-of-type) {
    margin-top: 40px;
  }
  .c-joinList_item:not(:last-of-type)::after {
    width: 80px;
    height: 20px;
  }
}

.c-join_det {
  position: relative;
  padding-right: calc(30% + 60px);
}

.c-join_det::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  max-width: 290px;
  aspect-ratio: 29 / 25;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-join01::before {
  background-image: url(/wrp_2026/assets/images/join01.png);
}
.c-join02::before {
  background-image: url(/wrp_2026/assets/images/join02.png);
}
.c-join03::before {
  background-image: url(/wrp_2026/assets/images/join03.png);
}

.c-joinTtl {
  font-size: 3rem;
  font-weight: 700;
}

.c-join_num {
  font-size: 10rem;
  display: block;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .c-join_det {
    padding-right: 0;
    padding-bottom: 250px;
  }
  .c-join_det::before {
    width: 90%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .c-joinTtl {
    font-size: 2.2rem;
  }
  .c-join_num {
    font-size: 5rem;
  }
}

/*==================================
section 05 - Collect
==================================*/
.c-collect_inr {
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
  margin: 0 auto;
}

.c-collect_box {
  background: #3d7a60;
  color: #fff;
  width: 100%;
  border-radius: 40px;
  padding: 60px;
}

.c-collect_ttl {
  font-size: 5rem;
  font-weight: 700;
}

.c-table {
  width: 100%;
  word-break: break-word;
}

.c-table th,
.c-table td {
  padding: 20px 0;
  border-bottom: solid 1px #b4d4c7;
}

.c-table th:not(:first-of-type),
.c-table td:not(:first-of-type) {
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .c-collect_box {
    padding: 20px;
    border-radius: 20px;
  }
  .c-table th.date {
    min-width: 70px;
  }
}

/*==================================
footer
==================================*/
.l-footer_inr {
  padding: 80px 20px;
  width: 100%;
  background: #e8ddcb;
}

.l-footer_logo {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .l-footer_inr {
    padding: 40px 20px;
  }
}

/*==================================
PageTop
==================================*/
.page-top {
  opacity: 0;
  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;
  position: fixed;
  bottom: 60px;
  right: 40px;
  width: 80px;
  z-index: 1000;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.page-top.is-visible {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .page-top {
    bottom: 20px;
    right: 20px;
    width: 60px;
  }
}

/* 231019 追記*/
/*==================================
枚数カウント
==================================*/
.c-countTxt {
  font-size: 6vw;
  font-weight: 700;
}
.c-countTxt::before {
  content: "\\\\";
  padding-right: 0.5em;
}
.c-countTxt::after {
  content: "//";
  padding-left: 0.5em;
}
.c-countTxt::before,
.c-countTxt::after {
  font-size: 50%;
}
@media only screen and (max-width: 767px) {
  .c-countTxt {
  font-size: 5rem;
  }
}

/*==================================
画像スクロール
==================================*/
.c-joinScroll {
  display: flex;
  overflow: hidden;
}

.c-joinScroll_inr {
  display: flex;
  animation: loop-list 30s linear infinite;
}

.c-joinScroll_item {
  width: calc(100vw / 6);
}

@media only screen and (max-width: 1199px) {
  .c-joinScroll_item {
    width: 140px;
  }
}

.c-joinScroll_item img {
  width: 100%;
}


@keyframes loop-list {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

/* 240307 追記*/
/*==================================
今シーズンのウエア回収は終了しました
==================================*/
.u-count_border {
  padding: 20px;
  border: 5px dashed #ff2e90;
}

/* 241204 */
.c-table.line-bk th,
.c-table.line-bk td {
  border-bottom: 1px solid #333333;
}

/* 250312 */
.t-shirt_list {
  display: flex;
  gap: 40px
}
@media only screen and (max-width: 767px) {
  .t-shirt_list {
  flex-direction: column;
  gap: 20px
  }
}