@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Noto+Serif+JP:wght@400;700&family=Fira+Sans:ital,wght@1,500&display=swap");

:root {
  --font-color--accent: #b3a369;
  --main-color--black: #010101;
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  background-color: #010101;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  color: #fff;
  height: 100%;
}

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

img {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* common */
.bg {
  background: top/100% repeat-y url(../img/bg.webp);
}

.sec {
  width: 100%;
  height: auto;
  background: top/cover no-repeat;
}
.sec._odd {
  padding: min(6.944444444444445vw, 100px) 0 min(6.25vw, 90px);
}
.sec._even {
  position: relative;
  z-index: 1;
  margin: calc(-1 * min(6.25vw, 90px)) 0 calc(-1 * min(6.944444444444445vw, 100px));
  padding: min(6.25vw, 90px) 0 min(6.944444444444445vw, 100px);
}
.sec._first {
  padding-top: 0;
}
.sec._last {
  margin-bottom: 0;
  padding-bottom: 100px;
}
.sec-inner {
  margin: auto;
  width: 100%;
  max-width: 1140px;
}
.sec-ttl {
  line-height: 1.5;
  font-size: 4.6rem;
  color: var(--font-color--accent);
}
.sec-ttl::before {
  content: "";
  display: block;
  width: 75px;
  height: auto;
  aspect-ratio: 399 / 343;
  background: center/contain no-repeat url("../img/logo.webp");
}
.sec-ttl._en {
  line-height: 70px;
  font-family: "Cormorant Garamond", serif;
  font-size: 6.2rem;
  font-weight: 700;
}
.sec-ttl._center::before {
  margin: auto;
}

.btn {
  position: relative;
  display: block;
  width: 375px;
  height: 70px;
  background: linear-gradient(-45deg, #2e2e2e 0%, #2e2e2e 50%, #010101 50%, #010101 100%);
  line-height: 70px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
}
.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 25px;
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: right 0.3s;
}
.btn:hover::after {
  right: 15px;
}

.btn02 {
  position: relative;
  display: grid;
  place-items: center;
  width: 700px;
  height: 225px;
  border: 2px solid #a5a4a4;
  box-shadow: 2px 2px 15px 5px rgba(255, 255, 255, 0.8);
  font-size: 4.2rem;
  font-weight: bold;
}
.btn02::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: right 0.3s;
}
.btn02:hover:after {
  right: 5%;
}

.ankerList {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  background: rgb(179, 163, 105);
  background: linear-gradient(120deg, var(--font-color--accent) 0%, #6b560c 100%);
}
.ankerList li {
  width: 170px;
  height: 50px;
  border-right: 1px solid rgba(209, 201, 170, 0.5);
}
.ankerList li a {
  height: 100%;
  display: grid;
  place-items: center;
}
.ankerList li a:hover {
  opacity: 0.8;
}

/* header */
#header {
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header-menu {
  margin: auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.header-menu li {
  padding: 25px;
  line-height: 1;
  font-size: 2rem;
}
.header-menu li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hamburgerBtn {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  margin-left: auto;
  padding: 4%;
  width: fit-content;
  cursor: pointer;
}
.hamburgerBtn-text {
  line-height: 2;
  font-size: clamp(1.2rem, 3.2vw, 2.4rem);
}
.hamburgerBtn-text span {
  margin: auto;
  display: block;
  width: 100%;
}
.hamburgerBtn-text span:nth-of-type(1),
.hamburgerBtn-text span:nth-of-type(3) {
  height: 1px;
  background-color: #fff;
  transition: width 0.3s;
}
.hamburgerBtn-text span:nth-of-type(2) {
  opacity: 1;
  transition: opacity 0.3s;
}

.hamburgerMenu {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100vh;
  padding: 16vw;
  display: grid;
  place-items: center;
  background-color: var(--main-color--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.hamburgerMenu-list {
  width: 100%;
  text-align: center;
  line-height: 3;
  font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
}
.hamburgerMenu-list li {
  transition: background-color 0.2s;
}
.hamburgerMenu-list li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* is-open */
body.is-open {
  overflow: hidden;
}
.is-open .hamburgerBtn-text span {
  width: 80%;
}
.is-open .hamburgerBtn-text span:nth-of-type(1) {
  transform: translateY(calc(clamp(1.6rem, 4.266666666666667vw, 3.2rem) * 0.75)) rotate(45deg);
  animation: hamburgerTop 0.5s ease-in;
}
.is-open .hamburgerBtn-text span:nth-of-type(2) {
  opacity: 0;
}
.is-open .hamburgerBtn-text span:nth-of-type(3) {
  transform: translateY(calc(clamp(1.6rem, 4.266666666666667vw, 3.2rem) * -0.75)) rotate(-45deg);
  animation: hamburgerBottom 0.5s ease-in;
}
@keyframes hamburgerTop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(calc(clamp(1.6rem, 4.266666666666667vw, 3.2rem) * 0.75));
  }
  100% {
    width: 80%;
    transform: translateY(calc(clamp(1.6rem, 4.266666666666667vw, 3.2rem) * 0.75)) rotate(45deg);
  }
}
@keyframes hamburgerBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(calc(clamp(1.6rem, 4.266666666666667vw, 3.2rem) * -0.75));
  }
  100% {
    width: 80%;
    transform: translateY(calc(clamp(1.6rem, 4.266666666666667vw, 3.2rem) * -0.75)) rotate(-45deg);
  }
}

.is-open .hamburgerMenu {
  pointer-events: auto;
  opacity: 1;
}

/* 追尾 */
.floatBtn {
  position: fixed;
  z-index: 11;
  right: 30px;
  bottom: 30px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  width: 50px;
  height: 50px;
  background: center/contain no-repeat url(../img/float-btn.webp);
}

/* fadein */
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* wrapper */
.contents {
  position: relative;
  margin: auto;
  max-width: 1440px;
}

/* mv */
.mv img {
  aspect-ratio: 1440 / 817;
}

/* lead */
.lead {
  display: flex;
  aspect-ratio: 1440 / 798;
  background-image: url("../img/lead_bg.webp");
  text-align: center;
}
.lead-inner {
  padding: 60px 70px 80px;
}
.lead p {
  line-height: 2;
  font-size: 2.4rem;
}
.lead p + p {
  margin-top: 2em;
}

/* movie */
.movie {
  aspect-ratio: 1440 / 1000;
  background-image: url("../img/movie_bg.webp");
  text-align: center;
}
.movie-inner {
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  display: grid;
  place-items: center;
}
.movie-ttl {
  margin: 40px 0;
}
.movie-movie {
  margin: auto;
  width: 100%;
  max-width: 800px;
}
.movie-movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* thought */
.thought {
  aspect-ratio: 1440 / 846;
  background-image: url("../img/thought_bg.webp");
}
.thought-inner {
  padding: 40px 33% 70px 20px;
}
.thought-ttl {
  margin-bottom: 20px;
  font-size: 4.6rem;
}
.thought p {
  line-height: 2;
  font-size: 1.8rem;
}
.thought p + p {
  margin-top: 2em;
}

/* steps */
.steps {
  aspect-ratio: 1440 / 1408;
  background-image: url("../img/steps_bg.webp");
}
.steps-inner {
  margin-top: min(2.6vw, 70px);
}
.steps-ttl {
  margin-bottom: 30px;
  text-align: center;
}
.steps-txt {
  margin-bottom: 50px;
  line-height: 2;
  text-align: center;
}
.steps-btn01 {
  margin: 0 auto 40px;
  background: center/cover no-repeat url("../img/steps_btn01.webp");
}
.steps-btn02 {
  margin: 0 auto 40px;
  background: center/cover no-repeat url("../img/steps_btn02.webp");
}
.steps-btn03 {
  margin: 0 auto 40px;
  background: center/cover no-repeat url("../img/steps_btn03.webp");
}
.steps-btn04 {
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.25;
  background: center/cover no-repeat url("../img/steps_btn04.webp");
}

/* news */
.news {
  aspect-ratio: 1440 / 894;
  background-image: url(../img/news_bg.webp);
}
.news-inner {
  padding: 40px 20px 0;
  max-width: 1040px;
}
.news-ttl {
  margin-bottom: 40px;
  text-align: center;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.news-list li {
  width: 300px;
  background-color: var(--main-color--black);
}

.newsItem {
  font-size: 1.6rem;
}
.newsItem:hover {
  opacity: 0.8;
  cursor: pointer;
}
.newsItem img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.newsItem-info {
  padding: 20px;
}
.newsItem-category {
  display: inline-block;
  padding: 0 10px;
  line-height: 1.6;
}
.newsItem-category._event {
  background-color: #ff0000;
}
.newsItem-category._goods {
  background-color: #0c9;
}
.newsItem-category._ticket {
  background-color: #99cc33;
}
.newsItem-date {
  display: inline-block;
  padding: 0 10px;
  line-height: 1.6;
}
.newsItem-ttl {
  margin-top: 10px;
  line-height: 2;
}
@media screen and (768px <= width < 1020px) {
  .news-list {
    justify-content: center;
  }
}

/* game */
.game {
  aspect-ratio: 1440 / 806;
  background-image: url("../img/game_bg.webp");
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}
.game-ttl {
  margin-bottom: 40px;
  text-align: center;
}
.game-txt {
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}
.game-schedule {
  margin: auto;
  max-width: 400px;
}
.game-scheduleTtl {
  position: relative;
  margin: 0 auto 10px;
  padding: 0 5px;
  width: fit-content;
  font-weight: normal;
}
.game-scheduleTtl::before,
.game-scheduleTtl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 70px;
  height: 1px;
  background-color: #fff;
}
.game-scheduleTtl::before {
  left: 100%;
}
.game-scheduleTtl::after {
  right: 100%;
}
.game-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.game-list li:has(+ li) {
  margin-bottom: 15px;
}
.game-opponent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.game-opponent img {
  width: 100px;
}

/* ----- uniform.index ----- */
.uniform {
  background-color: var(--main-color--black);
}
.uniform-mv {
  display: block;
  aspect-ratio: 1440 / 774;
}
.uniform-wrapper {
  margin: auto;
  padding: 100px 30px 120px;
  max-width: 1060px;
}
.uniformSec {
  border-bottom: 1px solid #fff;
}
.uniformSec-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.uniformSec-ttl {
  position: relative;
  padding: 40px 160px 40px 0;
  line-height: 1.25;
  font-weight: bold;
  font-size: 4.6rem;
  color: var(--font-color--accent);
  cursor: pointer;
}
.uniformSec-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.uniformSec-toggle img {
  width: 24px;
  height: 14px;
  transform-origin: 12px 10px;
  transition: transform 0.3s;
}
.uniformSec-body {
  padding-bottom: 50px;
}
.uniformSec-list {
  display: flex;
  gap: 40px;
}
.uniformSec-list li {
  width: 100%;
  max-width: 300px;
}
.uniformSec-subTtl {
  line-height: 2;
  font-size: 2rem;
}
.uniformSec-img {
  aspect-ratio: 2 / 3;
}
._w675 .uniformSec-img {
  aspect-ratio: 3 / 2;
}

/* アコーディオン */
.js-accordion-content {
  display: none;
}
.js-accordion-ttl {
  cursor: pointer;
}
.js-accordion-ttl.is-open + .js-accordion-content {
  display: block;
}
.js-accordion-ttl .uniformSec-toggle img,
.js-accordion-ttl .wallartSec-toggle img {
  transform: rotate(-180deg);
}
.js-accordion-ttl.is-open .uniformSec-toggle img,
.js-accordion-ttl.is-open .wallartSec-toggle img {
  transform: rotate(0deg);
}

/* ----- history.index ----- */
.history-mv {
  display: block;
  aspect-ratio: 1440 / 774;
}
.history-ankerList {
  text-align: center;
  font-size: 2.2rem;
}
.history-ankerList li {
  width: 180px;
}
.history-ankerList span {
  font-size: 0.7em;
}
.history-wrapper {
  background-color: #313d3f;
}
.history-head {
  margin: auto;
  padding: 80px 30px 50px;
  max-width: 960px;
}
.history-ttl {
  margin-bottom: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 4.6rem;
}
.history-text {
  margin-top: 20px;
  line-height: 2;
  font-size: 1.8rem;
}
.history-text + .history-text {
  margin-top: 4rem;
}
.history-body {
  padding: 50px 0 30px 100px;
  background-color: #b59948;
}
.history-date {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 3.2rem;
}
.history-date span {
  font-size: 0.75em;
}
.history-imgs {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.history-scene {
  max-width: 560px;
}
.history-scene {
  aspect-ratio: 560 / 375;
}
.history-newspaper {
  width: 200px;
}
.history-newspaper p {
  font-size: 1.1rem;
}

._history .modal-content {
  padding: 0;
}

/* slider */
.swiper-slide {
  padding-right: 80px;
}
.swiper-controller {
  padding-right: 30px;
  max-width: 1270px;
}
.swiper .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: static;
  margin: 30px 0;
  padding-right: 30px;
  width: 100%;
  background-color: #fff;
}
.swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #ccc;
}
.swiper-buttons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 25px;
}
.swiper .swiper-pagination {
  position: static;
  width: auto;
  font-size: 1.8rem;
}
.swiper .swiper-pagination-current {
  font-size: 1.4em;
}
.swiper .swipeBtn {
  position: static;
  margin-top: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
}
.swiper .swipeBtn::after {
  font-weight: bold;
  font-size: 2.4rem;
  color: #000;
}
.swiper .swiper-button-next.swiper-button-disabled,
.swiper .swiper-button-prev.swiper-button-disabled {
  background-color: transparent;
  border: 2px solid #fff;
  opacity: 1;
}
.swiper .swiper-button-next.swiper-button-disabled:after,
.swiper .swiper-button-prev.swiper-button-disabled:after {
  color: #fff;
}
@media screen and (768px <= width < 1010px) {
  .history-ankerList {
    font-size: 1.6rem;
  }
  .swiper-slide {
    padding-right: 30px;
  }
}

/* ----- manager.index ----- */
.manager-mv {
  display: block;
  aspect-ratio: 1440 / 877;
}
.manager-wrapper {
  padding: 20px 30px 100px;
  background: top/100% repeat url(../img/manager/bg.webp);
}
.manager-list {
  margin: auto;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
}
.manager-list li {
  width: 450px;
}
.manager-list li:nth-of-type(odd) {
  margin-bottom: 100px;
}
.manager-list li:nth-of-type(even) {
  margin-top: 100px;
}
.manager-name {
  margin-bottom: 20px;
  font-size: 4.6rem;
  color: var(--font-color--accent);
}
.manager-name span {
  padding-left: 0.5em;
  font-size: 0.7em;
}
.manager-img {
  display: block;
  aspect-ratio: 2 / 3;
}
.manager-grades {
  margin: 20px 0;
  line-height: 30px;
  font-size: 1.8rem;
}
.manager-grades::before {
  content: "通算戦績";
  display: inline-block;
  margin-right: 10px;
  padding: 0 10px;
  background-color: #fff;
  font-size: 1.4rem;
  color: #333;
}
.manager-btn {
  position: relative;
  width: 100%;
  height: 80px;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
.manager-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: right 0.3s;
}
.manager-btn:hover:after {
  right: 5%;
}

.managerModal-content {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.managerModal-content::before,
.managerModal-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 50px;
  background: rgb(179, 163, 105);
  background: linear-gradient(120deg, var(--font-color--accent) 0%, #6b560c 100%);
}
.managerModal-content::before {
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.managerModal-content::after {
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/* modal */
body.is-open-modal {
  overflow: hidden;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: scroll;
}
.modal.is-show {
  display: block;
}
.modal-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.modal-box {
  padding: 50px;
}
.modal-closeBtn {
  position: relative;
  margin-left: auto;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.modal-closeBtn:hover {
  opacity: 0.8;
}
.modal-closeBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
}
.modal-closeBtn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-closeBtn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-content {
  width: 100%;
  max-width: 800px;
  padding-left: 40px;
  padding-right: 40px;
  background: #fff;
}
.modal-managerName {
  margin: 30px 0;
}
.modal-text {
  line-height: 2;
  font-weight: bold;
  font-size: 1.6rem;
  color: #333;
}

/* ----- wallart.index ----- */
.wallart {
  background: top/cover no-repeat url("../img/wallart/bg.webp");
}
.wallart-mv {
  display: block;
  aspect-ratio: 1440 / 877;
}
.wallart-wrapper {
  margin: auto;
  padding: 30px 30px 120px;
  max-width: 1060px;
}
.wallart-language {
  display: inline-block;
  padding: 0.5em 1em;
  border: 1px solid #fff;
}
@media (hover: hover) {
  .wallart-language {
    transition: background-color 0.3s, color 0.3s;
  }
  .wallart-language:hover {
    background-color: #fff;
    color: #010101;
  }
}
.wallart-image {
  position: relative;
  margin: 20px auto 50px;
  max-width: 797px;
}
.wallart-image img {
  aspect-ratio: 767 / 868;
}
.wallart-number {
  position: absolute;
  width: 30px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #00a0e9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #fff;
}
.wallart-number._1 {
  top: 71%;
  left: 13%;
}
.wallart-number._2 {
  top: 70%;
  left: 2%;
}
.wallart-number._3 {
  top: 72%;
  left: 33%;
}
.wallart-number._4 {
  top: 56%;
  left: 19%;
}
.wallart-number._5 {
  top: 55%;
  left: 10%;
}
.wallart-number._6 {
  top: 40%;
  left: 1%;
}
.wallart-number._7 {
  top: 37%;
  left: 13%;
}
.wallart-number._8 {
  top: 39%;
  left: 24%;
}
.wallart-number._9 {
  top: 54%;
  left: 32%;
}
.wallart-number._10 {
  top: 37%;
  left: 38%;
}
.wallart-number._11 {
  top: 57%;
  left: 50%;
}
.wallart-number._12 {
  top: 40%;
  left: 73%;
}
.wallart-number._13 {
  top: 60%;
  left: 75%;
}
.wallart-number._14 {
  top: 37%;
  left: 84%;
}
.wallart-number._15 {
  top: 57%;
  left: 84%;
}
.wallart-number._16 {
  top: 20%;
  left: 91%;
}
.wallart-text {
  margin: 0 auto 100px;
  line-height: 2;
  text-align: center;
  font-size: 1.8rem;
}
.wallartSec {
  border-bottom: 1px solid #fff;
}
.wallartSec-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wallartSec-number {
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wallart {
  counter-reset: number 0;
}
.wallartSec .wallartSec-number::before {
  counter-increment: number 1;
  content: counter(number);
  display: block;
  width: 55px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #00a0e9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #fff;
}
.wallartSec-ttl {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  line-height: 1.25;
  font-weight: bold;
  font-size: 4.6rem;
  color: var(--font-color--accent);
  cursor: pointer;
}
.wallartSec-ttl span {
  font-size: 0.8em;
}
.wallartSec-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.wallartSec-toggle img {
  width: 24px;
  height: 14px;
  transform-origin: 12px 10px;
  transition: transform 0.3s;
}
.wallartSec-body {
  padding-bottom: 50px;
}
.wallartSec-content {
  display: flex;
}
.wallartSec-person {
  flex-basis: 35%;
  display: flex;
  justify-content: center;
}
.wallartSec-person img {
  width: auto;
  height: 100%;
  aspect-ratio: 200 / 240;
}
.wallartSec-text {
  flex-basis: 65%;
  display: flex;
  align-items: center;
}
.wallartSec-text p {
  line-height: 2;
  font-size: 1.8rem;
}

/* ---------- レスポンシブ ---------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

  /* common */
  .sec._odd {
    padding: min(12.666666666666668vw, 95px) 4% min(11.333333333333332vw, 85px);
  }
  .sec._even {
    margin: calc(-1 * min(11.333333333333332vw, 85px)) 0 calc(-1 * min(12.666666666666668vw, 95px));
    padding: min(11.333333333333332vw, 85px) 4% min(12.666666666666668vw, 95px);
  }
  .sec._first {
    padding-top: 0;
  }
  .sec._last {
    margin-bottom: 0;
    padding-bottom: 100px;
  }
  .sec-ttl {
    line-height: 1.5;
    font-size: clamp(2.8rem, 7.466666666666668vw, 5.6rem);
  }
  .sec-ttl._en {
    line-height: 1.5;
    font-size: clamp(4rem, 10.666666666666668vw, 8rem);
  }
  .sec-ttl._center-s::before {
    margin: auto;
  }

  .btn02 {
    width: 100%;
    height: auto;
    aspect-ratio: 345 / 100;
    max-width: 600px;
    box-shadow: 2px 2px 10px 2px rgba(255, 255, 255, 0.8);
    font-size: clamp(2.2rem, 5.866666666666666vw, 4.4rem);
  }
  .btn02::after {
    width: 15px;
    height: 15px;
  }

  .ankerList {
    flex-wrap: wrap;
  }
  .ankerList li {
    margin: 0 10px;
    width: 150px;
    border-bottom: 1px solid rgba(209, 201, 170, 0.5);
    border-right: none;
  }

  /* header */
  .header-menu {
    padding: 0;
  }
  .header-menu li {
    padding: 15px;
    font-size: 1.6rem;
  }

  /* 追尾 */
  .floatBtn {
    right: 2%;
    bottom: 65px;
  }

  /* mv */
  .mv img {
    aspect-ratio: 750 / 1000;
  }

  /* lead */
  .lead {
    aspect-ratio: 750 / 1118;
    background-image: url("../img/s_lead_bg.webp");
    text-align: left;
  }
  .lead-inner {
    padding: 13.333333333333334vw 0 10.666666666666668vw;
  }
  .lead p {
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
  }

  /* movie */
  .movie {
    aspect-ratio: 750 / 1040;
  }
  .movie-inner {
    padding: 0;
  }
  .movie-ttl {
    margin: 6.666666666666667vw 0;
  }

  /* thought */
  .thought {
    aspect-ratio: 750 / 2433;
    background-image: url("../img/s_thought_bg.webp");
  }
  .thought-inner {
    padding: min(12vw, 90px) 0 30px;
  }
  .thought-ttl {
    margin-bottom: 6.666666666666667vw;
    text-align: center;
    font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  }
  .thought p {
    font-size: clamp(1.4rem, 3.733333333333334vw, 2.8rem);
  }

  /* steps */
  .steps {
    aspect-ratio: 750 / 1638;
    background-image: url("../img/s_steps_bg.webp");
    display: flex;
    align-items: center;
  }
  .steps-inner {
    margin-top: min(10vw, 75px);
  }
  .steps-ttl {
    margin-bottom: 6.666666666666667vw;
  }
  .steps-txt {
    margin-top: min(10vw, 75px);
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
  }
  .steps-btn01,
  .steps-btn02,
  .steps-btn03 {
    margin-bottom: min(5.333333333333334vw, 40px);
  }

  /* news */
  .news {
    aspect-ratio: 750 / 1200;
    background-image: url(../img/s_news_bg.webp);
  }
  .news-inner {
    padding: 6.666666666666667vw 0 0;
  }
  .news-ttl {
    margin-bottom: 6.666666666666667vw;
  }
  .news-list {
    gap: min(4vw, 30px) 5%;
  }
  .news-list li {
    width: 100%;
    max-width: 400px;
  }

  .newsItem {
    font-size: clamp(1.6rem, 3.4666666666666663vw, 2.6rem);
  }
  .newsItem-info {
    padding: min(2.666666666666667vw, 20px);
  }
  .newsItem-category {
    padding: 0 5%;
    font-size: 0.8em;
  }
  .newsItem-date {
    padding: 0 0 0 5%;
    font-size: 0.8em;
  }
  .newsItem-ttl {
    margin-top: 5px;
    line-height: 1.5;
  }

  /* game */
  .game {
    aspect-ratio: 750 / 1179;
    background-image: url("../img/s_game_bg.webp");
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
  }
  .game-ttl {
    margin-bottom: clamp(20px, 5.333333333333334vw, 40px);
    font-size: clamp(26px, 6.933333333333333vw, 52px);
  }
  .game-txt {
    margin-bottom: clamp(20px, 5.333333333333334vw, 40px);
  }
  .game-schedule {
    max-width: 690px;
  }
  .game-scheduleTtl {
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
  }

  /* ----- uniform.index ----- */
  .uniform-wrapper {
    padding: 9.6vw 4% 120px;
  }
  .uniform-ankerList {
    font-size: 1.8rem;
  }
  .uniformSec-ttl {
    padding: 20px 0;
    font-size: clamp(3.2rem, 6.4vw, 4.8rem);
  }
  .uniformSec-toggle {
    width: 40px;
    height: 40px;
  }
  .uniformSec-toggle img {
    width: 12px;
    height: 7px;
    transform-origin: 6px 5px;
  }
  .uniformSec-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(15px, 4vw, 30px);
  }

  /* ----- history.index ----- */
  .history-ankerList li {
    margin: 0 5px 10px;
    width: 170px;
    height: 60px;
  }
  .history-head {
    padding: 9.6vw 4% 6.4vw;
  }
  .history-ttl {
    margin-bottom: 6.4vw;
    font-size: 8vw;
  }
  .history-text {
    font-size: 1.6rem;
  }
  .history-text + .history-text {
    margin-top: 2rem;
  }
  .history-body {
    padding: 6.4vw 4%;
  }
  .history-date {
    font-size: 2.6rem;
  }
  .history-imgs {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .history-scene {
    width: 100%;
  }
  .history-newspaper p {
    font-size: 1.4rem;
  }

  /* slider */
  .swiper-slide {
    padding-right: 30px;
  }
  .swiper-controller {
    padding-right: 0;
  }

  /* ----- manager.index ----- */
  .manager-ttl {
    top: 50%;
    font-size: 12.8vw;
  }
  .manager-wrapper {
    padding: 30px 4% 100px;
  }
  .manager-list {
    display: block;
  }
  .manager-list li {
    margin: auto;
    width: 100%;
    max-width: 450px;
  }
  .manager-list li:nth-of-type(odd),
  .manager-list li:nth-of-type(even) {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .manager-name {
    margin-bottom: 10px;
    font-size: min(9.6vw, 4.6rem);
  }
  .manager-grades {
    margin: 10px 0;
    line-height: 1.7;
    font-size: 1.6rem;
  }
  .manager-grades::before {
    display: block;
    width: fit-content;
  }
  .manager-btn {
    height: clamp(45px, 12vw, 80px);
    font-size: 1.6rem;
  }

  /* modal */
  .modal-box {
    padding: 30px 4%;
  }
  .modal-content {
    padding-left: 4%;
    padding-right: 4%;
  }

  /* ----- wallart.index ----- */
  .wallart-wrapper {
    padding: 9.6vw 4% 120px;
  }
  .wallart-image {
    margin-bottom: 20px;
  }
  .wallart-number {
    width: clamp(20px, 5.333333333333334vw, 40px);
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
  }
  .wallart-text {
    margin-bottom: 50px;
    line-height: 2;
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
  }
  .wallartSec-number {
    padding: 20px 0;
    flex-basis: calc(100% - 40px);
    gap: 10px;
  }
  .wallartSec .wallartSec-number::before {
    width: clamp(25px, 6.666666666666667vw, 50px);
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
  }
  .wallartSec-ttl {
    flex-basis: 85%;
    font-size: clamp(2rem, 5.333333333333334vw, 4rem);
  }
  .wallartSec-toggle {
    width: 40px;
    height: 40px;
  }
  .wallartSec-toggle img {
    width: 12px;
    height: 7px;
    transform-origin: 6px 5px;
  }
  .wallartSec-content {
    padding-top: 10px;
    flex-direction: column;
    gap: 10px;
  }
  .wallartSec-text p {
    font-size: clamp(1.6rem, 4.266666666666667vw, 3.2rem);
  }
}

@media screen and (768px <= width < 1020px) {
  /* ----- manager.index ----- */
  .manager-list {
    column-gap: 30px;
  }
  .manager-list li {
    width: calc((100% - 30px) / 2);
  }
  .manager-list li:nth-of-type(odd) {
    margin-bottom: 60px;
  }
  .manager-list li:nth-of-type(even) {
    margin-top: 60px;
  }
  .manager-name {
    font-size: 4rem;
  }
  .manager-grades::before {
    display: block;
    width: fit-content;
  }
}
