@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, main, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "IBM Plex Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Regular.woff2") format("woff2"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Regular.woff") format("woff"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Medium.woff2") format("woff2"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Medium.woff") format("woff"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-SemiBold.woff2") format("woff2"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-SemiBold.woff") format("woff"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Bold.woff2") format("woff2"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Bold.woff") format("woff"), url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Bold.ttf") format("truetype");
}
:root {
  --color-site-primary: #111310;
  --color-site-secondary: #D9D9D9;
  --color-site-tertiary: #6E6E6E;
  --color-txt-primary: #333;
  --color-txt-secondary: #ADADAD;
  --color-plan: #E51C1C;
  --color-over: #1C5FE5;
  --color-win: #222B34;
  --color-lose: #BCBCBC;
  --color-site-violet: #94252A;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: max-content;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 64px;
  font-family: "IBM Plex Sans JP", "Meiryo", sans-serif, system-ui, -apple-system;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  position: relative;
  margin: 0;
  color: var(--color-txt-primary);
  background: var(--color-site-primary);
  text-decoration-skip: none;
  /* font smooth */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  /* font kerning */
  font-feature-settings: "palt";
  /* highlight */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
}
body * {
  scroll-margin-top: 64px;
}
@media print, screen and (width > 768px) {
  body {
	padding-top: 110px;
  }
  body * {
	scroll-margin-top: 10px;
  }
}

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

button {
  font-family: "IBM Plex Sans JP", sans-serif;
}

img {
  vertical-align: bottom;
}

@media only screen and (width <= 768px) {
  .u-use--pc {
	display: none !important;
  }
}

@media print, screen and (width > 768px) {
  .u-use--sp {
	display: none !important;
  }
}

.l-header {
  width: 100%;
  height: 64px;
  background-color: var(--color-site-primary);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media print, screen and (width > 768px) {
  .l-header {
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 110px;
  }
}
.l-header__inner {
  padding: 8px 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 24px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .l-header__inner {
	width: min(98.4615384615vw, 1280px);
  }
}

.l-main {
  position: relative;
  background-color: var(--color-site-primary);
}
.l-main--top__inner {
  background: url(../images/common/bg_main.webp) no-repeat left top;
  background-size: cover;
}
.l-main--news__inner {
  background: url(../images/top/bg_information.webp) repeat left top;
  background-size: cover;
}
.l-main--schedule {
  background-color: #fff;
}

.l-contents {
  padding-bottom: 40px;
  display: grid;
  gap: 40px;
  width: calc(100% - 20px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .l-contents {
	width: min(98.4615384615vw, 1280px);
  }
}
@media print, screen and (width > 768px) {
  .l-contents {
	grid-template-columns: 1fr 260px;
  }
}
@media only screen and (width <= 768px) {
  .l-contents__side {
	grid-row: 1/2;
  }
}
.l-contents--single {
  padding-bottom: 80px;
}
@media print, screen and (width > 768px) {
  .l-contents--single {
	grid-template-columns: 100%;
	padding-bottom: 120px;
  }
}
@media only screen and (width <= 768px) {
  body#team .l-contents .l-contents__side .c-title--tertiary {
	display: none;
  }
}

@media print, screen and (width > 768px) {
  .l-entry {
	padding-bottom: 80px;
  }
}

.l-ready {
  display: grid;
  place-items: end center;
  height: 320px;
  padding-bottom: 100px;
  background: url(../images/common/bg_ready.webp) no-repeat center top;
  background-size: auto 100%;
  position: relative;
}
.l-ready::before {
  content: "";
  width: 100%;
  height: 104px;
  background: url(../images/common/bg_ready_cover.webp) repeat-x left top;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media print, screen and (width > 768px) {
  .l-ready {
	height: 400px;
	padding-bottom: 134px;
  }
}
.l-ready__txt {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .l-ready__txt {
	font-size: 40px;
  }
}

.l-footer {
  padding: 40px 10px calc(16vw + 20px);
  position: sticky;
  left: 0;
  top: 100vh;
}
@media print, screen and (width > 768px) {
  .l-footer {
	padding: 60px 0 40px;
  }
}
.l-footer__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .l-footer__inner {
	width: min(98.4615384615vw, 1280px);
  }
}
@media print, screen and (width > 768px) {
  .l-footer__inner {
	flex-direction: row;
  }
}

.c-title {
  margin-bottom: 40px;
  letter-spacing: -0.05em;
  color: var(--color-site-primary);
  font-weight: 700;
  line-height: 1;
}
@media print, screen and (width > 768px) {
  .c-title {
	margin-bottom: 80px;
  }
}
.c-title__en {
  margin-bottom: 8px;
  font-size: 45px;
}
@media print, screen and (width > 768px) {
  .c-title__en {
	font-size: 80px;
  }
}
.c-title__ja {
  font-size: 15px;
}
@media print, screen and (width > 768px) {
  .c-title__ja {
	font-size: 20px;
  }
}
.c-title--secondary {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-site-primary);
}
@media print, screen and (width > 768px) {
  .c-title--secondary {
	margin-bottom: 24px;
	font-size: 24px;
  }
}
.c-title--tertiary {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .c-title--tertiary {
	margin-bottom: 24px;
	font-size: 24px;
  }
}

.c-hd {
  font-weight: 700;
}
.c-hd--primary {
  padding: 3px 0;
  border-bottom: 1px solid var(--color-site-secondary);
  font-size: 24px;
}
.c-hd--primary:not(:last-child) {
  margin-bottom: 24px;
}
.c-hd--primary:not(:first-child) {
  margin-top: 40px;
}
.c-hd--secondary {
  font-size: 18px;
  line-height: 1.75;
}
.c-hd--secondary:not(:last-child) {
  margin-bottom: 12px;
}
.c-hd--secondary:not(:first-child) {
  margin-top: 24px;
}
body#team .c-hd {
  color: #fff;
}

.c-txt {
  font-size: 16px;
  line-height: 1.75;
}
.c-txt:not(:last-child) {
  margin-bottom: 12px;
}
.c-txt:not(:first-child) {
  margin-top: 24px;
}

.c-lead {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
}
.c-lead:not(:last-child) {
  margin-bottom: 24px;
}
.c-lead:not(:first-child) {
  margin-top: 24px;
}

.c-data {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 0;
}
.c-data:not(:last-child) {
  margin-bottom: 12px;
}
.c-data__dt, .c-data__dd {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}
body#team .c-data {
  color: #fff;
}

.c-list:not(:last-child) {
  margin-bottom: 12px;
}
.c-list:is(ol) {
  counter-reset: my-counter;
}
.c-list:is(ol) .c-list__item {
  padding-left: 29px;
}
.c-list:is(ol) .c-list__item::before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
  width: 27px;
}
.c-list:is(ul) .c-list__item::before {
  content: "・";
}
.c-list__item {
  padding-left: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
}
.c-list__item::before {
  position: absolute;
  left: 0;
}
.c-list__item:not(:last-child) {
  margin-bottom: 12px;
}
body#team .c-list {
  color: #fff;
}

.c-figure {
  text-align: center;
}
.c-figure:not(:last-child) {
  margin-bottom: 12px;
}
.c-figure__img {
  max-width: 100%;
}
.c-figure__caption {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}
body#team .c-figure {
  color: #fff;
}

.p-logo {
  overflow: hidden;
}
.p-logo__link {
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .p-logo__link:where(:any-link, :enabled, summary):hover {
	opacity: 0.7;
	transition: opacity 0.3s;
  }
}
.p-logo__img {
  width: 100%;
}
.p-logo--header {
  width: 48px;
  height: 48px;
}
@media print, screen and (width > 768px) {
  .p-logo--header {
	width: 180px;
	height: 62px;
  }
}
@media only screen and (width <= 768px) {
  .p-logo--header .p-logo__img {
	width: 138px;
	position: relative;
	left: -2px;
  }
}
.p-logo--menu {
  width: 180px;
  margin: 40px auto 0;
}
@media print, screen and (width > 768px) {
  .p-logo--menu {
	display: none;
  }
}
.p-logo--jumbotron {
  width: 180px;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 21.3333333333vw;
  translate: -50% 0;
}
@media print, screen and (width > 768px) {
  .p-logo--jumbotron {
	width: 216px;
	bottom: 24px;
  }
}
.p-logo--footer {
  width: 180px;
}
@media print, screen and (width > 768px) {
  .p-logo--footer {
	width: 280px;
  }
}

.p-gnav__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
}
@media print, screen and (width > 768px) {
  .p-gnav__list {
	flex-direction: row;
	gap: min(2.8571428571vw, 40px);
  }
}
.p-gnav__list--secondary {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
}
@media print, screen and (width > 768px) {
  .p-gnav__list--secondary {
	display: none;
  }
}
.p-gnav__item {
  line-height: 1;
}
@media print, screen and (width > 768px) {
  .p-gnav__item {
	padding-top: 12px;
  }
  .p-gnav__item:nth-child(n+7) {
	display: none;
  }
}
.p-gnav__item--secondary {
  line-height: 1;
}
.p-gnav__link {
  line-height: 1;
}
@media print, screen and (width > 768px) {
  .p-gnav__link {
	display: block;
	text-align: center;
	position: relative;
	padding-bottom: 10px;
  }
  .p-gnav__link::after {
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background: #fff;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
  }
  .p-gnav__link:hover::after {
	transform: scale(1, 1);
  }
}
.p-gnav__link--secondary {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-txt-secondary);
}
.p-gnav__en {
  margin-bottom: 4px;
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media only screen and (width <= 768px) {
  .p-gnav__en {
	display: none;
  }
}
.p-gnav__ja {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: var(--color-txt-secondary);
}
@media print, screen and (width > 768px) {
  .p-gnav__ja {
	font-size: 12px;
	color: #fff;
  }
}

@media only screen and (width <= 768px) {
  .p-gmenu {
	position: fixed;
	top: 64px;
	left: 0;
	width: 100%;
	height: calc(100% - 64px);
	padding: 24px 10px 40px;
	background-color: var(--color-site-primary);
	pointer-events: none;
	overflow-y: scroll;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s;
  }
  .p-gmenu.is_open {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.2s;
	pointer-events: initial;
  }
}
.p-gmenu__btn {
  width: 40px;
  height: 22px;
  background: none;
  border: 0;
  position: relative;
}
.p-gmenu__btn.is_open .p-gmenu__btn__line:nth-child(1) {
  top: 10px;
  rotate: 45deg;
  transition: top 0.2s ease-in-out 0s, rotate 0.2s ease-in-out 0.3s;
}
.p-gmenu__btn.is_open .p-gmenu__btn__line:nth-child(2) {
  opacity: 0;
  transition: opacity 0.2s;
}
.p-gmenu__btn.is_open .p-gmenu__btn__line:nth-child(3) {
  bottom: 10px;
  rotate: -45deg;
  transition: bottom 0.2s ease-in-out 0s, rotate 0.2s ease-in-out 0.3s;
}
.p-gmenu__btn__line {
  width: 100%;
  height: 2px;
  background-color: var(--color-site-secondary);
  position: absolute;
  left: 0;
}
.p-gmenu__btn__line:nth-child(1) {
  top: 0;
  transition: top 0.3s ease-in-out 0.2s, rotate 0.2s ease-in-out 0s;
}
.p-gmenu__btn__line:nth-child(2) {
  top: 10px;
  opacity: 1;
  transition: opacity 0.3s;
}
.p-gmenu__btn__line:nth-child(3) {
  bottom: 0;
  transition: bottom 0.3s ease-in-out 0.2s, rotate 0.2s ease-in-out 0s;
}
@media print, screen and (width > 768px) {
  .p-gmenu__btn {
	display: none;
  }
}

.p-jumbotron {
  background-color: var(--color-site-primary);
  position: relative;
  overflow: hidden;
}
.p-jumbotron__hd {
  width: 100%;
  height: 100%;
  text-align: center;
}
.p-jumbotron__img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-jumbotron--top {
  height: max(603px, 160.8vw);
}
.p-jumbotron--top::before {
  content: "";
  width: 100%;
  height: 40vw;
  background: #111310;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  translate: -50% 0;
  filter: blur(22px);
}
.p-jumbotron--top .p-jumbotron__img {
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
@media print, screen and (width > 768px) {
  .p-jumbotron--top {
	height: min(63.28vw, 810px);
  }
  .p-jumbotron--top::before {
	height: 116px;
	bottom: 25px;
  }
  .p-jumbotron--top .p-jumbotron__hd {
	width: min(100vw, 1440px);
	position: relative;
	left: 50%;
	translate: -50% 0;
  }
}

.p-pagetitle {
  height: 110px;
  background: var(--color-site-primary) url(../images/common/bg_mainvisual.png) no-repeat center top;
  background-size: cover;
  display: grid;
  place-items: center;
}
@media print, screen and (width > 768px) {
  .p-pagetitle {
	height: 154px;
  }
}
.p-pagetitle__txt {
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.p-pagetitle__main {
  font-size: 20px;
}
@media print, screen and (width > 768px) {
  .p-pagetitle__main {
	font-size: 24px;
  }
}
.p-pagetitle__sub {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
}
@media print, screen and (width > 768px) {
  .p-pagetitle__sub {
	font-size: 40px;
  }
}

.p-breadcrumb {
  padding: 12px 0;
  width: calc(100% - 20px);
  margin: 0 auto 40px;
}
@media print, screen and (width > 768px) {
  .p-breadcrumb {
	width: min(98.4615384615vw, 1280px);
  }
}
.p-breadcrumb__list {
  overflow: hidden;
}
.p-breadcrumb__item {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-txt-primary);
}
.p-breadcrumb__item:not(:last-child) {
  margin-right: 24px;
  float: left;
  position: relative;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: ">";
  font-size: 12px;
  line-height: 1;
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 100% -50%;
}
.p-breadcrumb__link {
  color: inherit;
  text-decoration: underline;
}
#team .p-breadcrumb__item {
  color: #fff;
}

#faq .p-breadcrumb__item {
  color: #fff;
}

.p-cnav {
  border-top: 1px solid var(--color-site-secondary);
}
@media only screen and (width <= 768px) {
  .p-cnav__list {
	display: none !important;
  }
}
.p-cnav__item {
  border-bottom: 1px solid var(--color-site-secondary);
}
.p-cnav__link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}
@media (hover: hover) {
  .p-cnav__link:where(:any-link, :enabled, summary):hover::before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--color-site-secondary);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
  }
}
.p-cnav__pulldown {
  margin: 10px auto 0;
  width: 200px;
  height: 52px;
  position: relative;
}
.p-cnav__pulldown::after {
  content: "";
  width: 11px;
  height: 9px;
  background-color: var(--color-txt-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
}
@media print, screen and (width > 768px) {
  .p-cnav__pulldown {
	display: none !important;
  }
}
.p-cnav__selectbox {
  display: block;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 12px 37px 12px 16px;
  border: 1px solid var(--color-site-secondary);
  background-color: #efefef;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
.p-cnav__selectbox::-ms-expand {
  display: none;
}
@media only screen and (width <= 768px) {
  #team .p-cnav__list {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	border-left: 1px solid var(--color-site-secondary);
  }
}
@media only screen and (width <= 768px) {
  #team .p-cnav__item {
	border-right: 1px solid var(--color-site-secondary);
  }
}
#team .p-cnav__link {
  color: #fff;
}
@media (hover: hover) {
  #team .p-cnav__link:where(:any-link, :enabled, summary):hover::before {
	background-color: #6D6D6D;
  }
}
@media only screen and (width <= 768px) {
  #team .p-cnav__link {
	text-align: center;
  }
}
#team .p-cnav__link.is_current::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #6D6D6D;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.p-cta__img {
  width: 100%;
}
.p-cta__item {
  box-shadow: 0px 4px 24px rgba(255, 255, 255, 0.25);
  transition: opacity 0.2s;
}
.p-cta__item:nth-child(1) {
  background-color: var(--color-site-primary);
}
@media (hover: hover) {
  .p-cta__item:where(:any-link, :enabled, summary):hover {
	opacity: 0.7;
	transition: opacity 0.3s;
  }
}
.p-cta--fix {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.p-cta--fix .p-cta__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media print, screen and (width > 768px) {
  .p-cta--fix .p-cta__list {
	width: 200px;
	grid-template-columns: 100%;
	gap: 4px;
	position: fixed;
	right: 24px;
	bottom: 24px;
  }
}
@media only screen and (width <= 768px) {
  .p-cta--fix {
	width: 100%;
  }
  .p-cta--fix.is_fixed .p-cta__list {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	opacity: 0;
	translate: 0 100%;
	animation: 0.4s linear 0s ctaSlideIn forwards;
  }
  @keyframes ctaSlideIn {
	0% {
	  opacity: 0;
	  translate: 0 100%;
	}
	80% {
	  translate: 0 0;
	}
	100% {
	  opacity: 1;
	  translate: 0 0;
	}
  }
}
.p-cta--menu .p-cta__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 40px;
}
@media print, screen and (width > 768px) {
  .p-cta--menu .p-cta__list {
	display: none;
  }
}

.p-banner__img {
  width: 100%;
}
.p-banner__item {
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .p-banner__item:where(:any-link, :enabled, summary):hover {
	opacity: 0.7;
	transition: opacity 0.3s;
  }
}
.p-banner--main {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px 24px;
  padding: 24px 10px;
  background-color: var(--color-site-primary);
}
@media print, screen and (width > 768px) {
  .p-banner--main {
	padding: 0 0 40px;
	justify-content: center;
	flex-direction: row;
  }
  .p-banner--main .p-banner__item {
	width: 355px;
  }
}
.p-banner--abovefooter {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px 24px;
  padding: 24px 10px;
  background-color: var(--color-site-primary);
}
@media print, screen and (width > 768px) {
  .p-banner--abovefooter {
	padding: 40px 0;
	justify-content: center;
	flex-direction: row;
  }
  .p-banner--abovefooter .p-banner__item {
	width: 355px;
  }
}
.p-banner--menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}
@media print, screen and (width > 768px) {
  .p-banner--menu {
	display: none;
  }
}

.p-aboutus {
  padding: 60px 0;
}
@media print, screen and (width > 768px) {
  .p-aboutus.is_inview .p-aboutus__img:nth-child(2) {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.1s, translate 0.3s ease-in 0.1s;
  }
  .p-aboutus.is_inview .p-aboutus__img:nth-child(1) {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.15s, translate 0.3s ease-in 0.15s;
  }
  .p-aboutus.is_inview .p-aboutus__img:nth-child(3) {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.2s, translate 0.3s ease-in 0.2s;
  }
  .p-aboutus.is_inview .p-aboutus__hd {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.4s, translate 0.3s ease-in 0.4s;
  }
  .p-aboutus.is_inview .p-aboutus__body {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.6s, translate 0.3s ease-in 0.6s;
  }
}
@media only screen and (width <= 768px) {
  .p-aboutus.is_inview .p-aboutus__hd {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.3s, translate 0.3s ease-in 0.3s;
  }
  .p-aboutus.is_inview .p-aboutus__photos {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.5s, translate 0.3s ease-in 0.5s;
  }
  .p-aboutus.is_inview .p-aboutus__body {
	opacity: 1;
	translate: 0;
	transition: opacity 0.2s ease-in 0.7s, translate 0.3s ease-in 0.7s;
  }
}
@media print, screen and (width > 768px) {
  .p-aboutus {
	padding: 120px 0;
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
  }
}
.p-aboutus__hd {
  margin-bottom: 40px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  opacity: 0;
  translate: 0 40px;
}
@media print, screen and (width > 768px) {
  .p-aboutus__hd {
	margin-top: 120px;
	font-size: min(8.3333333333vw, 120px);
	grid-column: 1/2;
	grid-row: 1/2;
	position: relative;
	z-index: 2;
  }
}
@media print, screen and (width > 768px) {
  .p-aboutus__photos {
	width: min(100%, 1658px);
	grid-column: 1/2;
	grid-row: 1/3;
	display: grid;
	grid-template-columns: 1fr min(25.625vw, 369px) min(27.3611111111vw, 394px) min(21.3888888889vw, 308px) min(11.7361111111vw, 169px) min(13.8194444444vw, 199px) 1fr;
	grid-template-rows: clamp(200px, 16.6666666667vw, 240px) min(19.8611111111vw, 286px) min(8.1944444444vw, 118px) min(8.4722222222vw, 122px) clamp(340px, 28.0555555556vw, 404px);
	position: relative;
	z-index: 1;
	left: 50%;
	translate: -50% 0;
  }
}
@media only screen and (width <= 768px) {
  .p-aboutus__photos {
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: 1fr 48vw 1fr;
	opacity: 0;
	translate: 0 40px;
  }
}
.p-aboutus__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (width <= 768px) {
  .p-aboutus__img:nth-child(1) {
	object-position: right center;
  }
  .p-aboutus__img:nth-child(3) {
	object-position: left center;
  }
}
@media print, screen and (width > 768px) {
  .p-aboutus__img {
	max-width: 477px;
	max-height: 526px;
	opacity: 0;
  }
  .p-aboutus__img:nth-child(1) {
	grid-column: 1/3;
	grid-row: 2/5;
	object-position: center right;
	translate: -40px 0;
  }
  .p-aboutus__img:nth-child(2) {
	grid-column: 5/8;
	grid-row: 1/3;
	translate: 40px 0;
  }
  .p-aboutus__img:nth-child(3) {
	grid-column: 4/6;
	grid-row: 4/6;
	translate: 0 40px;
  }
}
.p-aboutus__body {
  padding: 0 40px;
  opacity: 0;
  translate: 0 40px;
}
@media print, screen and (width > 768px) {
  .p-aboutus__body {
	grid-column: 1/2;
	grid-row: 2/3;
	align-self: start;
	justify-self: center;
	width: fit-content;
	padding: 0;
	position: relative;
	z-index: 2;
  }
}
.p-aboutus__txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #fff;
}
.p-aboutus__txt:not(:last-child) {
  margin-bottom: 24px;
}
@media print, screen and (width > 768px) {
  .p-aboutus__txt {
	font-size: clamp(14px, 1.3888888889vw, 20px);
  }
}

.p-joinus.is_inview .p-joinus__img {
  translate: 0;
  opacity: 1;
  transition: translate 0.8s, opacity 1.2s;
}
.p-joinus.is_inview .p-joinus__content {
  opacity: 1;
  translate: 0;
  transition: opacity 0.2s ease-in 0.3s, translate 0.3s ease-in 0.3s;
}
@media print, screen and (width > 768px) {
  .p-joinus {
	display: grid;
	grid-template-columns: 50% 48.5%;
	gap: 1.5%;
	align-items: center;
  }
}
.p-joinus__photo {
  width: 100%;
  overflow: hidden;
}
.p-joinus__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  translate: -100% 0;
}
.p-joinus__content {
  padding: 40px 10px;
  opacity: 0;
  translate: 0 40px;
}
@media print, screen and (width > 768px) {
  .p-joinus__content {
	padding: 0 50px 0 0;
  }
}
.p-joinus__content .c-list {
  color: #fff;
}
@media print, screen and (width > 768px) {
  .p-joinus__content .c-list__item {
	font-size: clamp(14px, 1.3888888889vw, 20px);
  }
}
.p-joinus__hd {
  margin: 0 0 12px 20px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .p-joinus__hd {
	margin: 0;
	font-size: min(8.3333333333vw, 120px);
  }
}
.p-joinus__txt {
  margin: 0 0 32px 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .p-joinus__txt {
	margin: 0 0 min(4.1666666667vw, 60px) 0;
	font-size: min(3.4722222222vw, 50px);
  }
}

.p-information {
  padding: 40px 0;
  background: url(../images/top/bg_information.webp) repeat left top;
  background-size: cover;
}
@media print, screen and (width > 768px) {
  .p-information {
	padding: 120px 0 100px;
  }
}
.p-information__inner {
  width: calc(100% - 20px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-information__inner {
	width: min(98.4615384615vw, 1280px);
  }
}
@media print, screen and (width > 768px) {
  .p-information__inner {
	grid-template-columns: 274px 1fr;
	display: grid;
	gap: 0 6.25%;
  }
}
@media print, screen and (width > 768px) {
  .p-information__inner .c-title {
	grid-column: 1/3;
  }
}
@media only screen and (width <= 768px) {
  .p-information__inner .p-news {
	margin: 40px 10px 0;
  }
}

.p-schedule {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px 0;
  width: calc(100% - 20px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-schedule {
	width: min(76.9230769231vw, 1000px);
  }
}
.p-schedule__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 66px;
}
@media print, screen and (width > 768px) {
  .p-schedule__tabs {
	height: 72px;
  }
}
.p-schedule__tabs:has(.p-schedule__button:nth-child(1) > .p-schedule__input:checked) ~ .p-schedule__body > .p-schedule__content:nth-child(1) {
  opacity: 1;
  z-index: 2;
}
.p-schedule__tabs:has(.p-schedule__button:nth-child(2) > .p-schedule__input:checked) ~ .p-schedule__body > .p-schedule__content:nth-child(2) {
  opacity: 1;
  z-index: 2;
}
.p-schedule__button {
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #8e8e8e;
  background-color: var(--color-site-secondary);
  cursor: pointer;
  position: relative;
  transition: color 0.2s, background-color 0.2s;
}
.p-schedule__button::after {
  content: "";
  width: 46px;
  height: 12px;
  background-color: var(--color-site-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -12px;
  translate: -50% 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.p-schedule__button:hover, .p-schedule__button:has(.p-schedule__input:focus), .p-schedule__button:has(.p-schedule__input:checked) {
  color: #fff;
  background-color: var(--color-site-primary);
  transition: color 0.3s, background-color 0.3s;
}
.p-schedule__button:hover::after, .p-schedule__button:has(.p-schedule__input:focus)::after, .p-schedule__button:has(.p-schedule__input:checked)::after {
  opacity: 1;
  transition: opacity 0.3s;
}
@media print, screen and (width > 768px) {
  .p-schedule__button {
	font-size: 24px;
  }
}
.p-schedule__input {
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  position: absolute !important;
}
.p-schedule__body {
  grid-column: 1/2;
  grid-row: 2/3;
  display: grid;
}
.p-schedule__content {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  opacity: 0;
  z-index: 1;
}
@media only screen and (width <= 768px) {
  .p-schedule--top .swiper {
	position: relative;
	overflow: hidden;
	z-index: 1;
	display: block;
  }
  .p-schedule--top .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	box-sizing: content-box;
  }
  .p-schedule--top .swiper-button-next {
	width: 8px;
	height: 12px;
	background: var(--color-site-primary);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
	z-index: 10;
  }
  .p-schedule--top .swiper-button-prev {
	width: 8px;
	height: 12px;
	background: var(--color-site-primary);
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	z-index: 10;
  }
}
.p-schedule--top__inner {
  position: relative;
}
@media only screen and (width <= 768px) {
  .p-schedule--top__inner {
	border-top: 1px solid var(--color-site-secondary);
	border-bottom: 1px solid var(--color-site-secondary);
  }
}
@media only screen and (width <= 768px) {
  .p-schedule--top__main {
	width: 274px;
	margin: auto;
  }
}
.p-schedule--top__hd {
  margin-bottom: 12px;
  color: var(--color-site-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media print, screen and (width > 768px) {
  .p-schedule--top__hd {
	margin-bottom: 24px;
	font-size: 24px;
  }
}
@media print, screen and (width > 768px) {
  .p-schedule--top__list {
	border-top: 1px solid var(--color-site-secondary);
  }
}
@media only screen and (width <= 768px) {
  .p-schedule--top__list {
	margin: auto;
  }
}
.p-schedule--top__item {
  padding: 24px 0;
  position: relative;
}
@media print, screen and (width > 768px) {
  .p-schedule--top__item {
	border-bottom: 1px solid var(--color-site-secondary);
  }
}
.p-schedule--top__label {
  padding: 4px 8px 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: absolute;
  right: 1px;
  top: 24px;
}
.p-schedule--top__label.is_plan {
  background-color: var(--color-plan);
}
.p-schedule--top__label.is_over {
  background-color: var(--color-over);
}
.p-schedule--top__time {
  margin-bottom: 4px;
  text-align: center;
  color: var(--color-site-primary);
}
.p-schedule--top__date {
  margin-bottom: 4px;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 500;
}
.p-schedule--top__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 125%;
}
.p-schedule--top__result {
  display: grid;
  grid-template-columns: 48px 41px 48px 41px 48px;
  align-items: center;
  gap: 12px;
}
.p-schedule--top__team {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-site-primary);
  text-align: center;
}
.p-schedule--top__site {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  color: var(--color-site-primary);
}
.p-schedule--top__score {
  min-height: 32px;
  font-size: 32px;
  font-weight: 700;
}
.p-schedule--top__score:empty {
  position: relative;
  border-bottom: 1px solid var(--color-site-secondary);
}
.p-schedule--top__score.is_win {
  color: var(--color-win);
}
.p-schedule--top__score.is_lose {
  color: var(--color-lose);
}

.p-news__head {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}
@media print, screen and (width > 768px) {
  .p-news__head {
	margin-bottom: 24px;
  }
}
.p-news__hd {
  color: var(--color-site-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media print, screen and (width > 768px) {
  .p-news__hd {
	font-size: 24px;
  }
}
.p-news__index {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
@media (hover: hover) {
  .p-news__index:where(:any-link, :enabled, summary):hover {
	text-decoration: underline;
  }
}
.p-news__list {
  border-top: 1px solid var(--color-site-secondary);
}
.p-news__item {
  border-bottom: 1px solid var(--color-site-secondary);
}
.p-news__link {
  display: block;
  padding: 28px 32px 28px 16px;
  position: relative;
}
@media (hover: hover) {
  .p-news__link:where(:any-link, :enabled, summary):hover::before {
	content: "";
	width: 100%;
	height: calc(100% - 8px);
	background: var(--color-site-secondary);
	position: absolute;
	left: 0;
	top: 4px;
	z-index: 1;
  }
}
.p-news__time {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.p-news__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

.p-team {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 0;
  container-type: inline-size;
  container-name: teamWrapper;
}
@container teamWrapper (width <= 646px) {
  .p-team .p-team__item {
	width: 50%;
  }
}
.p-team__item {
  width: 50%;
}
@media print, screen and (width > 768px) {
  .p-team__item {
	width: 33.3333333333%;
  }
  .p-team__item:nth-child(even) .p-team__data {
	background-color: #ececec;
  }
  .p-team__item:hover .p-team__img {
	scale: 1.2;
	transition: scale 0.3s;
  }
}
.p-team__thumbnail {
  aspect-ratio: 177/223;
  overflow: hidden;
}
@media print, screen and (width > 768px) {
  .p-team__thumbnail {
	aspect-ratio: 326/410;
  }
}
.p-team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.2s;
}
.p-team__data {
  padding: 12px 8px;
  background-color: #fff;
}
@media print, screen and (width > 768px) {
  .p-team__data {
	padding: 12px 24px;
  }
}
.p-team__name {
  display: grid;
  gap: 4px;
  line-height: 1;
}
.p-team__name__main {
  font-size: 16px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-team__name__main {
	font-size: 22px;
  }
}
.p-team__name__sub {
  font-size: 12px;
  font-weight: 500;
  color: #adadad;
}
@media print, screen and (width > 768px) {
  .p-team__name__sub {
	font-size: 15px;
  }
}
.p-team__txt {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}
@media print, screen and (width > 768px) {
  .p-team__txt {
	font-size: 15px;
  }
}

.p-faq {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-faq {
	width: min(76.9230769231vw, 1000px);
  }
}
.p-faq__dt {
  margin-bottom: 4px;
  padding: 16px 12px 16px 35px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.p-faq__dt::before {
  content: "Q";
  font-weight: 600;
  position: absolute;
  top: 16px;
  left: 12px;
}
@media print, screen and (width > 768px) {
  .p-faq__dt {
	padding: 16px 24px 16px 47px;
  }
  .p-faq__dt::before {
	left: 24px;
  }
}
.p-faq__dd {
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
.p-faq__dd:not(:last-child) {
  margin-bottom: 36px;
}
@media print, screen and (width > 768px) {
  .p-faq__dd {
	padding: 12px 48px;
  }
  .p-faq__dd:not(:last-child) {
	margin-bottom: 24px;
  }
}

.p-nestlist {
  list-style: none;
  counter-reset: my-counter;
}
.p-nestlist:not(:last-child) {
  margin-bottom: 12px;
}
.p-nestlist:not(.p-nestlist__item .p-nestlist) > .p-nestlist__item {
  padding-left: 30px;
}
.p-nestlist:not(.p-nestlist__item .p-nestlist) > .p-nestlist__item:not(:last-child) {
  margin-bottom: 12px;
}
.p-nestlist:not(.p-nestlist__item .p-nestlist) > .p-nestlist__item::before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
  font-weight: 500;
  text-align: right;
  width: 27px;
  position: absolute;
  left: 0;
}
.p-nestlist:not(.p-nestlist__item .p-nestlist) > .p-nestlist__item .p-nestlist {
  margin: 12px 0 0 -6px;
}
.p-nestlist:not(.p-nestlist__item .p-nestlist) > .p-nestlist__item .p-nestlist__item {
  padding-left: 37px;
}
.p-nestlist:not(.p-nestlist__item .p-nestlist) > .p-nestlist__item .p-nestlist__item:not(:last-child) {
  margin-bottom: 8px;
}
.p-nestlist:not(.p-nestlist__item .p-nestlist) > .p-nestlist__item .p-nestlist__item::before {
  content: "(" counter(my-counter) ")";
  counter-increment: my-counter;
  font-weight: 500;
  text-align: right;
  width: 29px;
  position: absolute;
  left: 0;
}
.p-nestlist__item {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
.p-nestlist__inner {
  margin: 12px 0 0 -30px;
}
@media print, screen and (width > 768px) {
  .p-nestlist__inner {
	margin-left: 0;
  }
}
.p-nestlist__hd {
  font-size: 16px;
  line-height: 1.5;
}
.p-nestlist_txt {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.p-nestlist__note {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-site-violet);
}

.p-pager {
  width: fit-content;
  margin: 24px auto 0;
}
.p-pager__list {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.p-pager__item {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-txt-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.p-pager__item.is_current .p-pager__link {
  color: #fff;
  background-color: var(--color-txt-primary);
  pointer-events: none;
}
.p-pager__link, .p-pager__txt {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
@media (hover: hover) {
  .p-pager__link:where(:any-link, :enabled, summary):hover {
	color: #fff;
	background-color: var(--color-txt-primary);
	transition: all 0.2s;
  }
}
.p-pager__link--prev::before, .p-pager__link--next::before {
  content: "";
  width: 4px;
  height: 4px;
}
@media (hover: hover) {
  .p-pager__link--prev:where(:any-link, :enabled, summary):hover::before, .p-pager__link--next:where(:any-link, :enabled, summary):hover::before {
	border-color: #fff;
  }
}
.p-pager__link--prev::before {
  border-left: 1px solid var(--color-txt-primary);
  border-bottom: 1px solid var(--color-txt-primary);
  rotate: 45deg;
}
.p-pager__link--next::before {
  border-right: 1px solid var(--color-txt-primary);
  border-bottom: 1px solid var(--color-txt-primary);
  rotate: -45deg;
}

.p-sns {
  width: fit-content;
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media print, screen and (width > 768px) {
  .p-sns {
	margin: 0 0 0 80px;
	gap: 24px;
  }
}
.p-sns__item {
  width: 48px;
}
.p-sns__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media print, screen and (width > 768px) {
  .p-sns__link::before {
	content: "";
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.2s;
  }
  .p-sns__link:hover::before {
	opacity: 1;
	transition: opacity 0.3s;
  }
  .p-sns__link--instagram:hover::before {
	background-image: url(../images/common/icon_instagram_hover.svg);
  }
  .p-sns__link--line:hover::before {
	background-image: url(../images/common/icon_line_hover.svg);
  }
}
.p-sns__icon {
  width: 100%;
  height: auto;
}

.p-fnav {
  width: 100%;
  margin-top: 60px;
}
@media only screen and (width <= 768px) {
  .p-fnav {
	margin-top: 40px;
	padding: 0 24px;
  }
}
.p-fnav__list {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
@media print, screen and (width > 768px) {
  .p-fnav__list {
	margin-bottom: 50px;
	flex-direction: row;
	gap: min(5.7142857143vw, 80px);
  }
}
.p-fnav__list--secondary {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
@media print, screen and (width > 768px) {
  .p-fnav__list--secondary {
	flex-direction: row;
	gap: 40px;
  }
}
@media only screen and (width <= 768px) {
  .p-fnav__item {
	line-height: 1;
  }
}
.p-fnav__item--secondary {
  line-height: 1;
}
.p-fnav__link {
  display: block;
  width: fit-content;
  line-height: 1;
}
@media print, screen and (width > 768px) {
  .p-fnav__link {
	position: relative;
	padding-bottom: 10px;
  }
  .p-fnav__link::after {
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background: #fff;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
  }
  .p-fnav__link:hover::after {
	transform: scale(1, 1);
  }
}
.p-fnav__link--secondary {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-txt-secondary);
}
@media (hover: hover) {
  .p-fnav__link--secondary:where(:any-link, :enabled, summary):hover {
	text-decoration: underline;
  }
}
.p-fnav__en {
  margin-bottom: 4px;
  display: block;
  font-size: clamp(14px, 1.40625vw, 18px);
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media only screen and (width <= 768px) {
  .p-fnav__en {
	display: none;
  }
}
.p-fnav__ja {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: var(--color-txt-secondary);
}

.p-copyright {
  width: 100%;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-site-tertiary);
}
@media print, screen and (width > 768px) {
  .p-copyright {
	margin-top: 60px;
	padding-top: 40px;
  }
}
@media only screen and (width <= 768px) {
  .p-copyright {
	text-align: center;
  }
}
.p-copyright__note {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media only screen and (width <= 768px) {
  .p-copyright__note {
	margin-bottom: 20px;
	line-height: 1.5;
  }
}
.p-copyright__txt {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media only screen and (width <= 768px) {
  .p-copyright__txt {
	font-size: 10px;
  }
}

.simcal-event-title {
  font-size: 13px;
}

.simcal-current-year,
.simcal-current-month {
  font-size: 32px;
}

.simcal-current-year::after {
  content: "年";
}

.simcal-default-calendar-grid > table,
.simcal-calendar-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

div.wpforms-container-full {
  width: 100%;
  max-width: 600px;
  margin: 0 auto!important;
}

.contact .l-main ,
.match .l-main {
  background: #fff;
}

@media only screen and (width <= 768px) {
  .contact .l-main {
	padding: 40px 10px;
  }
}

.simcal-current h3,
.simcal-custom-header {
  font-size: 32px;
  text-align: center;
}

@media only screen and (width <= 768px) {
  .simcal-added-time {
	display: none;
  }
  .simcal-events li {
	border-top: 1px solid #c4c4c4;
	padding-top: 12px;
  }

  .simcal-events li:first-of-type {
	border: none;
	padding-top: 0;
  }
}

.tab-wrap {
  /* background: $color; を展開 */
  background: #111311;
  padding: 1px 1px 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.tab-wrap [role="tablist"] {
  display: table;
  width: 100%;
}

.tab-wrap [role="tablist"] > li {
  display: table-cell;
}

.tab-wrap [role="tablist"] > li a {
  display: block;
  padding: 10px 5px;
  text-align: center;
  /* background: $color; を展開 */
  background: #111311;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.tab-wrap [role="tablist"] > li a:hover {
  /* background: lighten($color, 8%); を展開 */
  /* lighten(#009cd5, 8%) は #14b2f2 */
  background: #111311;
}

.tab-wrap [role="tablist"] > li a[aria-selected="true"] {
  background: #fff;
  color: #000;
}

.tab-wrap .tabpanel-wrap {
  margin: 0 -1px;
  position: relative;
  background: #fff;
}

.tab-wrap .tabpanel-wrap [role="tabpanel"] {
  /* @include clearfix; の展開部分 */
  /* Pseudo-elements should use ::after in modern CSS */
}

.tab-wrap .tabpanel-wrap [role="tabpanel"]::after {
	content: "";
	display: block;
	clear: both;
}

.tab-wrap .tabpanel-wrap [role="tabpanel"] {
	/* clearfix 以外のスタイル */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 25px 25px 15px;
	transition: all 0.5s ease-in;
	opacity: 0;
	/* border: 1px solid $color { top: 0; } を展開 */
}

.tab-wrap .tabpanel-wrap [role="tabpanel"][aria-hidden="false"] {
  position: static;
  opacity: 1;
}

.p-team__item {
  pointer-events: none;
}

.p-schedule--top__label {
	top: 20px;
}