@charset "UTF-8";
/*! kiso.css v1.2.1 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}
/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;

  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;

  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;

  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;

  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;

  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;

  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}
:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;

  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}
:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}
/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}
:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}
:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;

  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}
:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}
:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;

  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}
:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}
:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;

  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;

  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}
:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}
/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}
:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}
:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(input:is([type="radio" i], [type="checkbox" i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
:where(input[type="file" i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}
:where(input[type="search" i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}
@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type="tel" i], [type="url" i], [type="email" i], [type="number" i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;

  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}
:where(input:not([type="button" i], [type="submit" i], [type="reset" i]), textarea, [contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}
:where(button, input:is([type="button" i], [type="submit" i], [type="reset" i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}
:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i]),
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}
:where(
    button:enabled,
    label[for],
    select:enabled,
    input:is([type="button" i], [type="submit" i], [type="reset" i], [type="radio" i], [type="checkbox" i]):enabled,
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}
:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}
:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}
:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}
::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}
/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";

  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}
:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}
:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}
:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}
:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}
:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 30%);
}
:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}
/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}
[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}
/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}
[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}
@supports selector(::scroll-button(*)) {
  ::scroll-button(*) {
    /* Apply the same reset as for `<button>` elements. */
    border-width: 1px;
    border-style: solid;
    border-color: unset;
    border-radius: unset;
    background-color: unset;
    color: unset;
    font: unset;
    letter-spacing: unset;
    text-align: unset;
    touch-action: manipulation;
  }

  ::scroll-button(*):enabled {
    /* Make the scroll button indicate interactivity when enabled. */
    cursor: pointer;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
table {
  padding: 0;
}
table tr,
table td {
  padding: 0;
}
:root {
  --shadow-color: rgba(0, 0, 0, 0.16);
}
/* FontFamily */
/* font-weight */
html {
  font-size: 16px;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif, "meiryo", "メイリオ", sans-serif;
  font-weight: 400;
  color: #333;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-weight: 700;
}
@media screen and (min-width: 375px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .floating {
    bottom: 50px;
    right: 50px;
  }
}
.floating-button {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  transition: opacity 0.3s;
}
.floating-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.floating-button.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (any-hover: hover) {
  .floating-button:hover {
    opacity: 0.7;
  }
}
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.history-wrap {
  margin-block-start: 50px;
}
/* ---------------------------------------------
*   wrestling-section
--------------------------------------------- */
/* @media screen and (max-width: 768px) {
  .wrestling-section {
    padding-right: 3.75%;
    padding-left: 3.75%;
  }
} */
.wrestling-section__container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-bottom: 47px;
  margin-left: auto;
  /* width: 960px; */
  border-bottom: solid 1px #c6c0b5;
}
@media screen and (max-width: 768px) {
  .wrestling-section__container {
    margin-bottom: 10%;
    width: auto;
  }
}
.wrestling-section__head {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 5px 0 5px 15px;
  background-color: #8f836b;
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .wrestling-section__head {
    font-size: 1.07143rem !important;
  }
}
/* ---------------------------------------------
*   wrestling-history
--------------------------------------------- */
.wrestling-history {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.wrestling-history.is-opened {
  display: flex !important;
}
.wrestling-history.is-opened .wrestling-trigger__item {
  border-width: 0 4px 7px 4px;
  border-color: transparent transparent #000000 transparent;
}
@media screen and (max-width: 768px) {
  .wrestling-history.is-opened .wrestling-trigger__item {
    border-width: 0 3px 5px 3px;
  }
}
/* ---------------------------------------------
*   wrestling-trigger
--------------------------------------------- */
.wrestling-trigger {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 16px;
  border-top: solid 1px #c6c0b5;
  border-left: solid 1px #c6c0b5;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .wrestling-trigger {
    width: 7%;
  }
}
.is-opened .wrestling-trigger {
  background-color: #f0f0f0;
}
.wrestling-trigger__item {
  width: 0;
  height: 0;
  border-width: 7px 4px 0 4px;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .wrestling-trigger__item {
    border-width: 5px 3px 0 3px;
  }
}
.wrestling-trigger__item--first {
  border-width: 0 4px 7px 4px;
  border-color: transparent transparent #000000 transparent;
}
@media screen and (max-width: 768px) {
  .wrestling-trigger__item--first {
    border-width: 0 3px 5px 3px;
  }
}
/* ---------------------------------------------
*   wrestling-history-inner
--------------------------------------------- */
.wrestling-history-inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 944px;
  border-top: solid 1px #c6c0b5;
  border-right: solid 1px #c6c0b5;
  border-left: solid 1px #c6c0b5;
}
@media screen and (max-width: 768px) {
  .wrestling-history-inner {
    width: 92%;
  }
}
.is-opened:not(:first-of-type) .wrestling-history-inner {
  border-top: 0;
}
/* ---------------------------------------------
*   wrestling-history-table
--------------------------------------------- */
.wrestling-history-table {
  display: none;
}
.wrestling-history-table.is-opened {
  display: block !important;
}
.wrestling-history-table tr:nth-child(odd) {
  background-color: #fbfbfb;
}
.wrestling-history-table tr:nth-child(even) {
  background-color: #f6f4f1;
}
.wrestling-history-table table {
  width: 100%;
}
.wrestling-history-table tr {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  background-color: #ebebeb;
}
.wrestling-history-table th,
.wrestling-history-table td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  -webkit-box-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wrestling-history-table th {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .wrestling-history-table th {
    padding-top: 5%;
  }
}
.wrestling-history-table__head {
  padding-left: 12px;
  width: 90px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .wrestling-history-table__head {
    padding-left: 3%;
    width: 20%;
    font-size: 0.71429rem;
  }
}
.wrestling-history-table__content {
  padding-right: 10px;
  width: 300px;
  border-right: solid 1px #c6c0b5;
}
@media screen and (max-width: 768px) {
  .wrestling-history-table__content {
    width: 80%;
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .wrestling-history-table__member {
    display: none !important;
  }
}
/*  wrestling-history-list
--------------------------------------------- */
.wrestling-history-list {
  width: 100%;
  border-bottom: solid 1px #c6c0b5;
}
.wrestling-history:first-of-type tr:first-child .wrestling-history-list {
  border-top: none;
}
.is-opened tr:first-child .wrestling-history-list {
  border-top: solid 1px #c6c0b5;
}
.wrestling-history tr:last-child .wrestling-history-list {
  border-bottom: none;
}
.wrestling-history-list__item {
  text-align: left;
  padding: 20px 0px 20px 0;
  border-top: 1px solid #c6c0b5;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .wrestling-history-list__item {
    padding: 5% 0 5%;
    font-size: 0.8rem;
  }
}
.wrestling-history-list__item:first-child {
  border-top: none;
}
/*  wrestling-history-member
--------------------------------------------- */
.wrestling-history-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  padding-left: 24px;
  height: 100%;
  -webkit-box-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wrestling-history-member__item {
  position: relative;
  margin-left: 10px;
  width: 40px;
  text-align: center;
}
.wrestling-history-member__item:first-child {
  margin-left: 0;
}
.wrestling-history-member__item--triangle {
  margin-top: 40px;
}
.wrestling-history-member__item--triangle.wrestling-history-member__item--yellow:before {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 0 20px 20px 20px;
  border-style: solid;
  border-color: transparent transparent #f9f197 transparent;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.wrestling-history-member__item--triangle.wrestling-history-member__item--blue:before {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 0 20px 20px 20px;
  border-style: solid;
  border-color: transparent transparent #c4d8f4 transparent;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.wrestling-history-member__item--triangle.wrestling-history-member__item--red:before {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 0 20px 20px 20px;
  border-style: solid;
  border-color: transparent transparent #f4c4c4 transparent;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.wrestling-history-member__item--yellow {
  background-color: #f9f197;
}
.wrestling-history-member__item--blue {
  background-color: #c4d8f4;
}
.wrestling-history-member__item--red {
  background-color: #f4c4c4;
}
.wrestling-history-member__item--empty {
  background-color: transparent;
}
.wrestling-history-member__name {
  display: inline-block;
  margin-top: 10px;
  -ms-writing-mode: tb-rl;
  white-space: nowrap;
  font-size: 13px;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* ---------------------------------------------
*   history-head-trigger
--------------------------------------------- */
.history-head-trigger {
  cursor: pointer;
}
.is-opened .history-head-trigger {
  display: none;
}
.history-head-trigger__item {
  display: block;
  width: 100%;
  padding: 15px 0;
  background-color: #f0ebe5;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .history-head-trigger__item {
    padding: 5% 0;
    font-size: 0.8rem;
  }
}
.classtxt {
  font-size: 10px;
}
.his_img_top {
  margin-top: 8px;
}
.wrestling-history-list__item img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.his_txt {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .his_txt {
    font-size: 0.8rem;
  }
}
/* Splide基本CSS */
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
/* ---------------------------------------------
*   splide-slider デフォルトスタイルを上書きするためのファイル
--------------------------------------------- */
.splide__slide img {
  width: 100%;
}
.slide-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.slide-pagination__item {
  list-style: none;
  display: block;
  margin-block: 30px;
  width: 88px;
  height: 4px;
  background-color: #fff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .slide-pagination__item {
    margin-block: 10px;
  }
}
@media (any-hover: hover) {
  .slide-pagination__item:hover {
    opacity: 0.7;
  }
}
.slide-pagination__item.is-active {
  background-color: #d80c24;
}
/* ---------------------------------------------
*   member-gallery
--------------------------------------------- */
.member-gallery {
  padding: 80px 0;
  text-align: center;
}
.member-gallery__content {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .member-gallery__content {
    margin-top: 40px;
  }
}
/* ---------------------------------------------
*   gallery-splide
--------------------------------------------- */
.gallery-splide .splide__track {
  overflow: hidden;
}
.gallery-splide .splide__list {
  align-items: stretch;
}
.gallery-splide .splide__slide {
  width: 430px !important;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .gallery-splide .splide__slide {
    width: 350px !important;
  }
}
.gallery-splide .splide__slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .gallery-splide .splide__slide img:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0.7;
  }
}
.gallery-splide .splide__arrows .splide__arrow {
  background: none;
  width: 24px;
  height: 24px;
}
.gallery-splide .splide__arrows .splide__arrow--prev {
  left: -20px;
}
@media screen and (min-width: 768px) {
  .gallery-splide .splide__arrows .splide__arrow--prev {
    left: -36px;
  }
}
.gallery-splide .splide__arrows .splide__arrow--next {
  right: -20px;
}
@media screen and (min-width: 768px) {
  .gallery-splide .splide__arrows .splide__arrow--next {
    right: -36px;
  }
}
/* ---------------------------------------------
*   modal
--------------------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.modal.is-active {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}
.modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}
.modal__carousel {
  width: 80vw;
  max-width: 800px;
}
@media screen and (max-width: 374px) {
  .modal__carousel {
    width: 85vw;
  }
}
.modal__image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
}
/* モーダル内カルーセルのスタイル */
.modal-splide .splide__track {
  overflow: hidden;
}
.modal-splide .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.modal-splide .splide__arrows .splide__arrow {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .modal-splide .splide__arrows .splide__arrow:hover {
    opacity: 1;
  }
}
.modal-splide .splide__arrows .splide__arrow svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@media screen and (max-width: 374px) {
  .modal-splide .splide__arrows .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .modal-splide .splide__arrows .splide__arrow svg {
    width: 20px;
    height: 20px;
  }
}
.modal-splide .splide__arrows .splide__arrow--prev {
  left: -56px;
}
@media screen and (max-width: 374px) {
  .modal-splide .splide__arrows .splide__arrow--prev {
    left: 8px;
  }
}
.modal-splide .splide__arrows .splide__arrow--next {
  right: -56px;
}
@media screen and (max-width: 374px) {
  .modal-splide .splide__arrows .splide__arrow--next {
    right: 8px;
  }
}
.modal-splide .splide__pagination {
  bottom: -50px;
}
.modal-splide .splide__pagination .splide__pagination__page {
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.modal-splide .splide__pagination .splide__pagination__page.is-active {
  background-color: #fff;
}
.modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .modal__close:hover {
    opacity: 0.7;
  }
}
.modal__close svg {
  width: 24px;
  height: 24px;
}
.news-list__item {
  background-color: #fff;
  border-radius: 3px;
}
.news-list__item + .news-list__item {
  margin-block-start: 12px;
}
.news-list__item-link {
  padding: 12px 20px;
  display: block;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-list__item-link {
    display: flex;
    padding: 18px 32px;
    transition: color 0.3s;
  }
}
@media (any-hover: hover) {
  .news-list__item-link:hover {
    color: #d80c24;
  }
}
.news-list__item-link svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .news-list__item-link svg {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    margin-inline-start: auto;
  }
}
.news-list__time {
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .news-list__time {
    margin-inline-end: 10.8%;
  }
}
.news-list__title {
  font-size: 16px;
  font-weight: 500;
  margin-block-start: 8px;
  margin-inline-end: 20px;
}
@media screen and (min-width: 768px) {
  .news-list__title {
    margin-block-start: 0;
  }
}
/* ---------------------------------------------
*   共通
--------------------------------------------- */
html {
  scroll-padding-top: 52px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 112px;
  }
}
.main {
  background-color: #ebebeb;
  padding-block-start: 52px;
}
@media screen and (min-width: 768px) {
  .main {
    padding-block-start: 112px;
  }
}
.main.lower {
  background: #ebebeb
    url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='370'%20height='370'%20viewBox='0%200%20370%20370'%3e%3cdefs%3e%3cstyle%3e%20.cls-1,%20.cls-3%20{%20fill:%20%23fff;%20}%20.cls-1%20{%20stroke:%20%23707070;%20}%20.cls-2%20{%20clip-path:%20url(%23clip-path);%20}%20%3c/style%3e%3cclipPath%20id='clip-path'%3e%3crect%20id='長方形_510'%20data-name='長方形%20510'%20class='cls-1'%20width='370'%20height='370'%20transform='translate(911%20113)'/%3e%3c/clipPath%3e%3c/defs%3e%3cg%20id='マスクグループ_16'%20data-name='マスクグループ%2016'%20class='cls-2'%20transform='translate(-911%20-113)'%3e%3cg%20id='グループ_1746'%20data-name='グループ%201746'%20transform='translate(829.755%2025.16)'%3e%3cpath%20id='パス_256'%20data-name='パス%20256'%20class='cls-3'%20d='M203.6,13.479,898.935,706.133v-5.779L209.165,7.915Z'/%3e%3cpath%20id='パス_257'%20data-name='パス%20257'%20class='cls-3'%20d='M174.514,12.1,898.935,733.721v-5.554L180.079,6.53Z'/%3e%3cpath%20id='パス_258'%20data-name='パス%20258'%20class='cls-3'%20d='M145.428,10.71l753.506,750.6v-5.329L150.993,5.145Z'/%3e%3cpath%20id='パス_259'%20data-name='パス%20259'%20class='cls-3'%20d='M232.684,14.864l666.25,663.68v-6L238.25,9.3Z'/%3e%3cpath%20id='パス_260'%20data-name='パス%20260'%20class='cls-3'%20d='M261.77,16.249,898.934,650.955v-6.228L267.335,10.684Z'/%3e%3cpath%20id='パス_261'%20data-name='パス%20261'%20class='cls-3'%20d='M290.856,17.633,898.935,623.365v-6.452L296.422,12.068Z'/%3e%3cpath%20id='パス_262'%20data-name='パス%20262'%20class='cls-3'%20d='M34.258,0,29.086,5.172,898.935,871.666v-4.43L35.04,0Z'/%3e%3cpath%20id='パス_263'%20data-name='パス%20263'%20class='cls-3'%20d='M3.788,0,0,3.788,898.934,899.255v-4.206L7.334,0Z'/%3e%3cpath%20id='パス_264'%20data-name='パス%20264'%20class='cls-3'%20d='M116.342,9.326,898.934,788.9v-5.1L121.907,3.761Z'/%3e%3cpath%20id='パス_265'%20data-name='パス%20265'%20class='cls-3'%20d='M58.172,6.557l840.763,837.52v-4.655L63.736.992Z'/%3e%3cpath%20id='パス_266'%20data-name='パス%20266'%20class='cls-3'%20d='M87.257,7.942,898.935,816.488v-4.879L92.822,2.377Z'/%3e%3cpath%20id='パス_267'%20data-name='パス%20267'%20class='cls-3'%20d='M610.8,32.863,898.935,319.888v-8.924L616.363,27.3Z'/%3e%3cpath%20id='パス_268'%20data-name='パス%20268'%20class='cls-3'%20d='M319.941,19.017l578.993,576.76V589.1L325.507,13.452Z'/%3e%3cpath%20id='パス_269'%20data-name='パス%20269'%20class='cls-3'%20d='M523.541,28.709,898.935,402.655V394.4L529.106,23.144Z'/%3e%3cpath%20id='パス_270'%20data-name='パス%20270'%20class='cls-3'%20d='M494.456,27.324,898.935,430.243v-8.025L500.02,21.759Z'/%3e%3cpath%20id='パス_271'%20data-name='パス%20271'%20class='cls-3'%20d='M639.883,34.247,898.935,292.3V283.15L645.448,28.682Z'/%3e%3cpath%20id='パス_272'%20data-name='パス%20272'%20class='cls-3'%20d='M581.712,31.478l317.222,316v-8.7L587.276,25.913Z'/%3e%3cpath%20id='パス_273'%20data-name='パス%20273'%20class='cls-3'%20d='M552.626,30.094,898.934,375.067v-8.476L558.191,24.529Z'/%3e%3cpath%20id='パス_274'%20data-name='パス%20274'%20class='cls-3'%20d='M349.027,20.4,898.934,568.188v-6.9L354.592,14.837Z'/%3e%3cpath%20id='パス_275'%20data-name='パス%20275'%20class='cls-3'%20d='M378.112,21.786,898.935,540.6v-7.127L383.677,16.222Z'/%3e%3cpath%20id='パス_276'%20data-name='パス%20276'%20class='cls-3'%20d='M436.284,24.556l462.65,460.866v-7.576L441.849,18.991Z'/%3e%3cpath%20id='パス_277'%20data-name='パス%20277'%20class='cls-3'%20d='M407.2,23.171,898.935,513.01v-7.351L412.764,17.606Z'/%3e%3cpath%20id='パス_278'%20data-name='パス%20278'%20class='cls-3'%20d='M465.369,25.94,898.934,457.832v-7.8l-428-429.657Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")
    no-repeat top right/370px 370px;
}
.inner {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 20px;
}
.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
}
.is-mobile {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-mobile {
    display: block;
  }
}
.is-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
.-color {
  color: #d80c24;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header__container {
  display: grid;
  grid-template-columns: auto 26px;
  align-items: center;
  max-width: 1900px;
  margin: 0 auto;
  padding: 6px 18px;
}
@media screen and (min-width: 768px) {
  .header__container {
    grid-template-columns: 1fr auto 1fr;
    padding: 13px 20px 13px 20px;
  }
}
.header__logo {
  display: none;
  padding-top: 6px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    display: block;
  }
}
.header__logo-link {
  display: block;
  width: 120px;
}
.header__logo-link img {
  height: auto;
}
.header__title {
  text-align: center;
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header__title:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .header__title {
    padding-inline: 26px 18px;
    margin: 0 auto;
  }
}
.header__title-main {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #d80c24;
  margin-bottom: 4px;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .header__title-main {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .header__title-main {
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 1.2;
  }
}
.header__title-sub {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .header__title-sub {
    font-size: 10px;
    margin-bottom: 6px;
  }
}
.header__menu {
  justify-self: end;
  align-self: center;
}
.header__menu-btn {
  position: relative;
  width: 26px;
  height: 18px; /* 中央線を含めた高さ */
  background: none;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .header__menu-btn {
    width: 40px;
    height: 24px;
  }
}

.header__menu-btn span,
.header__menu-btn::before,
.header__menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #b50b0b;
  transition: transform 0.3s, opacity 0.3s;
}

@media screen and (min-width: 768px) {
  .header__menu-btn span,
  .header__menu-btn::before,
  .header__menu-btn::after {
    height: 4px;
  }
}

.header__menu-btn::before {
  top: 0;
}

.header__menu-btn span {
  top: 50%;
  transform: translateY(-50%);
}

.header__menu-btn::after {
  bottom: 0;
}

/* アクティブ時のアニメーション */
.header__menu-btn.is-active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__menu-btn.is-active span {
  opacity: 0;
}

.header__menu-btn.is-active::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* .header__menu-btn {
  position: relative;
  width: 26px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__menu-btn {
    width: 40px;
    height: 20px;
  }
}
.header__menu-btn::before,
.header__menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #b50b0b;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .header__menu-btn::before,
  .header__menu-btn::after {
    height: 4px;
  }
}
.header__menu-btn::before {
  top: 0;
}
.header__menu-btn::after {
  bottom: 0;
}
.header__menu-btn.is-active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__menu-btn.is-active::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
} */
.header__menu-btn-txt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.header__nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #b50b0b;
  transition: right 0.3s ease-in-out;
  z-index: 200;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .header__nav {
    position: static;
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    background-color: transparent;
    overflow: visible;
    right: 0;
    transition: none;
  }
}
.header__nav.is-open {
  right: 0;
}
.header__nav-list {
  background-color: #b50b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 8vw, 100px);
}
.header__nav-item {
  position: relative;
}
.header__nav-link {
  position: relative;
  display: block;
  padding: 5px 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header__nav-link {
    display: block;
    padding: 20px 0;
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    opacity: 0.7;
  }
}
.header__nav-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 767px) {
  .header__nav-dropdown {
    position: static;
    display: block;
    min-width: auto;
    background-color: transparent;
    box-shadow: none;
    margin-top: 10px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header__nav-item:hover .header__nav-dropdown {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-dropdown-list {
  padding-block: 12px;
}
@media screen and (max-width: 767px) {
  .header__nav-dropdown-list {
    padding: 0;
  }
}
.header__nav-dropdown-item + .header__nav-dropdown-item {
  margin-block-start: 16px;
}
.header__nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 15px;
  font-size: 14px;
  font-weight: 700;
  color: #d80c24;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .header__nav-dropdown-link {
    padding: 10px 0;
    color: #d80c24;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .header__nav-dropdown-link svg path {
    transition: fill 0.3s;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .header__nav-dropdown-link:hover {
    color: #333;
    opacity: 1;
  }
  .header__nav-dropdown-link:hover svg path {
    fill: #333;
  }
}
.header__nav-dropdown-link svg {
  width: 12px;
  height: 12px;
  margin-left: 10px;
}
.header__drawer {
  position: fixed;
  top: 56px;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  transition: right 0.3s ease-in-out;
  z-index: 200;
  overflow-y: auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header__drawer {
    top: 57px;
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .header__drawer {
    top: 80px;
  }
}
.header__drawer.is-open {
  right: 0;
}
.header__drawer-list {
  background-color: #b50b0b;
  padding: 24px 24px 50px;
}
.header__drawer-item {
  border-bottom: 1px solid #fff;
}
.header__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header__drawer-link:hover {
    opacity: 0.7;
  }
}
.header__drawer-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header__drawer-footer {
  padding: 40px 32px;
  margin-top: auto;
}
.header__drawer-footer-link {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header__drawer-footer-link:hover {
    opacity: 0.7;
  }
}
.header__drawer-footer-link img {
  flex-shrink: 0;
}
.header__drawer-footer-link span {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__drawer-footer-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.footer {
  background-color: #333;
  color: #fff;
  padding-block-start: 40px;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    flex-direction: row;
  }
}
.footer__logo {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}
.footer__logo.-color {
  color: #d80c24;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    text-align: left;
  }
}
.footer__logo-ja {
  font-size: 12px;
  font-weight: 500;
  margin-block-start: 10px;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    flex-basis: calc(100% - 200px);
    margin-top: 30px;
  }
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    max-width: 12em;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav-list {
    gap: 52px;
    flex-direction: row;
    justify-content: center;
    gap: 6.5326633166%;
  }
}
.footer__nav-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    font-size: 16px;
  }
}
.footer__nav-link + .footer__nav-link {
  margin-block-start: 20px;
}
.footer__nav-sub-list {
  margin-block-start: 4px;
}

.footer__nav-sub-item {
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer__nav-sub-item {
    margin-bottom: 0.5em;
  }
}
.footer__nav-sub-link {
  line-height: 1.2;
  font-size: 14px;
  color: #acacac;
}
.footer__main-logo {
  margin-block-start: 44px;
  text-align: center;
}
.footer__main-logo-link {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .footer__main-logo-link:hover {
    opacity: 0.7;
  }
}
.footer__main-logo-link img {
  width: 144px;
}
.footer__main-logo-txt {
  font-size: 14px;
  font-weight: 500;
  margin-block-start: 10px;
}
.footer__copyright {
  margin-block-start: 28px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding-block: 18px;
}
/* ----------------------------------- */
/* パンくずリスト                       */
/* ----------------------------------- */
.breadcrumb {
  padding-block: 12px;
  margin-block-end: 30px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding-block: 16px;
  }
}
.breadcrumb-list {
  display: flex;
}
.breadcrumb-list__item:not(:last-child)::after {
  content: ">";
  margin-inline: 10px;
}
.breadcrumb-list__link {
  color: #d80c24;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .breadcrumb-list__link {
    font-size: 15px;
  }
}
.breadcrumb-list__link.current {
  color: #333;
  pointer-events: none;
}
.breadcrumb-list__link:not(.current) {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.breadcrumb-list__link:not(.current):hover {
  text-decoration: none;
  opacity: 0.7;
}
.main-title {
  text-align: center;
}
.main-title.-light .main-title-en,
.main-title.-light .main-title-ja {
  color: #fff;
}
.main-title-en {
  font-size: 32px;
  font-style: italic;
  font-weight: 900;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .main-title-en {
    font-size: 50px;
  }
}
.main-title-ja {
  margin-block-start: 4px;
  color: #d80c24;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .main-title-ja {
    font-size: 16px;
  }
}
.sub-title {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: auto 2px;
  padding-block-end: 20px;
}
@media screen and (min-width: 768px) {
  .sub-title {
    font-size: 30px;
  }
}
.sub-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) skew(-42deg);
  width: 128px;
  height: 7px;
  background: repeating-linear-gradient(90deg, #d80c24, #d80c24 4px, transparent 2px, transparent 10px);
}
.sub-title-ja {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .sub-title-ja {
    font-size: 30px;
  }
}
.sub-title-en {
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sub-title-en {
    font-size: 30px;
  }
}
.button {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: calc(infinity * 1px);
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 12px 14px 12px 20px;
  }
}
.button svg path {
  transition: fill 0.3s;
}
.button--primary {
  background-color: #d80c24;
  border: 1px solid #d80c24;
}
@media (any-hover: hover) {
  .button--primary:hover {
    background-color: #fff;
    color: #d80c24;
  }
  .button--primary:hover svg path {
    fill: #d80c24;
  }
}
.button--secondary {
  background-color: #a2a2a2;
  border: 1px solid #a2a2a2;
}
@media (any-hover: hover) {
  .button--secondary:hover {
    background-color: #fff;
    color: #a2a2a2;
  }
  .button--secondary:hover svg path {
    fill: #a2a2a2;
  }
}
/* ---------------------------------------------
*   TOP
--------------------------------------------- */
/*  news
--------------------------------------------- */
.top-news {
  background: url("/wrestling/assets/images/index/bg_news.png") no-repeat top 50px center/100% auto;
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding-block: 40px 80px;
  }
}
@media screen and (min-width: 768px) {
  .top-news {
    background-position: center 108px;
    background-size: 1160px 544px;
    padding-block: 72px 126px;
  }
}
.news-wrapper {
  margin-block-start: 42px;
}
.news-wrapper + .news-wrapper {
  margin-block-start: 38px;
}
.news-wrapper__tag {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 6px;
  width: 175px;
  margin-inline: auto;
  text-align: center;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
@media screen and (max-width: 768px) {
  .news-wrapper__tag {
    font-size: 14px;
    width: 130px;
  }
}

.news-wrapper__tag.-primary {
  background-color: #d80c24;
}
.news-wrapper__tag.-secondary {
  background-color: #a2a2a2;
}
.news-buttons {
  margin-block-start: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-buttons {
    flex-direction: row;
    gap: 36px;
  }
}
.news-buttons__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 290px;
}
.news-buttons__button.button--primary {
  padding-inline-start: 40px;
}
/*  schedule
--------------------------------------------- */
.top-schedule {
  position: relative;
  background-color: #e3e3e3;
  padding-block: 60px 100px;
}
.top-schedule::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 0;
  width: 100%;
  height: 28px;
  background: url("/wrestling/assets/images/common/bg_parallelogram.png") repeat-x center center/100% auto;
}
@media screen and (min-width: 768px) {
  .top-schedule::before {
    top: -20px;
  }
}
.top-schedule::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 28px;
  background: url("/wrestling/assets/images/common/bg_parallelogram.png") repeat-x center center/100% auto;
}
@media screen and (min-width: 768px) {
  .top-schedule::after {
    bottom: -20px;
  }
}
.schedule-wrapper {
  margin-block-start: 52px;
}
.column-list {
  display: grid;
}
.column-list.column2 {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .column-list.column2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.column-list__item {
  background-color: #fff;
  border-radius: 3px;
}
.schedule-item {
  height: 100%;
  padding: 24px;
  box-shadow: 0 3px 6px 0 var(--shadow-color);
}
.schedule-item__name {
  font-size: 17px;
  font-weight: 700;
  padding-block-end: 14px;
  border-bottom: 1px solid #a2a2a2;
}
.schedule-item__info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.schedule-item__info {
  padding-block: 14px;
}
.schedule-item__info + .schedule-item__info {
  border-top: 1px solid #a2a2a2;
  padding-block-end: 0;
}
.schedule-item__info-heading {
  font-size: 14px;
  font-weight: 500;
  color: #a2a2a2;
  margin-block-end: 6px;
}
.schedule-item__info-text {
  font-size: 15px;
  font-weight: 700;
}
.schedule-item__link-item {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.member-link {
  text-align: center;
  transition: opacity 0.3s;
}
.member-link img {
  width: 77px;
  border-radius: 3px;
  margin-block-end: 10px;
}
@media (any-hover: hover) {
  .member-link:hover {
    opacity: 0.7;
  }
  .member-link:hover .member-link__text {
    text-decoration: none;
  }
}
.member-link__text {
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
}
.member-link__text_day {
  font-size: 14px;
}
.schedule-button {
  margin-block-start: 62px;
}
.schedule-button__button {
  width: 290px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline-start: 78px;
}
/*  Corporate heering
--------------------------------------------- */
.heering {
  background: url("/wrestling/assets/images/index/bg_heering.png") no-repeat center center/cover;
  padding-block: 80px 160px;
}
@media screen and (min-width: 768px) {
  .heering {
    padding-block: 146px 200px;
  }
}
.heering .column-list.flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .heering .column-list.flex {
    gap: 6.5%;
    flex-direction: row;
  }
}
.heering__item {
  flex-basis: 43.4%;
}
.heering__text {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-block-start: 24px;
}
.heering__image {
  position: relative;
  flex-basis: 44%;
}
@media screen and (min-width: 768px) {
  .heering__image {
    margin-block-start: 30px;
  }
}
.heering__image::before {
  content: "";
  position: absolute;
  bottom: -112px;
  right: -20px;
  width: 236px;
  height: 208px;
  background: url("/wrestling/assets/images/index/cheer-clio.svg") no-repeat center center/100% auto;
}
@media screen and (min-width: 768px) {
  .heering__image::before {
    bottom: -54px;
    right: -114px;
  }
}
@media screen and (max-width: 1180px) {
  .heering__image::before {
    right: -20px;
  }
}
.heering__image img {
  border-radius: 3px;
}
/*  Social contribution
--------------------------------------------- */
.social {
  position: relative;
  padding-block: 80px;
  background-color: #ebebeb;
}
@media screen and (min-width: 768px) {
  .social {
    padding-block: 142px 130px;
  }
}
.social::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 0;
  width: 100%;
  height: 28px;
  background: url("/wrestling/assets/images/common/bg_parallelogram-l.png") repeat-x center center/100% auto;
}
@media screen and (min-width: 768px) {
  .social::before {
    top: -20px;
  }
}
.social__image {
  margin-block-start: 62px;
  border-radius: 3px;
}
.social-button {
  margin-block-start: 62px;
}
.social-button__button {
  width: 290px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline-start: 95px;
}
.social-contribution-txt {
  margin-top: 0.5em;
  line-height: 1.75em;
}
/* ---------------------------------------------
*   about
--------------------------------------------- */
.about-first-view {
  padding-block: 0 30px;
}
@media screen and (max-width: 768px) {
  .about-first-view {
    padding-block: 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .about-first-view {
    padding-block: 0 30px;
  }
}
.about-first-view__content {
  margin-block-start: 62px;
  padding-inline-end: 100px;
  background: url("/wrestling/assets/images/about/img_uniform.png") no-repeat bottom right/94px 223px;
}
@media screen and (min-width: 768px) {
  .about-first-view__content {
    min-height: 460px;
    background: url("/wrestling/assets/images/about/img_uniform.png") no-repeat top 8px right 35px/198px 446px;
    padding-inline: 8.1730769231vw 33.6538461538vw;
  }
}
@media screen and (min-width: 1040px) {
  .about-first-view__content {
    padding-inline: 85px 350px;
  }
}
.about-first-view__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-first-view__title {
    padding-block-start: 52px;
  }
}
.about-first-view__title img {
  width: 514px;
  height: auto;
}
.about-first-view__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  margin-block-start: 36px;
}
@media screen and (min-width: 768px) {
  .about-first-view__text {
    margin-block-start: 59px;
  }
}
@media screen and (min-width: 1040px) {
  .about-first-view__text {
    padding-inline: 32px;
  }
}
.about-section {
  padding-block: 58px;
  text-align: center;
}
.about-section + .about-section {
  padding-block-start: 28px;
}
.about-section__text {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  margin-block-start: 40px;
}
/* ---------------------------------------------
*   member
--------------------------------------------- */
.member-slide-wrapper {
  padding-block: 0 30px;
}
@media screen and (max-width: 768px) {
  .member-slide-wrapper {
    padding-block: 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .member-slide-wrapper {
    padding-block: 0 30px;
  }
}
.member-slider {
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .member-slider {
    margin-block-start: 72px;
  }
}
.member {
  padding-block: 20px;
  text-align: center;
}
.member + .member {
  margin-block-start: 40px;
}
.member:last-child {
  padding-block-end: 147px;
}
@media screen and (min-width: 768px) {
  .member {
    padding-block: 80px;
  }
  .member + .member {
    margin-block-start: 28px;
  }
}
.member-list {
  margin-block-start: 56px;
  display: flex;
  justify-content: center;
  gap: 7.8%;
}

.member-list__item {
  flex-basis: 28.2%;
}
@media (max-width: 768px) {
  .member-list {
    flex-wrap: wrap;
    gap: 20px;
  }

  .member-list__item {
    flex-basis: calc(50% - 10px); /* gapの影響を考慮 */
  }
  .member-list__item:last-child {
    margin-top: 1em;
  }
}
.member-list__link {
  display: block;
}
@media (any-hover: hover) {
  .member-list__link:hover .member-list__img img {
    transform: scale(1.1);
  }
}
.member-list__img {
  width: 100%;
  max-width: 282px;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-block-end: 28px;
}
.member-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.member-list__role {
  font-size: 16px;
  margin-block-end: 8px;
}
@media screen and (min-width: 768px) {
  .member-list__role {
    margin-block-end: 20px;
    font-size: 22px;
  }
}
.member-list__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .member-list__name {
    font-size: 26px;
  }
}
.member-list__name-color {
  margin-block-start: 4px;
  display: block;
  color: #d80c24;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .member-list__name-color {
    font-size: 17px;
  }
}
/* ---------------------------------------------
*   member-single
--------------------------------------------- */
.member-single__section {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .member-single__section {
    margin-block-start: 75px;
  }
}
@media screen and (max-width: 768px) {
  .member-single__section {
    margin-block-start: 50px;
  }
}
/* ---------------------------------------------
*   member-profile
--------------------------------------------- */
.member-profile-wrap {
  margin-block-start: 40px;
  display: grid;
  grid-template-columns: 1fr;
  padding-block-end: 36px;
}
@media screen and (min-width: 768px) {
  .member-profile-wrap {
    grid-template-columns: 11fr 14fr;
    margin-block-start: 72px;
  }
}
.member-profile-slide {
  position: relative;
  flex-basis: 50%;
}
.member-profile-slide img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.member-profile-slide .slide-pagination {
  justify-content: flex-start;
  width: 100%;
  height: 4px;
  margin-block: 16px;
  list-style: none;
}
.member-profile-slide .slide-pagination .presentation {
  margin-block: 0;
  list-style: none;
}
.member-profile-slide .slide-pagination .slide-pagination__item {
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .member-profile-slide .slide-pagination {
    position: absolute;
    bottom: -32px;
    left: 0;
  }
}
.member-profile {
  background-color: #fff;
  padding: 44px 32px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .member-profile {
    margin-top: 30px;
  }
}
.member-profile__title {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.member-profile__title-ja {
  display: block;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .member-profile__title-ja {
    font-size: 30px;
  }
}
.member-profile__title-sub {
  display: block;
  font-size: 12px;
  color: #d80c24;
}
@media screen and (min-width: 768px) {
  .member-profile__title-sub {
    font-size: 15px;
  }
}
.member-profile__content {
  margin-block-start: 28px;
}
.member-profile__content-item {
  padding-block: 14px;
  display: flex;
  gap: 18px;
  border-bottom: 1px solid #ebebeb;
}
.member-profile__content-item-title {
  flex-basis: 140px;
  font-size: 14px;
  font-weight: 700;
}
.member-profile__content-item-value {
  font-size: 15px;
  font-weight: 500;
}
.member-profile__text {
  margin-block-start: 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.sns-list {
  margin-block-start: 28px;
  display: flex;
  gap: 10px;
}
.sns-list__item {
  display: block;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}
.sns-list__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (any-hover: hover) {
  .sns-list__item:hover {
    opacity: 0.7;
  }
}
/*  result
--------------------------------------------- */
.result {
  text-align: center;
  margin-block-start: 40px;
  padding-block-end: 50px;
}
@media screen and (min-width: 768px) {
  .result {
    margin-block-start: 88px;
  }
}
.coach .result {
  margin-block-start: 0;
}
.result-year {
  overflow: hidden;
}
.result-year + .result-year {
  margin-block-start: 36px;
}
.result-year summary {
  font-size: 20px;
  font-weight: 500;
  background-color: #a2a2a2;
  color: #fff;
  padding: 12px 24px;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: opacity 0.3, background-color 0.3s;
}
/* @media (any-hover: hover) {
  .result-year summary:hover {
    opacity: 0.7;
  }
} */
.result-year summary::before,
.result-year summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 52%;
  width: 14px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.result-year summary::before {
  transform: translateY(-50%) translateX(-5px) rotate(45deg);
}
.result-year summary::after {
  transform: translateY(-50%) translateX(5px) rotate(-45deg);
}
.result-year .result-year-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.result-year[open] summary {
  background-color: #d80c24;
}
.result-year[open] summary::before,
.result-year[open] summary::after {
  width: 24px;
  right: 24px;
}
.result-year[open] summary::before {
  transform: translateY(-50%) rotate(45deg);
}
.result-year[open] summary::after {
  transform: translateY(-50%) rotate(-45deg);
}
.result__content {
  margin-block-start: 40px;
}
.coach .result__content {
  margin-block-start: 0;
}
.result-year-content {
  margin-block-start: 6px;
}
.result-item {
  text-align: left;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .result-item {
    padding: 16px 40px;
    font-size: 15px;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr 1fr 1fr;
  }
  .coach .result-item {
    grid-template-columns: 60px 3fr 1fr;
    gap: 60px;
  }
}
.result-item + .result-item {
  margin-block-start: 4px;
}
.result-rank {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .result-item {
    gap: 5px;
    font-size: 12px;
  }
  .result-period {
    width: 5em;
  }
  .result-location {
    width: 5.5em;
  }
  .result-category {
    width: 3.5em;
  }
  .result-rank {
    text-align: right;
    width: 2.5em;
  }
  .result-competition {
    display: block;
    width: 10em;
  }
}

.kantoku .result-item > *:last-child {
  margin-left: auto;
}
.kantoku .result-period {
  width: auto;
  min-width: 5em;
}

.kantoku .result-rank {
  width: auto;
  min-width: 2em;
}
.kantoku .result-competition {
  width: auto;
}
@media screen and (max-width: 768px) {
  .kantoku .result-item {
    font-size: 12px;
    gap: 0.5em;
  }
  .kantoku .result-period {
    width: 5em;
  }
}

a.result-competition {
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  a.result-competition:hover {
    opacity: 0.7;
  }
}
/*  question
--------------------------------------------- */
.question {
  padding-block: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .question {
    padding-block: 50px 95px;
  }
}
.question__content {
  margin-block-start: 50px;
}
.question-list {
  gap: 10px 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .question-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.question-list__item {
  flex-basis: calc(50% - 15px);
}
.question-list__item dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 3px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  min-height: 80px;
}
@media screen and (min-width: 768px) {
  .question-list__item dl {
    height: auto;
    font-size: 18px;
  }
}
.question-list__item-title {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 140px;
  color: #fff;
  background-color: #d80c24;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .question-list__item-title {
    font-size: 17px;
    flex-direction: row;
    text-align: center;
    align-items: center;
    padding: 10px 20px 10px 40px;
    justify-content: center;
  }
}
.question-list__item-title::before {
  content: "Q.";
  font-size: 17px;
  position: static;
  transform: none;
  margin-block-end: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .question-list__item-title::before {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }
}
.question-list__item-answer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: #d80c24;
  background-color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .question-list__item-answer {
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 10px 40px;
  }
}
.question-list__item-answer::before {
  content: "A.";
  font-size: 17px;
  margin-block-end: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .question-list__item-answer::before {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }
}
.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .message {
    gap: 7%;
    margin-block-start: 88px;
    flex-direction: row;
  }
}
.message img {
  max-width: 200px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .message img {
    max-width: 222px;
    flex-basis: 222px;
  }
}
.message__balloon {
  min-height: 148px;
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 3px;
  text-align: left;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .message__balloon {
    padding: 30px 40px;
    flex-basis: calc(100% - 222px - 7%);
  }
  .message__balloon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 39px;
    height: 34px;
    clip-path: polygon(0 49%, 100% 100%, 100% 0);
    background-color: #fff;
  }
}
.message__title {
  color: #d80c24;
  font-size: 20px;
  font-weight: 700;
  margin-block-end: 14px;
}
.message__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
/*  other-member
--------------------------------------------- */
.other-member {
  background-color: #fff;
  padding-block: 62px 44px;
  text-align: center;
}
.other-member__title {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-block-end: 24px;
}
@media screen and (min-width: 768px) {
  .other-member__title {
    margin-block-end: 44px;
  }
}
.other-member-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.other-member-list__link {
  display: block;
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .other-member-list__link:hover .other-member-list__image img {
    transform: scale(1.1);
  }
}
.other-member-list__image {
  border-radius: 50%;
  max-width: 115px;
  overflow: hidden;
}
.other-member-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.other-member-list__name {
  margin-block-start: 14px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.other-member__button {
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .other-member__button {
    margin-block-start: 52px;
  }
}
.other-member__button-link {
  width: 265px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline-start: 62px;
}
/* ---------------------------------------------
*   schedule
--------------------------------------------- */
.schedule-section {
  padding-block: 30px;
}
@media screen and (min-width: 1040px) {
  .schedule-section {
    padding-block: 42px 134px;
  }
}
.schedule-section__content {
  /* max-width: 600px; */
  margin-inline: auto;
}
@media screen and (min-width: 1040px) {
  .schedule-section__content {
    max-width: 1000px;
  }
}
.schedule-section__title {
  font-size: 20px;
  font-weight: 700;
}
.schedule-list {
  background-color: #fff;
  border-radius: 3px;
  margin-block-start: 10px;
}
.schedule-list__item {
  font-size: 15px;
  font-weight: 500;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto 120px;
  gap: 8px 12px;
  border-bottom: 1px solid #a2a2a2;
}
@media screen and (max-width: 768px) {
  .schedule-list__item {
    grid-template-columns: auto 58px;
  }
}
.schedule-list__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1040px) {
  .schedule-list__item {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
  }
}
.schedule-list__item.-heading {
  font-weight: 700;
  display: none;
}
@media screen and (min-width: 1040px) {
  .schedule-list__item.-heading {
    display: flex;
  }
}
.schedule-list__item-date {
  text-align: left;
  grid-area: 1/1/2/2;
}
@media screen and (min-width: 1040px) {
  .schedule-list__item-date {
    flex-shrink: 0;
    margin-inline-end: 5.1063829787%;
    width: 210px;
  }
}
.schedule-list__item-title {
  text-align: left;
  grid-area: 2/1/3/2;
}
@media screen and (min-width: 1040px) {
  .schedule-list__item-title {
    flex-shrink: 0;
    margin-inline-end: 5.1063829787%;
    width: 300px;
  }
}
.schedule-list__item-place {
  text-align: left;
  margin-inline-end: 2.1276595745%;
  grid-area: 3/1/4/2;
}
.schedule-list__item-result {
  margin-inline: auto;
  text-align: center;
  grid-area: 1/2/4/3;
  align-self: center;
}
@media screen and (min-width: 1040px) {
  .schedule-list__item-result {
    width: 68px;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
.schedule-list__item-result-link {
  color: #fff;
  background-color: #d80c24;
  border: 1px solid #d80c24;
  font-weight: 700;
  display: block;
  padding: 2px 14px;
  border-radius: calc(infinity * 1px);
  transition: color 0.3s, background-color 0.3s;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .schedule-list__item-result-link {
    font-size: 15px;
    padding: 4px 18px;
    width: 120px;
  }
}
@media screen and (min-width: 1040px) {
  .schedule-list__item-result-link {
    width: 68px;
  }
}
@media (any-hover: hover) {
  .schedule-list__item-result-link:hover {
    background-color: #fff;
    color: #d80c24;
  }
}
.schedule-list__item-result-link[disabled] {
  background-color: #a2a2a2;
  border: 1px solid #a2a2a2;
  pointer-events: none;
}
/* ---------------------------------------------
*   social-contribution
--------------------------------------------- */
.social-contribution-section {
  padding-block: 30px 72px;
  text-align: center;
}
@media screen and (min-width: 1040px) {
  .social-contribution-section {
    padding-block: 72px 50px;
  }
}
.social-contribution-section__contents {
  margin-block-start: 40px;
}
.social-contribution-section__img {
  margin-block-end: 40px;
  border-radius: 5px;
}
.social-contribution-section__text {
  text-align: left;
  font-size: 16px;
  line-height: 2;
}
.social-contribution-section__text + .social-contribution-section__text {
  margin-block-start: 2.4em;
}
.social-contribution-section__button {
  width: 290px;
  margin-inline: auto;
  margin-block-start: 30px;
}
@media screen and (min-width: 768px) {
  .social-contribution-section__button {
    margin-block-start: 26px;
  }
}
.social-contribution-section__button .button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-inline-start: 60px;
}
.secial-contribution-sub-section {
  text-align: left;
}
.secial-contribution-sub-section + .secial-contribution-sub-section {
  margin-block-start: 72px;
}
.secial-contribution-sub-section__title {
  font-size: 19px;
  font-weight: 700;
  margin-block-end: 20px;
}
@media screen and (min-width: 768px) {
  .secial-contribution-sub-section__title {
    font-size: 23px;
  }
}
.social-contribution-sub-section__button {
  width: 326px;
  margin-inline: auto;
  margin-block-start: 30px;
}
@media screen and (min-width: 768px) {
  .social-contribution-sub-section__button {
    margin-block-start: 40px;
  }
}
.social-contribution-sub-section__button .button {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.social-contribution-sub-section__contents {
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .social-contribution-sub-section__contents {
    grid-template-columns: 30% auto;
    gap: 5.5%;
  }
}
.social-contribution-sub-section__contents img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  margin-block-end: 0;
}
.social-contribution-sub-section__contents + .social-contribution-sub-section__contents {
  margin-block-start: 72px;
}
@media screen and (min-width: 768px) {
  .social-contribution-sub-section__contents + .social-contribution-sub-section__contents {
    margin-block-start: 80px;
  }
}
.social-contribution-sub-section__contents.-community {
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .social-contribution-sub-section__contents.-community {
    margin-block: 72px 80px;
  }
}
.social-contribution-sub-section__contents-item .name {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .social-contribution-sub-section__contents-item .name {
    font-size: 20px;
  }
}
.social-contribution-sub-section__contents-item .role {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin-block-start: 6px;
}
@media screen and (min-width: 768px) {
  .social-contribution-sub-section__contents-item .role {
    font-size: 16px;
  }
}
.social-contribution-sub-section__box {
  background-color: #fff;
  border-radius: 3px;
  padding: 18px 24px;
  margin-block-start: 24px;
}
.social-contribution-sub-section__box-title {
  font-size: 15px;
  font-weight: 700;
  margin-block-end: 6px;
}
.social-contribution-sub-section__box-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
/* ---------------------------------------------
*   activity
--------------------------------------------- */
.activity {
  padding-block: 30px 72px;
  text-align: center;
}
@media screen and (min-width: 1040px) {
  .activity {
    padding-block: 72px 134px;
  }
}
.news-contents {
  margin-block-start: 62px;
  padding-block-end: 62px;
}
@media screen and (min-width: 768px) {
  .news-contents {
    margin-block-start: 72px;
    padding-block-end: 108px;
  }
}
.past-archive {
  margin-block-start: 14px;
}
/* ---------------------------------------------
*   news-single
--------------------------------------------- */
.news-single {
  padding-block: 30px 72px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news-single {
    padding-block: 0 50px;
  }
}
.news-single-content {
  font-size: 16px;
  line-height: 1.75;
}
.news-single__body {
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}
.news-single__body h2 {
  font-size: 20px;
  font-weight: 700;
  padding-block: 20px;
  border-block: 1px solid #d80c24;
  text-align: center;
  margin-block-end: 62px;
}
.news-single__body .column {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-single__body dl {
  margin-block: 48px;
}
.news-single__body dl div {
  display: flex;
  align-items: center;
}
.news-single__body dl div + div {
  margin-block-start: 10px;
}
.news-single__body dl dt {
  font-weight: 700;
  flex-basis: 70px;
}
.news-single__body .news-single__text + .news-single__text {
  margin-block-start: 1.5em;
}
.news-single__info {
  margin-block-start: 40px;
  margin-block-end: 32px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .news-single__info {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-block-start: 62px;
  }
}
.news-single__tag {
  background-color: #d80c24;
  color: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .news-single__tag {
    font-size: 17px;
  }
}
.news-gallery {
  margin-block-start: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .news-gallery {
    margin-block-start: 60px;
  }
}
.news-gallery figure {
  flex-basis: calc(50% - 10px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-gallery figure {
    flex-basis: calc(100%);
    text-align: center;
  }
}

.news-gallery figcaption {
  margin-block-start: 10px;
}
.news-gallery-full {
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .news-gallery-full {
    margin-block-start: 68px;
  }
}
.news-gallery-full figure {
  text-align: center;
}
.news-gallery-full figure img {
  width: 100%;
}
.news-gallery-full figcaption {
  margin-block-start: 10px;
}
.news-single__button {
  width: 290px;
  margin-inline: auto;
  margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .news-single__button {
    margin-block-start: 72px;
  }
}
.news-single__button .button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-inline-start: 98px;
}

/* --- スライド --- */
.wrsx-slider {
  width: 100%;
  margin: 0 auto;
}
.wrsx-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
}
@supports not (aspect-ratio: 16 / 9) {
  .wrsx-viewport::before {
    content: "";
    display: block;
    padding-top: calc(9 / 16 * 100%);
  }
  .wrsx-slide {
    position: absolute;
    inset: 0;
  }
}
.wrsx-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
  pointer-events: none;
}
.wrsx-slide--active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.wrsx-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wrsx-pagination {
  text-align: center;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .wrsx-pagination {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.wrsx-dot {
  appearance: none;
  border: none;
  width: 32px;
  height: 4px;
  margin: 0 4px;
  background: #fff;
  cursor: pointer;

  transition: background-color 0.3s;
  padding: 0;
}
.wrsx-dot--active {
  background: #d60000;
}
.wrsx-dot:focus-visible {
  outline: 2px solid #d60000;
  outline-offset: 2px;
}

/* --- プロフィール --- */
.member-profile-slide .wrsx-pagination {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .member-profile-slide .wrsx-pagination {
    position: absolute;
    bottom: -32px;
    left: 0;
  }
}
