@charset "UTF-8";
:root {
  --container-width: 1200px;
  --container-narrow-width: 1080px;
  --breakout-size: calc((100vw - var(--container-width)) / 2);
  --base-color-text: #171818;
  --base-color-main: #3993CC;
  --base-color-accent: #DB9512;
  --base-color-warning: #B50000;
  --base-color-grey: #707070;
  --base-color-lightgrey: #F8F8F8;
  --base-color-white: #FDFDFD;
  --base-gradient-main: linear-gradient(90deg,rgba(58, 139, 191, 1) 0%, rgba(58, 139, 191, 1) 34.48%, rgba(138, 208, 231, 1) 100%);
  --base-font: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --base-eng-font: "Roboto", sans-serif;
  --base-awesome: "Font Awesome 6 Free";
  --font-size1: 2.5rem;
  --font-size2: 2.0rem;
  --font-size3: 1.75rem;
  --font-size4: 1.625rem;
  --font-size5: 1.5rem;
  --font-size6: 1.375rem;
  --font-size7: 1.25rem;
  --base-animation: all 0.3s ease-in-out;
}

/*
 * text scroll
 */
@keyframes marquee-animation {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
/*
 * background animation
 */
@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
/*
 * fade in animation
 */
.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-top {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/*
 * delay animation
 */
.fade-in-delay-1 {
  transition-delay: 0.2s;
}

.fade-in-delay-2 {
  transition-delay: 0.4s;
}

.fade-in-delay-3 {
  transition-delay: 0.6s;
}

.fade-in-delay-4 {
  transition-delay: 0.8s;
}

.fade-in-delay-5 {
  transition-delay: 1s;
}

.fade-in-delay-6 {
  transition-delay: 1.2s;
}

/*
 * text animation
 */
.text-fade-in {
  opacity: 0;
}

.text-fade-in.active {
  opacity: 1;
}

.text-fade-in .char {
  display: inline-block;
  opacity: 0;
  animation: fadeInChar 0.5s ease-out forwards;
}

@keyframes fadeInChar {
  to {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  min-height: 100%;
  font-size: 1.0625rem;
  line-height: 1.8;
}
body.is-fixed {
  overflow: hidden;
}

.wrap {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 960px) {
  .wrap {
    padding: 0 1.25rem;
  }
}

.wrap-narrow {
  width: 100%;
  max-width: var(--container-narrow-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 960px) {
  .wrap-narrow {
    padding: 0 1.25rem;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.mt0 {
  margin-top: 0 !important;
}

/* Section title
--------------------------------------------- */
.section-title {
  display: block;
}
.section-title h2 {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}
.section-title h2 span,
.section-title h2 code {
  display: block;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 700;
  letter-spacing: 0.05rem;
}

/* Section title
--------------------------------------------- */
h2.block-title {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}
h2.block-title span,
h2.block-title code {
  display: block;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 700;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 600px) {
  h2.block-title span,
  h2.block-title code {
    font-size: var(--font-size2);
  }
}

.lined-title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.lined-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0.75rem;
  width: 100%;
  height: 1px;
  background-color: var(--base-color-grey);
}
.lined-title__text {
  position: relative;
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}
.lined-title__text.bg-white {
  background-color: var(--base-color-white);
}
.lined-title__text.bg-grey {
  background-color: var(--base-color-lightgrey);
}
.lined-title__text span,
.lined-title__text code {
  display: block;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 700;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 600px) {
  .lined-title__text span,
  .lined-title__text code {
    font-size: var(--font-size2);
  }
}
.lined-title__link {
  align-self: flex-end;
  padding-bottom: 1.25rem;
}
.lined-title__link a {
  display: inline-block;
  position: relative;
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
}
.lined-title__link a:hover::after {
  right: -0.25rem;
}
.lined-title__link a::after {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 4px;
  right: 0;
  width: 22px;
  height: 5px;
  margin-left: 0.625rem;
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

/* Header
--------------------------------------------- */
/* Hamburger menu
--------------------------------------------- */
.c-gnav {
  display: none;
}

.l-header__inner {
  max-width: none !important;
}
.l-header__menuBtn {
  display: block !important;
  position: fixed;
  top: 0.5rem;
  right: 15px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--base-color-main);
  border-radius: 50%;
}
@media screen and (min-width: 960px) {
  .l-header__menuBtn {
    top: 1.25rem;
    right: 48px;
    width: 55px;
    height: 55px;
  }
}
.l-header__menuBtn .c-iconBtn i {
  color: var(--base-color-main);
  font-size: var(--font-size4);
}
@media screen and (min-width: 960px) {
  .l-header__menuBtn .c-iconBtn i {
    font-size: var(--font-size2);
  }
}

.p-spMenu {
  display: block !important;
}
.p-spMenu__inner {
  width: 100vw;
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 6.25rem;
  background: var(--base-gradient-main);
}
@media screen and (min-width: 960px) {
  .p-spMenu__inner {
    padding-top: 16px;
    padding-bottom: 2.5rem;
  }
}
.p-spMenu__inner::before {
  background: transparent !important;
}
.p-spMenu__logo {
  display: block;
  margin-left: -16px;
}
@media screen and (min-width: 960px) {
  .p-spMenu__logo {
    margin-left: 0;
  }
}
.p-spMenu__logo img {
  width: auto;
  height: 35px;
}
@media screen and (min-width: 960px) {
  .p-spMenu__logo img {
    height: 55px;
  }
}
.p-spMenu__nav {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 600px) {
  .p-spMenu__nav {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}
.p-spMenu__item-title {
  color: var(--base-color-white);
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-spMenu__list {
  width: 100%;
  margin-top: 0.25rem;
}
.p-spMenu__list li {
  position: relative;
  line-height: 1.8;
}
.p-spMenu__list li::before {
  content: "-";
  display: inline-block;
  position: relative;
  margin-right: 0.25rem;
  color: var(--base-color-white);
  font-size: 0.9375rem;
  font-weight: 400;
}
.p-spMenu__list a {
  color: var(--base-color-lightgrey);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: var(--base-animation);
}
.p-spMenu__list a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}

.-right .p-spMenu__inner {
  transform: translateX(0);
  opacity: 0;
  transition: opacity 0.45s;
}
.-right .p-spMenu__closeBtn {
  top: 0.5rem;
  right: 15px;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 960px) {
  .-right .p-spMenu__closeBtn {
    top: 1.25rem;
    right: 48px;
    width: 55px;
    height: 55px;
  }
}
.-right .p-spMenu__closeBtn .c-iconBtn i {
  color: var(--base-color-white);
  font-size: var(--font-size4);
}
@media screen and (min-width: 960px) {
  .-right .p-spMenu__closeBtn .c-iconBtn i {
    font-size: var(--font-size2);
  }
}

/* ハンバーガーがクリックされた時の動き */
[data-spmenu=opened] .c-iconBtn {
  width: 100%;
  height: 100%;
  background-color: transparent;
}
[data-spmenu=opened] .c-iconBtn::before, [data-spmenu=opened] .c-iconBtn::after {
  top: auto;
  background-color: var(--base-color-white);
  transition: transform 0.3s;
}
[data-spmenu=opened] .c-iconBtn::before {
  transform: rotate(45deg);
}
[data-spmenu=opened] .c-iconBtn::after {
  transform: rotate(135deg);
}

[data-spmenu=opened] .p-spMenu__inner {
  transform: translateX(0);
  opacity: 1;
}

/* Footer
--------------------------------------------- */
.l-footer {
  background-color: var(--base-color-text);
}
.l-footer__inner {
  padding-top: 6.25rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 600px) {
  .l-footer__inner {
    padding-top: 3.75rem;
    padding-bottom: 1.25rem;
  }
}
.l-footer__head {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .l-footer__head {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.l-footer__foot {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .l-footer__foot {
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}
.l-footer-menu {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 960px) {
  .l-footer-menu {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 600px) {
  .l-footer-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
.l-footer-menu__item h3 {
  color: var(--base-color-white);
  font-size: var(--font-size7);
  font-family: var(--base-eng-font);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-footer-menu__list {
  width: 100%;
  margin-top: 0.25rem;
}
.l-footer-menu__list li {
  position: relative;
  line-height: 1.6;
}
.l-footer-menu__list li::before {
  content: "-";
  display: inline-block;
  position: relative;
  margin-right: 0.25rem;
  color: var(--base-color-white);
  font-size: 0.9375rem;
  font-weight: 400;
}
.l-footer-menu__list a {
  color: var(--base-color-lightgrey);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: var(--base-animation);
}
.l-footer-menu__list a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.l-footer-info {
  display: block;
  width: 284px;
}
@media screen and (max-width: 960px) {
  .l-footer-info {
    margin-inline: auto;
  }
}
@media screen and (max-width: 600px) {
  .l-footer-info {
    width: 200px;
    margin-inline: auto;
  }
}
.l-footer-info img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer-sub {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .l-footer-sub {
    width: 100%;
  }
}
.l-footer-sub__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 600px) {
  .l-footer-sub__list {
    justify-content: center;
  }
}
.l-footer-sub__list a {
  color: var(--base-color-lightgrey);
  font-size: 0.875rem;
  font-weight: 400;
  transition: var(--base-animation);
}
.l-footer-sub__list a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.l-footer .copyright {
  color: var(--base-color-white);
  font-size: 0.875rem;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 600px) {
  .l-footer .copyright {
    width: 100%;
    margin-top: 0.625rem;
    text-align: center;
  }
}

/* page header
--------------------------------------------- */
.l-topTitleArea {
  position: relative;
  min-height: 360px;
}
@media screen and (max-width: 600px) {
  .l-topTitleArea {
    min-height: 320px;
  }
}

.c-pageTitle {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-pageTitle__subTitle {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 600px) {
  .c-pageTitle__subTitle {
    font-size: var(--font-size2);
  }
}

/* post content
--------------------------------------------- */
.post_content .wp-block-heading code {
  border: none;
  background: transparent;
}
.post_content .wp-block-heading.lined-title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.post_content .wp-block-heading.lined-title__text {
  position: relative;
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}
.post_content .wp-block-heading.lined-title__text.bg-white {
  background-color: var(--base-color-white);
}
.post_content .wp-block-heading.lined-title__text.bg-grey {
  background-color: var(--base-color-lightgrey);
}
.post_content .wp-block-heading.lined-title__text code {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 600px) {
  .post_content .wp-block-heading.lined-title__text code {
    font-size: var(--font-size2);
  }
}
.post_content p {
  line-height: 1.8;
}
.post_content li,
.post_content dt,
.post_content dd {
  line-height: 1.8;
}

/* sidebar
--------------------------------------------- */
.l-sidebar {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem 3.75rem;
  width: 100%;
  margin: 6.25rem 0 0 0;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .l-sidebar {
    grid-template-columns: 1fr;
  }
}
.l-sidebar .c-widget {
  margin-top: 0 !important;
}
.l-sidebar .c-widget .p-postList__body {
  display: block !important;
}
.l-sidebar .c-widget .p-postList__title {
  width: 100%;
}
.l-sidebar .c-widget .p-postList__meta {
  width: 100%;
  margin-top: 0.5rem;
}
.l-sidebar .widget_swell_new_posts {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 960px) {
  .l-sidebar .widget_swell_new_posts {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.l-sidebar .widget_categories {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 960px) {
  .l-sidebar .widget_categories {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.l-sidebar .widget_archive {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 960px) {
  .l-sidebar .widget_archive {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}

/* single content
--------------------------------------------- */
.s-mainContent {
  position: relative;
}
.s-mainContent .c-postTitle__ttl {
  margin-bottom: 0.625rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dotted var(--base-color-grey);
  font-size: var(--font-size3);
  text-align: center;
}
@media screen and (max-width: 600px) {
  .s-mainContent .c-postTitle__ttl {
    font-size: var(--font-size5);
    text-align: left;
  }
}
.s-mainContent .p-articleMetas {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s-mainContent .p-toc {
  border-top: 6px solid var(--base-color-main);
  border-bottom: none;
  background-color: var(--base-color-lightgrey);
}
.s-mainContent .post_content h2 {
  position: relative;
  color: var(--base-color-main);
  font-size: var(--font-size5);
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .s-mainContent .post_content h2 {
    font-size: var(--font-size7);
  }
}
.s-mainContent .post_content h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--base-color-main);
}
.s-mainContent .post_content h3 {
  margin: 4em 0 1.25rem 0;
  padding: 1.25rem 0.9325rem;
  border-top: 1px solid var(--base-color-grey);
  border-bottom: 1px solid var(--base-color-grey);
  font-size: var(--font-size6);
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .s-mainContent .post_content h3 {
    font-size: var(--font-size7);
  }
}
.s-mainContent .event_content iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
  margin: 0;
  border: none;
}

/* related posts
--------------------------------------------- */
.l-articleBottom__title {
  margin: 2.5rem 0;
  padding: 1.25rem 0.9325rem;
  border-top: 1px solid var(--base-color-grey);
  border-bottom: 1px solid var(--base-color-grey);
  font-size: var(--font-size6);
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .l-articleBottom__title {
    font-size: var(--font-size7);
  }
}

.p-relatedPosts {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
  width: 100%;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 960px) {
  .p-relatedPosts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-relatedPosts {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-relatedNews {
  border-top: 1px solid hsla(0, 0%, 78%, 0.5);
}
.p-relatedNews .p-postList__link {
  display: block;
  padding: 1em 0.25em;
  border-bottom: 1px solid hsla(0, 0%, 78%, 0.5);
}
.p-relatedNews .p-postList__meta {
  margin-top: 0 !important;
}

/* event
--------------------------------------------- */
.s-event__link .swell-block-button__link {
  max-width: 345px;
  margin-inline: auto;
}

/* members voice
--------------------------------------------- */
.s-members-voice__link {
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border: none;
  border-top: 1px solid var(--base-color-grey);
}
.s-members-voice__link .swell-block-button__link {
  max-width: 345px;
  margin-inline: auto;
}

/*
@use "archive";
@use "notfound";
*/
/* activity
--------------------------------------------- */
.c-activity {
  position: relative;
  margin-top: 5rem;
}
@media screen and (max-width: 600px) {
  .c-activity {
    margin-top: 2.5rem;
  }
}
.c-activity__inner {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 960px) {
  .c-activity__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1.25rem;
    padding: 0 !important;
  }
}
.c-activity__item a {
  display: block;
  line-height: 0;
}
.c-activity__item a:hover img {
  transform: scale(1.0625);
}
.c-activity__item figure {
  position: relative;
  overflow: hidden;
}
.c-activity__item figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.c-activity__item figure figcaption {
  display: block;
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 1.2;
}
.c-activity__item figure figcaption span {
  display: block;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.c-activity__item.futsal {
  grid-column: 1/3;
  grid-row: 1/3;
}
@media screen and (max-width: 960px) {
  .c-activity__item.futsal {
    grid-row: 1/2;
  }
}
.c-activity__item.daily {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (max-width: 960px) {
  .c-activity__item.daily {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.c-activity__item.ifleague {
  grid-column: 4/5;
  grid-row: 1/2;
}
@media screen and (max-width: 960px) {
  .c-activity__item.ifleague {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.c-activity__item.tournaments {
  grid-column: 3/5;
  grid-row: 2/3;
}
@media screen and (max-width: 960px) {
  .c-activity__item.tournaments {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}
.c-activity__item.liberdade {
  grid-column: 1/3;
  grid-row: 3/4;
}
@media screen and (max-width: 960px) {
  .c-activity__item.liberdade {
    grid-column: 1/3;
    grid-row: 4/5;
  }
}
.c-activity__item.yoga {
  grid-column: 3/4;
  grid-row: 3/4;
}
@media screen and (max-width: 960px) {
  .c-activity__item.yoga {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
.c-activity__item.lecture {
  grid-column: 4/5;
  grid-row: 3/4;
}
@media screen and (max-width: 960px) {
  .c-activity__item.lecture {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}

/* blog list
--------------------------------------------- */
.blog-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3.75rem;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .blog-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.blog-list__item {
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: var(--base-color-white);
}
@media screen and (max-width: 480px) {
  .blog-list__item {
    max-width: none;
  }
}
.blog-list__item a {
  display: block;
  width: 100%;
  color: var(--base-color-text);
}
.blog-list__item a:hover img {
  transform: scale(1.0625);
}
.blog-list__item-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  aspect-ratio: 3/2;
}
.blog-list__item-thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.blog-list__item-thumb figcaption {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.25rem 0.5rem;
  background: var(--base-color-text);
  color: var(--base-color-white);
  font-size: 0.9325rem;
  font-weight: 500;
}
.blog-list__item-thumb figcaption.futsal {
  background-color: var(--base-color-main);
}
.blog-list__item-thumb figcaption.yoga {
  background-color: var(--base-color-accent);
}
.blog-list__item-thumb figcaption.tournament {
  background-color: var(--base-color-warning);
}
.blog-list__item-thumb figcaption.conference {
  background-color: var(--base-color-accent);
}
.blog-list__item-text {
  width: 100%;
  padding: 0.9325rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .blog-list__item-text {
    padding: 0.9325rem;
  }
}
.blog-list__item-text aside time,
.blog-list__item-text aside span {
  color: var(--base-color-text);
  font-size: 0.9325rem;
  font-family: var(--base-eng-font);
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
}
.blog-list__item-text aside span {
  margin-left: 0.625rem;
}
.blog-list__item-text h3 {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
}

.p-breadcrumb__list {
  flex-wrap: wrap;
}

.single .p-breadcrumb__item:last-child > span.p-breadcrumb__text {
  display: block !important;
  opacity: 1;
  white-space: pre-wrap;
}

/* Button
--------------------------------------------- */
.link-btn {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.9375rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .link-btn {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}
.link-btn.btn-white {
  padding: 0.9375rem 4rem 0.9375rem 2.5rem;
  background-color: var(--base-color-white);
  color: var(--base-color-text);
  text-align: left;
}
.link-btn.btn-white:hover {
  background-color: var(--base-color-main);
  color: var(--base-color-white);
}
.link-btn.btn-white:hover::after {
  border: 1px solid var(--base-color-white);
  background-color: var(--base-color-white);
  color: var(--base-color-text);
}
.link-btn.btn-white::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 24px;
  height: 24px;
  border: 1px solid var(--base-color-text);
  border-radius: 50%;
  font-size: 0.75rem;
  font-family: var(--base-awesome);
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

/* Block button
--------------------------------------------- */
.swell-block-button .swell-block-button__link {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.9375rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .swell-block-button .swell-block-button__link {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}
.swell-block-button.btn-white .swell-block-button__link {
  width: 100%;
  padding: 0.9375rem 4rem 0.9375rem 2.5rem;
  background-color: var(--base-color-white);
  color: var(--base-color-text);
  text-align: left;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .swell-block-button.btn-white .swell-block-button__link {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}
.swell-block-button.btn-white .swell-block-button__link:hover {
  background-color: var(--base-color-main);
  color: var(--base-color-white);
}
.swell-block-button.btn-white .swell-block-button__link:hover::after {
  border: 1px solid var(--base-color-white);
  background-color: var(--base-color-white);
  color: var(--base-color-text);
}
.swell-block-button.btn-white .swell-block-button__link::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 24px;
  height: 24px;
  border: 1px solid var(--base-color-text);
  border-radius: 50%;
  font-size: 0.75rem;
  font-family: var(--base-awesome);
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.swell-block-button.btn-primary .swell-block-button__link {
  width: 100%;
  padding: 0.9375rem 4rem 0.9375rem 2.5rem;
  background: var(--base-color-main);
  color: var(--base-color-white);
  text-align: left;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .swell-block-button.btn-primary .swell-block-button__link {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}
.swell-block-button.btn-primary .swell-block-button__link:hover {
  background: var(--base-color-main);
  color: var(--base-color-white);
}
.swell-block-button.btn-primary .swell-block-button__link:hover::after {
  border: 1px solid var(--base-color-white);
  background: var(--base-color-white);
  color: var(--base-color-main);
}
.swell-block-button.btn-primary .swell-block-button__link::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 24px;
  height: 24px;
  border: 1px solid var(--base-color-white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-family: var(--base-awesome);
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

/* contact
--------------------------------------------- */
.c-contact {
  position: relative;
  padding-top: 6rem;
  background-color: var(--base-color-white);
}
@media screen and (max-width: 600px) {
  .c-contact {
    padding-top: 2.5rem;
  }
}
.c-contact__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  padding: 3.75rem;
  background: var(--base-gradient-main);
}
@media screen and (max-width: 960px) {
  .c-contact__inner {
    flex-wrap: wrap;
    padding: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-contact__inner {
    padding: 1.25rem;
  }
}
.c-contact__text {
  width: calc(100% - 345px - 2.5rem);
}
@media screen and (max-width: 960px) {
  .c-contact__text {
    width: 100%;
  }
}
.c-contact__text .section-title h2 {
  color: var(--base-color-white);
}
.c-contact__text p {
  margin-top: 2.5rem;
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 400;
}
.c-contact__links {
  width: 345px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .c-contact__links {
    width: 100%;
  }
}
.c-contact__link {
  width: 100%;
  margin-top: 1.875rem;
}
.c-contact__link:first-of-type {
  margin-top: 0;
}
.c-contact__link .link-btn {
  width: 100%;
  max-width: 345px;
}

/* event list
--------------------------------------------- */
.event-list__item {
  width: 100%;
  max-width: 320px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: var(--base-color-white);
}
@media screen and (max-width: 480px) {
  .event-list__item {
    max-width: none;
  }
}
.event-list__item a {
  display: block;
  width: 100%;
  color: var(--base-color-text);
}
.event-list__item a:hover img {
  transform: scale(1.0625);
}
.event-list__item-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  aspect-ratio: 3/2;
}
.event-list__item-thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.event-list__item-thumb figcaption {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.25rem 0.5rem;
  background: var(--base-color-text);
  color: var(--base-color-white);
  font-size: 0.9325rem;
  font-weight: 500;
}
.event-list__item-thumb figcaption.futsal {
  background-color: var(--base-color-main);
}
.event-list__item-thumb figcaption.yoga {
  background-color: var(--base-color-accent);
}
.event-list__item-thumb figcaption.event {
  background-color: var(--base-color-text);
}
.event-list__item-text {
  width: 100%;
  padding: 0.9325rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .event-list__item-text {
    padding: 0.9325rem;
  }
}
.event-list__item-text aside time,
.event-list__item-text aside span {
  color: var(--base-color-text);
  font-size: 0.9325rem;
  font-family: var(--base-eng-font);
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
}
.event-list__item-text aside span {
  margin-left: 0.625rem;
}
.event-list__item-text h3 {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
}
.event-list__item-text .place {
  margin-top: 0.5rem;
  color: var(--base-color-text);
  font-size: 0.9325rem;
  font-family: var(--base-eng-font);
  font-weight: 500;
  text-align: right;
}

/* snow monkery form
--------------------------------------------- */
.snow-monkey-form {
  width: 100%;
  max-width: 880px;
}
.snow-monkey-form .smf-item__col--label {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0 !important;
}
.snow-monkey-form .smf-item__col--controls {
  margin-top: 0.625rem;
}
.snow-monkey-form .smf-item__label {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
}
.snow-monkey-form .smf-item__description {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 !important;
  padding: 0 4px;
  background-color: var(--base-color-warning);
  color: var(--base-color-white);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: 1px;
}
.snow-monkey-form .smf-item__controls {
  color: var(--base-color-text);
  font-size: 1.0625rem;
}
.snow-monkey-form .smf-item__controls input[type=text],
.snow-monkey-form .smf-item__controls input[type=email],
.snow-monkey-form .smf-item__controls input[type=tel] {
  width: 100%;
  padding: 0.9325rem;
  border: 1px solid var(--base-color-grey);
  border-radius: 4px;
  color: var(--base-color-text);
  font-size: 1.0625rem;
}
.snow-monkey-form .smf-item__controls .smf-textarea-control__control {
  width: 100%;
  padding: 0.9325rem;
  border: 1px solid var(--base-color-grey);
  border-radius: 4px;
  color: var(--base-color-text);
  font-size: 1.0625rem;
}
.snow-monkey-form .smf-item__controls .smf-radio-button-control,
.snow-monkey-form .smf-item__controls .smf-checkbox-control {
  align-items: center !important;
}
.snow-monkey-form .smf-item__controls input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 0 !important;
  border-radius: 50%;
  vertical-align: -10px;
}
.snow-monkey-form .smf-item__controls input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--base-color-main);
  transform: translate(-50%, -50%);
}
.snow-monkey-form .smf-item__controls input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  vertical-align: -6px;
}
.snow-monkey-form .smf-item__controls input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--base-color-main);
  border-bottom: 2px solid var(--base-color-main);
  transform: rotate(40deg) skewY(10deg) translateY(-50%);
  transform-origin: center right;
}
.snow-monkey-form .smf-item__controls .smf-select-control__control {
  width: 100%;
  min-width: 320px;
  padding: 0.75rem 0.9325rem;
  border: 1px solid var(--base-color-grey);
  border-radius: 4px;
  color: var(--base-color-text);
  font-size: 1.0625rem;
}
.snow-monkey-form .smf-item__controls .smf-error-messages {
  color: var(--base-color-warning);
  font-size: 0.9325rem;
  font-weight: 500;
}

.smf-action .smf-button-control__control {
  display: block;
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.9325rem 0 0.75rem 0;
  border-radius: 0;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.smf-action .smf-button-control__control[data-action=confirm], .smf-action .smf-button-control__control[data-action=complete] {
  border: 2px solid var(--base-color-main);
  background: var(--base-color-main);
  color: var(--base-color-white);
}
.smf-action .smf-button-control__control[data-action=confirm]:hover, .smf-action .smf-button-control__control[data-action=complete]:hover {
  border: 2px solid var(--base-color-main);
  background-color: var(--base-color-main);
  color: var(--base-color-white);
}

/* members list
--------------------------------------------- */
.members-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
}
@media screen and (max-width: 960px) {
  .members-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .members-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .members-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.members-list__item {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .members-list__item {
    max-width: none;
  }
}
.members-list__item a {
  display: block;
  width: 100%;
  color: var(--base-color-text);
}
.members-list__item a:hover img {
  transform: scale(1.0625);
}
.members-list__item-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  aspect-ratio: 1/1;
}
.members-list__item-thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.members-list__item-thumb figcaption {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.25rem 0.5rem;
  background: var(--base-color-main);
  color: var(--base-color-white);
  font-size: 0.9325rem;
  font-weight: 500;
}
.members-list__item-text {
  width: 100%;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .members-list__item-text {
    padding: 0.625rem;
  }
}
.members-list__item-text h3 {
  display: block;
  width: 100%;
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
}

/* report list
--------------------------------------------- */
.report-list__item {
  width: 100%;
  max-width: 320px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: var(--base-color-white);
}
@media screen and (max-width: 480px) {
  .report-list__item {
    max-width: none;
  }
}
.report-list__item a {
  display: block;
  width: 100%;
  color: var(--base-color-text);
}
.report-list__item a:hover img {
  transform: scale(1.0625);
}
.report-list__item-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  aspect-ratio: 3/2;
}
.report-list__item-thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.report-list__item-thumb figcaption {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.25rem 0.5rem;
  background: var(--base-color-text);
  color: var(--base-color-white);
  font-size: 0.9325rem;
  font-weight: 500;
}
.report-list__item-text {
  width: 100%;
  padding: 0.9325rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .report-list__item-text {
    padding: 0.9325rem;
  }
}
.report-list__item-text time {
  color: var(--base-color-text);
  font-size: 0.9325rem;
  font-family: var(--base-eng-font);
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (max-width: 600px) {
  .report-list__item-text time {
    display: block;
    width: 100%;
  }
}
.report-list__item-text h3 {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.6;
}

/* topics list
--------------------------------------------- */
.p-postList__item .c-postTimes__posted {
  width: 84px;
}
.p-postList__item .c-postTimes__posted::before {
  content: "";
  display: none;
}
.p-postList__item .p-postList__cat {
  padding: 0.25rem 0.625rem;
  background-color: var(--base-color-text);
  color: var(--base-color-white);
}
.p-postList__item .p-postList__cat::before {
  content: "";
  display: none;
}
.p-postList__body {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem 0.625rem;
}
@media screen and (max-width: 600px) {
  .p-postList__body {
    flex-wrap: wrap;
  }
}
.p-postList__meta {
  width: 164px;
}
.p-postList__title {
  width: calc(100% - 164px);
  font-size: 0.9325rem !important;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .p-postList__title {
    width: 100%;
  }
}

/* main visual
--------------------------------------------- */
.f-mv {
  position: relative;
  width: 100%;
  height: 75vh;
  background: linear-gradient(45deg, rgb(58, 139, 191) 0%, rgb(58, 139, 191) 22%, rgb(138, 208, 231) 42%, rgb(234, 250, 212) 67%, rgb(204, 221, 186) 82%, rgb(95, 149, 37) 100%) 0/200% 100%;
  animation: bg-gradient 5s linear infinite alternate;
}
@media screen and (max-width: 600px) {
  .f-mv {
    height: 100vw;
  }
}
.f-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.f-mv__copy {
  position: absolute;
  top: 0;
  left: 20vw;
  width: 40vw;
  height: 100%;
  padding-top: 11.2vh;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .f-mv__copy {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.36);
  }
}
.f-mv__copy::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  opacity: 0.2;
  width: 40vw;
  height: 100%;
  background-image: url(../img/front/mv-logo.svg);
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .f-mv__copy::after {
    width: 100vw;
  }
}
.f-mv__copy h2 {
  color: var(--base-color-white);
  font-size: 3.6vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .f-mv__copy h2 {
    font-size: 7.2vw;
  }
}
.f-mv__copy-title {
  width: 50%;
  height: auto;
  margin-inline: auto;
}
.f-mv-photo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.f-mv-photo__item {
  position: absolute;
  overflow: hidden;
}
.f-mv-photo__item * {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.f-mv-photo #photo01 {
  top: 0;
  left: 0;
  width: 20vw;
  height: 40%;
}
@media screen and (max-width: 960px) {
  .f-mv-photo #photo01 {
    top: 0;
    left: 0;
    width: 50vw;
    height: 30%;
  }
}
.f-mv-photo #photo01 * {
  background-image: url(../img/front/mv_01.webp);
}
.f-mv-photo #photo02 {
  top: 40%;
  left: 0;
  width: 20vw;
  height: 60%;
}
@media screen and (max-width: 960px) {
  .f-mv-photo #photo02 {
    top: 0;
    right: 0;
    left: auto;
    width: 50vw;
    height: 35%;
  }
}
.f-mv-photo #photo02 * {
  background-image: url(../img/front/mv_02.webp);
}
.f-mv-photo #photo03 {
  top: 0;
  right: 15vw;
  width: 25vw;
  height: 60%;
}
@media screen and (max-width: 960px) {
  .f-mv-photo #photo03 {
    top: 30%;
    left: 0;
    width: 50vw;
    height: 40%;
  }
}
.f-mv-photo #photo03 * {
  background-image: url(../img/front/mv_03.webp);
}
.f-mv-photo #photo04 {
  top: 60%;
  right: 15vw;
  width: 25vw;
  height: 40%;
}
@media screen and (max-width: 960px) {
  .f-mv-photo #photo04 {
    top: 35%;
    right: 0;
    width: 50vw;
    height: 40%;
  }
}
.f-mv-photo #photo04 * {
  background-image: url(../img/front/mv_04.webp);
}
.f-mv-photo #photo05 {
  top: 0;
  right: 0;
  width: 15vw;
  height: 45%;
}
@media screen and (max-width: 960px) {
  .f-mv-photo #photo05 {
    top: 70%;
    left: 0;
    width: 50vw;
    height: 30%;
  }
}
.f-mv-photo #photo05 * {
  background-image: url(../img/front/mv_05.webp);
}
.f-mv-photo #photo06 {
  top: 45%;
  right: 0;
  width: 15vw;
  height: 55%;
}
@media screen and (max-width: 960px) {
  .f-mv-photo #photo06 {
    top: 75%;
    right: 0;
    width: 50vw;
    height: 25%;
  }
}
.f-mv-photo #photo06 * {
  background-image: url(../img/front/mv_06.webp);
}

/* topics
--------------------------------------------- */
.f-topics {
  position: relative;
}
.f-topics-title .lined-title__link {
  margin-top: 2.5rem;
}

/* schedule
--------------------------------------------- */
.f-schedule {
  width: 100vw;
  margin-top: 5rem;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
@media screen and (max-width: 600px) {
  .f-schedule {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .f-schedule {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}
.f-schedule .splide__track {
  padding-bottom: 0.625rem;
}
.f-schedule-join {
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2.5rem;
  width: 100%;
  margin-top: 3.75rem;
  padding: 2rem 3.75rem;
  background-color: var(--base-color-text);
}
@media screen and (max-width: 960px) {
  .f-schedule-join {
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
  }
}
.f-schedule-join__text {
  position: relative;
  width: calc(100% - 284px);
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .f-schedule-join__text {
    width: 100%;
    padding-bottom: 5rem;
    text-align: center;
  }
}
.f-schedule-join__text::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--base-color-white);
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .f-schedule-join__text::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translate(-50%, 0);
  }
}
.f-schedule-join__text code {
  position: relative;
  z-index: 1;
  padding-right: 2.5rem;
  background-color: var(--base-color-text);
}
@media screen and (max-width: 960px) {
  .f-schedule-join__text code {
    padding: 0.625rem 0 1.25rem 0;
  }
}
.f-schedule-join__link {
  width: 284px;
}
@media screen and (max-width: 960px) {
  .f-schedule-join__link {
    width: 100%;
  }
}
.f-schedule-join__link .swell-block-button__link {
  border: 1px solid var(--base-color-white);
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
}
.f-schedule-join__link .swell-block-button__link:hover {
  background-color: var(--base-color-text) !important;
}

/* gallery
--------------------------------------------- */
.f-gallery {
  position: relative;
  padding-bottom: 0 !important;
}
.f-gallery .l-container {
  position: relative;
}
.f-gallery__wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: rgba(0, 0, 0, 0.16);
}
.f-gallery-copy {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transform: rotate(-2.4deg);
}
@media screen and (max-width: 600px) {
  .f-gallery-copy {
    top: -1rem;
  }
}
.f-gallery-copy p {
  color: var(--base-color-white);
  font-size: 100px;
  font-family: var(--base-eng-font);
  font-weight: 900;
  text-wrap: nowrap;
  line-height: 0.7;
  animation: marquee-animation 20s linear infinite;
}
@media screen and (max-width: 960px) {
  .f-gallery-copy p {
    font-size: 60px;
  }
}
@media screen and (max-width: 600px) {
  .f-gallery-copy p {
    font-size: 12.8vw;
  }
}
.f-gallery-concept {
  position: absolute;
  right: 48px;
  bottom: 1.25rem;
  margin-bottom: 0 !important;
  color: var(--base-color-white);
  font-size: var(--font-size2);
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .f-gallery-concept {
    font-size: var(--font-size4);
  }
}
@media screen and (max-width: 600px) {
  .f-gallery-concept {
    right: 24px;
    font-size: 5.4vw;
    line-height: 1.5;
  }
}

/* region
--------------------------------------------- */
.f-region .lined-title__link {
  display: block !important;
  margin-top: 2.5rem;
}
.f-region-base {
  gap: 0.9325rem;
  width: 100%;
  padding: 2.5rem;
  background-color: var(--base-color-lightgrey);
}
.f-region-base h3 {
  color: var(--base-color-main);
  font-size: var(--font-size6);
  font-weight: 700;
}
.f-region-base ul {
  display: -moz-grid;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  width: 100%;
  margin-top: 2.5rem;
  list-style: disc;
}
.f-region-base ul li {
  margin-left: 0.9325rem;
}

/* report
--------------------------------------------- */
.f-report {
  width: 100vw;
  margin-top: 5rem;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
@media screen and (max-width: 600px) {
  .f-report {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .f-report {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}
.f-report .splide__track {
  padding-bottom: 0.625rem;
}

/* navigation
--------------------------------------------- */
.f-psac-navi__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
}
@media screen and (max-width: 600px) {
  .f-psac-navi__list {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .f-psac-navi__list {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }
}
.f-psac-navi__list .swell-block-button {
  width: 100%;
  margin: 0 !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* message
--------------------------------------------- */
.l-about-message h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-main);
  font-size: var(--font-size1);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-about-message h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-about-message p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-about-message p {
    font-size: 0.9325rem;
  }
}

/* concept
--------------------------------------------- */
.l-about-concept .l-container {
  width: calc(100% - 48px);
  max-width: 1200px;
  padding: 3.75rem 6.25rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 960px) {
  .l-about-concept .l-container {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .l-about-concept .l-container {
    width: calc(100% - 24px);
    padding: 2.5rem 1.25rem;
  }
}
.l-about-concept__image {
  width: 240px;
  margin: 0 auto;
}
.l-about-concept__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-about-concept__content {
  position: relative;
  margin-top: 1.5rem;
  padding-top: 3.75rem;
}
.l-about-concept__content h3 {
  margin-bottom: 1.5rem;
  color: var(--base-color-main);
  font-size: var(--font-size1);
  font-weight: 500;
  font-family: var(--base-eng-font);
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-about-concept__content h3 {
    font-size: var(--font-size4);
  }
}
@media screen and (max-width: 480px) {
  .l-about-concept__content h3 {
    font-size: 7.2vw;
  }
}
.l-about-concept__content p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-about-concept__content p {
    font-size: 0.9325rem;
  }
}
.l-about-concept__content::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 40px;
  background-color: var(--base-color-text);
  transform: translateX(-50%);
}
.l-about-concept__wrap {
  position: relative;
  margin-top: 2.5rem;
}
.l-about-concept__wrap h3 {
  margin-bottom: 1.5rem;
  color: var(--base-color-main);
  font-size: var(--font-size1);
  font-weight: 500;
  font-family: var(--base-eng-font);
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-about-concept__wrap h3 {
    font-size: var(--font-size4);
  }
}
@media screen and (max-width: 480px) {
  .l-about-concept__wrap h3 {
    font-size: 7.2vw;
  }
}
.l-about-concept__wrap p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-about-concept__wrap p {
    font-size: 0.9325rem;
  }
}
.l-about-concept__item {
  position: relative;
  padding: 1.25rem;
  background-color: var(--base-color-white);
}
.l-about-concept__item h3 {
  margin-bottom: 0.9325rem;
  color: var(--base-color-text);
  font-size: 0.9325rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.l-about-concept__item h3 code {
  display: block;
  position: relative;
  z-index: 3;
  color: var(--base-color-main);
  font-size: var(--font-size4);
  font-family: var(--base-eng-font);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 600px) {
  .l-about-concept__item h3 code {
    font-size: var(--font-size5);
  }
}
.l-about-concept__item p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-about-concept__item p {
    font-size: 0.9325rem;
  }
}

/* future
--------------------------------------------- */
.l-about-future__item {
  gap: 5rem;
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-top: 5rem;
  padding: 3.75rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 960px) {
  .l-about-future__item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .l-about-future__item {
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.l-about-future__item:first-of-type {
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .l-about-future__item:first-of-type {
    margin-top: 2.5rem;
  }
}
.l-about-future__item .block-title {
  display: block;
  position: relative;
  width: 228px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .l-about-future__item .block-title {
    width: 100%;
  }
}
.l-about-future__item .block-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--base-color-text);
}
@media screen and (max-width: 600px) {
  .l-about-future__item .block-title::after {
    top: 20px;
    width: 100%;
    height: 1px;
  }
}
.l-about-future__item .block-title span,
.l-about-future__item .block-title code {
  display: block;
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0;
  color: var(--base-color-main);
  font-size: var(--font-size2);
  font-family: var(--base-eng-font);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 600px) {
  .l-about-future__item .block-title span,
  .l-about-future__item .block-title code {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 0.9325rem;
    background-color: var(--base-color-lightgrey);
    font-size: var(--font-size3);
  }
}
.l-about-future__item-text {
  width: calc(100% - 228px - 5rem);
  color: var(--base-color-text);
  font-size: var(--font-size4);
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .l-about-future__item-text {
    width: 100%;
    font-size: var(--font-size7);
    line-height: 1.5;
  }
}

/* audience
--------------------------------------------- */
.l-about-audience__wrap {
  align-items: center !important;
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .l-about-audience__wrap {
    margin-top: 2.5rem;
  }
}
.l-about-audience__list {
  padding: 2rem 1.25rem !important;
  border: 1px solid var(--base-color-grey);
}
.l-about-audience__list li::before {
  top: 0 !important;
}

/* overview
--------------------------------------------- */
.l-about-overview__table {
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .l-about-overview__table {
    margin-top: 2.5rem;
  }
}
.l-about-overview__table table th,
.l-about-overview__table table td {
  padding-top: 0.9325rem;
  padding-bottom: 0.9325rem;
}
.l-about-overview__table table th {
  font-weight: 400;
  text-align: center;
}

/* schedule
--------------------------------------------- */
.l-schedule-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
  padding-left: 0 !important;
}
@media screen and (max-width: 960px) {
  .l-schedule-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .l-schedule-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.l-schedule-list .event-list__item {
  max-width: none;
}

/* message
--------------------------------------------- */
.l-region-message__image {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 600px) {
  .l-region-message__image {
    margin-bottom: 1.875rem;
  }
}
.l-region-message h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-main) !important;
  font-size: var(--font-size2);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-region-message h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-region-message p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-region-message p {
    font-size: 0.9325rem;
  }
}

/* tablist
--------------------------------------------- */
.l-region-tablist {
  justify-content: center;
  gap: 0.625rem;
}
.l-region-tablist a {
  padding: 0.9325rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-region-tablist a {
    padding: 0.625rem 0.9325rem;
  }
}

/* teams
--------------------------------------------- */
.l-region-teams__item {
  margin-top: 5rem;
  margin-inline: auto;
  padding: 3.75rem 6.25rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 960px) {
  .l-region-teams__item {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .l-region-teams__item {
    margin-top: 3.75rem;
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .l-region-teams__item {
    padding: 1.875rem 1.25rem;
  }
}
.l-region-teams__item h4 {
  margin: 1.875rem 0 0.9325rem 0 !important;
}
.l-region-teams__item-title {
  gap: 0.25rem;
}
.l-region-teams__item-title h3 {
  color: var(--base-color-text);
  font-size: var(--font-size4);
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-region-teams__item-title h3 {
    font-size: var(--font-size6);
  }
}
.l-region-teams__item-title p {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.25rem;
  background-color: var(--base-color-main);
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
}
.l-region-teams__item-detail a {
  color: var(--base-color-text) !important;
  background-color: var(--base-color-white) !important;
}
.l-region-teams__item .swell-block-accordion__body {
  padding: 1em 0;
}
.l-region-teams__item .swell-block-accordion__body .wp-block-table table th {
  width: 70px;
  font-size: 0.9325rem;
  font-weight: 400;
  text-align: center;
}
.l-region-teams__item .swell-block-accordion__body .wp-block-table table td {
  font-size: 0.9325rem;
  line-height: 1.5;
}
.l-region-teams__item-sns {
  position: relative;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 0.9325rem;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 600px) {
  .l-region-teams__item-sns {
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }
}
.l-region-teams__item-sns::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--base-color-text);
}
@media screen and (max-width: 600px) {
  .l-region-teams__item-sns::before {
    display: none;
    height: auto;
    background-color: transparent;
  }
}
.l-region-teams__item-sns p {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0.625rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 600px) {
  .l-region-teams__item-sns p {
    width: 100%;
    background-color: transparent;
  }
}
.l-region-teams__item-sns .swell-block-linkList {
  gap: 0.625rem;
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0.625rem;
  background-color: var(--base-color-lightgrey);
}
.l-region-teams__item-sns .swell-block-linkList a {
  width: 40px;
  height: 40px;
  padding: 0 !important;
  font-size: 0.9325rem;
  font-family: var(--base-eng-font);
  font-weight: 500;
}
.l-region-teams__gallery .wp-block-image:first-of-type {
  width: 100% !important;
}

/* introduction
--------------------------------------------- */
.l-join-introduction h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-main);
  font-size: var(--font-size1);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-join-introduction h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-join-introduction p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-join-introduction p {
    font-size: 0.9325rem;
  }
}

/* howto
--------------------------------------------- */
.l-join-howto__wrap {
  gap: 5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .l-join-howto__wrap {
    margin-top: 2.5rem;
  }
}
.l-join-howto__item {
  width: calc(100% - 2.5rem);
  padding: 3.75rem 2.5rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 600px) {
  .l-join-howto__item {
    width: 100%;
    padding: 2.5rem 1.25rem;
  }
}
.l-join-howto__item h3 {
  margin-bottom: 1.5rem;
  color: var(--base-color-main);
  font-size: var(--font-size6);
  font-weight: 700;
}
.l-join-howto__item p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-join-howto__item p {
    font-size: 0.9325rem;
  }
}

/* flow
--------------------------------------------- */
.l-join-flow__wrap {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-top: 3.75rem;
  margin-inline: auto;
  padding: 3.75rem 6.25rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 960px) {
  .l-join-flow__wrap {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .l-join-flow__wrap {
    width: 100%;
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.l-join-flow__item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 960px) {
  .l-join-flow__item {
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}
.l-join-flow__item:first-of-type {
  margin-top: 0;
}
.l-join-flow__item .block-title {
  display: block;
  position: relative;
  width: 228px;
  color: var(--base-color-main);
  font-size: var(--font-size4);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .l-join-flow__item .block-title {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .l-join-flow__item .block-title {
    font-size: var(--font-size6);
  }
}
.l-join-flow__item-text {
  width: calc(100% - 228px);
}
@media screen and (max-width: 960px) {
  .l-join-flow__item-text {
    width: 100%;
  }
}
.l-join-flow__item-text p {
  margin-bottom: 2em;
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-join-flow__item-text p {
    font-size: 0.9325rem;
  }
}
.l-join-flow__link {
  width: 345px;
}
@media screen and (max-width: 600px) {
  .l-join-flow__link {
    width: 100%;
  }
}

/* introduction
--------------------------------------------- */
.l-member-introduction p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-member-introduction p {
    font-size: 0.9325rem;
    text-align: left;
  }
}

/* membership
--------------------------------------------- */
.l-member-membership__wrap {
  gap: 5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .l-member-membership__wrap {
    margin-top: 2.5rem;
  }
}
.l-member-membership__item {
  width: calc(100% - 2.5rem);
  padding: 3.75rem 2.5rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 600px) {
  .l-member-membership__item {
    width: 100%;
    padding: 2.5rem 1.25rem;
  }
}
.l-member-membership__item h3 {
  margin-bottom: 1.5rem;
  color: var(--base-color-text);
  font-size: var(--font-size6);
  font-weight: 700;
}
.l-member-membership__item p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-member-membership__item p {
    font-size: 0.9325rem;
  }
}

/* type
--------------------------------------------- */
.l-activity-type__item {
  left: 0 !important;
  width: 100% !important;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-activity-type__item {
    margin-top: 3.75rem;
  }
}
.l-activity-type__item:first-of-type {
  margin-top: 0;
}
.l-activity-type__item h3 {
  margin-bottom: 1.25rem;
  color: var(--base-color-text);
  font-size: var(--font-size4);
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-activity-type__item h3 {
    font-size: var(--font-size6);
  }
}
.l-activity-type__item-info {
  align-items: center;
  gap: 0.6255rem;
}
@media screen and (max-width: 600px) {
  .l-activity-type__item-info {
    flex-wrap: wrap;
  }
}
.l-activity-type__item-place {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.625rem;
  background-color: var(--base-color-main);
  color: var(--base-color-white);
  font-size: 0.9325rem !important;
  font-weight: 500;
}
.l-activity-type__item-time {
  font-size: 0.9325rem !important;
  font-weight: 500;
}
.l-activity-type__item p {
  font-size: 1.0625rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .l-activity-type__item p {
    font-size: 0.9325rem;
  }
}

/* type
--------------------------------------------- */
.l-futsal-type__item {
  left: 0 !important;
  width: 100% !important;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-futsal-type__item {
    margin-top: 3.75rem;
  }
}
.l-futsal-type__item h4 {
  margin: 0 0 1.25rem 0;
}
.l-futsal-type__item p {
  font-size: 1.0625rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .l-futsal-type__item p {
    font-size: 0.9325rem;
  }
}
.l-futsal-type__item .wp-block-table {
  width: 100%;
}
.l-futsal-type__item .wp-block-table table th {
  width: 120px !important;
  padding: 0.625rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .l-futsal-type__item .wp-block-table table th {
    width: 100px !important;
  }
}
.l-futsal-type__item .wp-block-table table td {
  width: calc(100% - 120px) !important;
  padding: 0.625rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .l-futsal-type__item .wp-block-table table td {
    width: calc(100% - 100px) !important;
  }
}
.l-futsal-type .swell-block-button {
  width: 100%;
  max-width: 345px;
  margin: 0;
}

/* introduction
--------------------------------------------- */
.l-inclusive-introduction__image {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 600px) {
  .l-inclusive-introduction__image {
    margin-bottom: 1.875rem;
  }
}
.l-inclusive-introduction h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-main) !important;
  font-size: var(--font-size2);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-inclusive-introduction h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-inclusive-introduction p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-inclusive-introduction p {
    font-size: 0.9325rem;
  }
}

/* stepup
--------------------------------------------- */
.l-inclusive-stepup h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-white);
  font-size: var(--font-size2);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-inclusive-stepup h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-inclusive-stepup__item {
  position: relative;
  overflow: hidden;
}
.l-inclusive-stepup__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.l-inclusive-stepup__item figcaption {
  display: block;
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: left;
  line-height: 1.2;
}
.l-inclusive-stepup__item figcaption span {
  display: block;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 700;
  letter-spacing: 0.05rem;
}

/* introduction
--------------------------------------------- */
.l-ifleague-introduction__item {
  left: 0 !important;
  width: 100% !important;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-ifleague-introduction__item {
    margin-top: 3.75rem;
  }
}
.l-ifleague-introduction__item h2 {
  margin-bottom: 1.25rem;
  color: var(--base-color-text);
  font-size: var(--font-size4);
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-ifleague-introduction__item h2 {
    font-size: var(--font-size6);
  }
}
.l-ifleague-introduction__item p {
  font-size: 1.0625rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .l-ifleague-introduction__item p {
    font-size: 0.9325rem;
  }
}

/* requirement
--------------------------------------------- */
.l-ifleague-require__wrap {
  gap: 5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .l-ifleague-require__wrap {
    margin-top: 2.5rem;
  }
}
.l-ifleague-require__item {
  width: calc(100% - 2.5rem);
  padding: 3.75rem 2.5rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 600px) {
  .l-ifleague-require__item {
    width: 100%;
    padding: 2.5rem 1.25rem;
  }
}
.l-ifleague-require__item-title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.l-ifleague-require__item-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--base-color-text);
}
.l-ifleague-require__item-title h3 {
  display: block;
  position: relative;
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0.9325rem;
  background-color: var(--base-color-lightgrey);
  color: var(--base-color-main);
  font-size: var(--font-size6);
  font-weight: 700;
}
.l-ifleague-require__item-title p {
  display: block;
  position: relative;
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0.9325rem;
  background-color: var(--base-color-lightgrey);
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-ifleague-require__item-title p {
    font-size: 0.9325rem;
  }
}
.l-ifleague-require__item .wp-block-list {
  margin-top: 2.5rem;
}
.l-ifleague-require__item .wp-block-list li::before {
  top: 0 !important;
}
.l-ifleague-require__place {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  width: 100%;
  max-width: 1080px;
  margin: 5rem auto 0;
  padding: 3.75rem 2.5rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 600px) {
  .l-ifleague-require__place {
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.l-ifleague-require__place h3 {
  display: block;
  position: relative;
  z-index: 3;
  width: 228px;
  margin: 0;
  padding: 0;
  color: var(--base-color-main);
  font-size: var(--font-size6);
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .l-ifleague-require__place h3 {
    width: 100%;
  }
}
.l-ifleague-require__place .wp-block-table {
  width: calc(100% - 228px - 5rem);
}
@media screen and (max-width: 600px) {
  .l-ifleague-require__place .wp-block-table {
    width: 100%;
  }
}
.l-ifleague-require__place .wp-block-table table th {
  width: 140px;
  padding: 0.9325rem 0.625rem;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
}
.l-ifleague-require__place .wp-block-table table td {
  width: calc(100% - 140px);
  padding: 0.9325rem 0.625rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}

/* map
--------------------------------------------- */
.l-ifleague-map {
  position: relative;
  width: 100vw;
  height: 400px;
}
@media screen and (max-width: 600px) {
  .l-ifleague-map {
    height: 280px;
  }
}
.l-ifleague-map div {
  height: 100%;
}
.l-ifleague-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* official
--------------------------------------------- */
.l-ifleague-official__link {
  width: 345px;
}
@media screen and (max-width: 960px) {
  .l-ifleague-official__link {
    width: 100%;
  }
}
.l-ifleague-official__link .swell-block-button__link {
  border: 1px solid var(--base-color-white);
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
}

/* introduction
--------------------------------------------- */
.l-tournament-introduction p {
  font-size: 1.0625rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-tournament-introduction p {
    font-size: 0.9325rem;
    text-align: left;
  }
}

/* type
--------------------------------------------- */
@media screen and (max-width: 600px) {
  .l-tournament-type .lined-title__text code {
    font-size: 12.8vw;
  }
}
.l-tournament-type__item {
  left: 0 !important;
  width: 100% !important;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-tournament-type__item {
    margin-top: 3.75rem;
  }
}
.l-tournament-type__item-map {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.25rem;
  background-color: var(--base-color-main);
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
}
.l-tournament-type__item p {
  font-size: 1.0625rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .l-tournament-type__item p {
    font-size: 0.9325rem;
  }
}
.l-tournament-type__item .wp-block-table {
  width: 100%;
}
.l-tournament-type__item .wp-block-table table th {
  width: 120px !important;
  padding: 0.625rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .l-tournament-type__item .wp-block-table table th {
    width: 100px !important;
  }
}
.l-tournament-type__item .wp-block-table table td {
  width: calc(100% - 120px) !important;
  padding: 0.625rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .l-tournament-type__item .wp-block-table table td {
    width: calc(100% - 100px) !important;
  }
}
.l-tournament-type__link {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 960px) {
  .l-tournament-type__link {
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }
}
.l-tournament-type__link .swell-block-button {
  width: 100%;
}

/* concept
--------------------------------------------- */
.l-liberdade-concept h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-main);
  font-size: var(--font-size1);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-liberdade-concept h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-liberdade-concept p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-liberdade-concept p {
    font-size: 0.9325rem;
  }
}

/* report
--------------------------------------------- */
.l-liberdade-report .report-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
  margin-top: 5rem;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .l-liberdade-report .report-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1.875rem;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .l-liberdade-report .report-list {
    grid-template-columns: 1fr;
  }
}
.l-liberdade-report .report-list__item {
  width: 100%;
  max-width: none !important;
}
.l-liberdade-report__link {
  width: 345px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 960px) {
  .l-liberdade-report__link {
    width: 100%;
    margin-top: 1.875rem;
  }
}

/* image
--------------------------------------------- */
.l-liberdade-image {
  position: relative;
  width: 100vw;
  height: 400px;
}
@media screen and (max-width: 600px) {
  .l-liberdade-image {
    height: 280px;
  }
}

/* history
--------------------------------------------- */
.l-liberdade-history {
  margin-top: 0 !important;
}
.l-liberdade-history .wp-block-table {
  width: 100%;
  max-width: 880px;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-liberdade-history .wp-block-table {
    margin-top: 3.75rem;
  }
}
.l-liberdade-history .wp-block-table table th {
  width: 120px !important;
  padding: 0.9325rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-liberdade-history .wp-block-table table th {
    width: 100% !important;
    padding: 0.9325rem 0.625rem 0 0.625rem;
    border-bottom: none;
    font-weight: 700;
  }
}
.l-liberdade-history .wp-block-table table td {
  width: calc(100% - 120px) !important;
  padding: 0.9325rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .l-liberdade-history .wp-block-table table td {
    width: 100% !important;
    padding: 0.5rem 0.625rem 0.9325rem 0.625rem;
    border-top: none;
  }
}

/* next
--------------------------------------------- */
.l-liberdade-next__wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  width: 100%;
  max-width: 1080px;
  margin: 5rem auto 0;
  padding: 3.75rem 2.5rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 600px) {
  .l-liberdade-next__wrap {
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.l-liberdade-next__wrap h3 {
  display: block;
  position: relative;
  z-index: 3;
  width: 228px;
  margin: 0;
  padding: 0;
  color: var(--base-color-main);
  font-size: var(--font-size6);
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .l-liberdade-next__wrap h3 {
    width: 100%;
  }
}
.l-liberdade-next__content {
  width: calc(100% - 228px - 5rem);
}
@media screen and (max-width: 600px) {
  .l-liberdade-next__content {
    width: 100%;
  }
}
.l-liberdade-next__content .wp-block-table table th {
  width: 140px;
  padding: 0.9325rem 0.625rem;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .l-liberdade-next__content .wp-block-table table th {
    background-color: var(--base-color-white);
    font-weight: 700;
  }
}
.l-liberdade-next__content .wp-block-table table td {
  width: calc(100% - 140px);
  padding: 0.9325rem 0.625rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}
.l-liberdade-next__content .lined-title__link {
  margin-top: 1.25rem;
  padding: 0;
}

/* introduction
--------------------------------------------- */
.l-yoga-introduction h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-main) !important;
  font-size: var(--font-size2);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-yoga-introduction h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-yoga-introduction p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-yoga-introduction p {
    font-size: 0.9325rem;
    text-align: left;
  }
}

/* stepup
--------------------------------------------- */
.l-inclusive-stepup h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-white);
  font-size: var(--font-size2);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-inclusive-stepup h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-inclusive-stepup__item {
  position: relative;
  overflow: hidden;
}
.l-inclusive-stepup__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.l-inclusive-stepup__item figcaption {
  display: block;
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: var(--base-color-white);
  font-size: 1.0625rem;
  font-weight: 500;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 1.2;
}
.l-inclusive-stepup__item figcaption span {
  display: block;
  font-size: var(--font-size1);
  font-family: var(--base-eng-font);
  font-weight: 700;
  letter-spacing: 0.05rem;
}

/* introduction
--------------------------------------------- */
.l-lecture-introduction h2 {
  margin-bottom: 3.75rem;
  color: var(--base-color-main) !important;
  font-size: var(--font-size2);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-lecture-introduction h2 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size4);
  }
}
.l-lecture-introduction p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-lecture-introduction p {
    font-size: 0.9325rem;
    text-align: left;
  }
}

/* example
--------------------------------------------- */
.l-lecture-example .wp-block-table {
  width: 100%;
  max-width: 880px;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-lecture-example .wp-block-table {
    margin-top: 3.75rem;
  }
}
.l-lecture-example .wp-block-table table th {
  width: 120px !important;
  padding: 0.9325rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .l-lecture-example .wp-block-table table th {
    width: 100% !important;
    padding: 0.9325rem 0.625rem 0 0.625rem;
    border-bottom: none;
    font-weight: 700;
  }
}
.l-lecture-example .wp-block-table table td {
  width: calc(100% - 120px) !important;
  padding: 0.9325rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .l-lecture-example .wp-block-table table td {
    width: 100% !important;
    padding: 0.5rem 0.625rem 0.9325rem 0.625rem;
    border-top: none;
  }
}

/* request
--------------------------------------------- */
.l-lecture-request__wrap {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-top: 3.75rem;
  margin-inline: auto;
  padding: 3.75rem 6.25rem;
  background-color: var(--base-color-lightgrey);
}
@media screen and (max-width: 960px) {
  .l-lecture-request__wrap {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .l-lecture-request__wrap {
    width: 100%;
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.l-lecture-request__wrap .block-title {
  display: block;
  position: relative;
  width: 228px;
  color: var(--base-color-main);
  font-size: var(--font-size4);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .l-lecture-request__wrap .block-title {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .l-lecture-request__wrap .block-title {
    font-size: var(--font-size6);
  }
}
.l-lecture-request__wrap .contact-box {
  width: calc(100% - 228px);
  padding: 1.25rem 2.5rem;
  background-color: var(--base-color-white);
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .l-lecture-request__wrap .contact-box {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .l-lecture-request__wrap .contact-box {
    font-size: 0.9325rem;
  }
}

/* contact
--------------------------------------------- */
.l-contact h2 {
  margin-bottom: 2.5rem;
  color: var(--base-color-main);
  font-size: var(--font-size2);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-contact h2 {
    margin-bottom: 1.875rem;
    font-size: var(--font-size4);
  }
}
.l-contact p {
  color: var(--base-color-text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-contact p {
    font-size: 0.9325rem;
    text-align: left;
  }
}

/* faq
--------------------------------------------- */
/*FAQアコーディオン化*/
.swell-block-faq dd {
  display: none;
  padding: 0 0.9325rem;
}
.swell-block-faq .active dd {
  display: block;
  border: 1px solid var(--base-color-lightgrey);
}
.swell-block-faq .active .faq_q::after {
  content: "－";
}
.swell-block-faq .faq_q {
  position: relative;
  cursor: pointer;
  padding-right: 1.875rem;
}
.swell-block-faq .faq_q::after {
  content: "＋";
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: var(--font-size7);
  transform: translateY(-50%);
}

.pc-only {
  display: block !important;
}
@media screen and (max-width: 600px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 600px) {
  .sp-only {
    display: block !important;
  }
}

.xl {
  display: none;
}
@media screen and (max-width: 1280px) {
  .xl {
    display: block;
  }
}

.lg {
  display: none;
}
@media screen and (max-width: 960px) {
  .lg {
    display: block;
  }
}

.md {
  display: none;
}
@media screen and (max-width: 600px) {
  .md {
    display: block;
  }
}

.sm {
  display: none;
}
@media screen and (max-width: 480px) {
  .sm {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */