@charset "UTF-8";
/*--------------------------------------------------------------
# config
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p {
  margin: 0;
  padding: 0;
}

hr {
  width: 100%;
  color: #eee;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a, a:hover, a:visited {
  text-decoration: none;
  color: currentcolor;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #1f1f1f;
  background-color: #ffffff;
  padding-top: 80px;
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title__en {
  font-size: 2.25rem;
  font-weight: bold;
}
.section-title__ja {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .section-title__en {
    font-size: 32px;
  }
}

.font-white {
  color: #ffffff;
}

.font-red {
  color: #C1272D;
}

.font-bold {
  font-weight: 700;
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none;
  height: 0 !important;
}

.page-contact .grecaptcha-badge {
  visibility: visible;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# layout
--------------------------------------------------------------*/
.site-header {
  background-color: #1f1f1f;
  color: #ffffff;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}
.site-header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
}
.site-header__logo {
  width: 180px;
  position: relative;
  left: 15px;
  z-index: 999;
}
.site-header__logo img {
  width: 180px;
}
.site-header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
}
.site-header__nav {
  height: 100%;
}
.site-header__nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  height: 100%;
}
.site-header__nav > ul > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-header__nav > ul > li > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
  padding: 0 10px;
  color: #ffffff;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header__nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 25%;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.site-header__nav > ul > li > a:hover::after {
  width: 50%;
}
.site-header__nav > ul > li > a:hover {
  color: #ffffff;
  background-color: #C1272D;
}
.site-header__nav > ul > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__nav ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  padding: 40px;
  background-color: #C1272D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.site-header__nav ul.sub-menu li a {
  position: relative;
  color: #ffffff;
  transition: all 0.2s ease;
  text-decoration: none;
}
.site-header__nav ul.sub-menu li a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 25%;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.site-header__nav ul.sub-menu li a:hover::after {
  width: 50%;
}
.site-header__nav li.menu-item-has-children > a {
  transition: background-color 0.3s, color 0.3s;
}
.site-header__nav li.menu-item-has-children:hover > a, .site-header__nav li.menu-item-has-children:has(ul.sub-menu:hover) > a {
  background-color: #C1272D;
  color: #ffffff;
}
.site-header__right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
.site-header__right .site-header__icons a {
  font-size: 0.875rem;
  height: 80px;
  color: #fff;
  padding: 1rem 10px;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.site-header__right .site-header__icons a img {
  width: 32px;
}
.site-header__right .site-header__icons a span {
  margin-left: 5px;
}
.site-header__right .site-header__icons a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.site-header__right .site-header__sns {
  width: 80px;
  height: 80px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.site-header__right .site-header__sns img {
  width: 100%;
}

.site-header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 0;
  background: none;
  border: none;
  z-index: 1001;
  cursor: pointer;
}
.site-header__toggle:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.site-header__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  margin: 6px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header__drawer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(31, 31, 31, 0.95);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 3rem;
}
@media (min-width: 768px) {
  .site-header__drawer {
    width: 50vw;
  }
}

.site-header__drawer.is-open {
  transform: translateX(0%);
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}
.drawer-menu li a {
  color: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
  position: relative;
}
.drawer-menu li a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.drawer-menu li a:hover::after {
  width: 50%;
}
.drawer-menu ul.sub-menu {
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: none;
}
.drawer-menu ul.sub-menu li a {
  font-size: 0.95rem;
  opacity: 0.75;
}

.drawer-icon {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 100%;
  gap: 1.8rem;
}
.drawer-icon li a {
  font-size: 0.8rem;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.drawer-icon li a img {
  width: 32px;
}
.drawer-icon li a span {
  margin-left: 7px;
}

@media (max-width: 1023px) {
  .site-header__toggle {
    display: block;
  }
  .site-header__nav,
  .site-header__right {
    display: none;
  }
}
.pc-menu {
  display: block;
}
@media (max-width: 1023px) {
  .pc-menu {
    display: none;
  }
}

.sp-menu {
  display: none;
}
@media (max-width: 1023px) {
  .sp-menu {
    display: block;
  }
}

/* ================================
   Page Top Button
   ================================ */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  /* 上向き矢印をCSSだけで作成 */
  /* 表示状態 */
}
.pagetop::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.pagetop:hover {
  background: rgba(0, 0, 0, 0.92);
  transform: translateY(0) scale(1.06);
}
.pagetop.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .pagetop {
    right: 16px;
    bottom: 20px;
    width: 42px;
    height: 42px;
  }
  .pagetop::before {
    width: 9px;
    height: 9px;
  }
}
.site-footer {
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 3rem 1rem 1rem 1rem;
  font-size: 0.75rem;
}
.site-footer .container {
  max-width: 1024px;
  margin: auto;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-footer__top {
    justify-content: center;
  }
}
.site-footer__brand {
  text-align: left;
}
.site-footer__brand img {
  width: 120px;
  margin-bottom: 0.5rem;
}
.site-footer__brand p {
  font-weight: bold;
  margin: 0;
  font-size: 0.75rem;
}
.site-footer__nav .footer-menu {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 480px;
}
@media (max-width: 768px) {
  .site-footer__nav .footer-menu {
    justify-content: center;
  }
}
.site-footer__nav .footer-menu li a {
  color: #ffffff;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .site-footer__bottom {
    justify-content: center;
  }
}
.site-footer__links {
  display: flex;
  gap: 1.5rem;
}
.site-footer__links a {
  color: #ffffff;
}

.blog-post {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}
.blog-post p,
.blog-post h1, .blog-post h2, .blog-post h3, .blog-post h4, .blog-post h5, .blog-post h6,
.blog-post ul, .blog-post ol,
.blog-post blockquote,
.blog-post pre,
.blog-post figure,
.blog-post table,
.blog-post .wp-block {
  margin-bottom: 1.8em;
}
.blog-post > *:last-child {
  margin-bottom: 0;
}
.blog-post h2 {
  font-size: 1.6rem;
  margin-top: 2em;
  border-left: 5px solid #e60012;
  padding-left: 0.75em;
}
.blog-post h3 {
  font-size: 1.3rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3em;
  margin-top: 2em;
}
.blog-post .wp-block-image {
  text-align: center;
}
.blog-post .wp-block-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
}
.blog-post .wp-block-image figcaption {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}
.blog-post .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-post .wp-block-gallery .wp-block-image {
  flex: 1 1 calc(33.333% - 1rem);
}
.blog-post .wp-block-gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-post ul, .blog-post ol {
  padding-left: 1.5em;
}
.blog-post ul li, .blog-post ol li {
  margin-bottom: 0.5em;
}
.blog-post blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  color: #666;
  font-style: italic;
  background: #f9f9f9;
}
.blog-post .wp-block-embed,
.blog-post .blogcard {
  max-width: 100%;
  margin-bottom: 1.5em;
}
.blog-post pre {
  background: #f4f4f4;
  padding: 1em;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.95em;
}
.blog-post code {
  background: #eee;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}
.blog-post table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.blog-post table th, .blog-post table td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: left;
}
.blog-post table th {
  background: #f0f0f0;
}

/*--------------------------------------------------------------
# global
--------------------------------------------------------------*/
.button {
  display: inline-block;
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: rgb(5.5, 5.5, 5.5);
}

.card {
  border: 1px solid #ccc;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-section {
  padding: 4rem 1rem;
  position: relative;
  background-color: #1f1f1f;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/img/cta/cta-bg.jpg") center/cover no-repeat;
  mix-blend-mode: overlay;
  filter: grayscale(100%);
  opacity: 0.7;
  z-index: 0;
}
.cta-section .container {
  max-width: 768px;
  margin: auto;
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  text-align: center;
  color: #1f1f1f;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .cta-section .container {
    max-width: 580px;
  }
}
.cta-section__text {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.cta-section__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.cta-section .cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
}
.cta-section .cta-btn img {
  width: 42px;
}
.cta-section .cta-btn--line {
  background-color: #00B900;
}
.cta-section .cta-btn--mail {
  background-color: #C1272D;
}
.cta-section__tel {
  border-top: 1px solid #eee;
  padding-top: 2rem;
  max-width: clamp(380px, 500px, 80%);
  margin: auto;
}
.cta-section__tel-label {
  display: flex;
  flex-direction: nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .cta-section__tel-label {
    gap: 1rem;
    justify-content: center;
  }
}
.cta-section__tel-label-title {
  margin-bottom: 1rem;
  background-color: #1f1f1f;
  color: #ffffff;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .cta-section__tel-label-title {
    font-size: 0.75rem;
  }
}
.cta-section__tel-label-logo {
  height: 32px;
  margin-bottom: 1rem;
}
.cta-section__tel-number {
  display: flex;
  flex-direction: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .cta-section__tel-number {
    flex-direction: column;
    gap: 1rem;
  }
}
.cta-section__tel-number-cont {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
}
.cta-section__tel-number-cont img {
  height: 3rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.cta-section__tel-number-cont a:link, .cta-section__tel-number-cont a:visited, .cta-section__tel-number-cont a:hover, .cta-section__tel-number-cont a:active {
  color: currentcolor;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cta-section__tel-number-cont a:link, .cta-section__tel-number-cont a:visited, .cta-section__tel-number-cont a:hover, .cta-section__tel-number-cont a:active {
    font-size: 2rem;
  }
}
.cta-section__tel-number-meta {
  background: #1f1f1f;
  color: #ffffff;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
}
.cta-section__tel-note {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.stats-section {
  background-color: #C1272D;
  color: #ffffff;
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
}
.stats-section::before {
  content: "STATS";
  position: absolute;
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 900;
  color: #B22C31;
  z-index: 0;
  pointer-events: none;
  top: 25%;
  left: -10%;
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .stats-section::before {
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    font-size: 6rem;
  }
}
.stats-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: #B22C31;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 0;
}
.stats-section__container {
  max-width: 780px;
  margin: 0 auto;
  background: #ffffff;
  color: #1f1f1f;
  border-radius: 1.5rem;
  padding: 2rem 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .stats-section__container {
    max-width: 580px;
  }
}
.stats-section__title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
}
.stats-section__title span {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .stats-section__title {
    font-size: 2.25rem;
  }
}
.stats-section__numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.stats-section__numbers .stats-box {
  text-align: center;
}
.stats-section__numbers .stats-box__label {
  background: #1f1f1f;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.stats-section__numbers .stats-box__value {
  font-weight: bold;
  color: #C1272D;
  line-height: 1;
}
.stats-section__numbers .stats-box__value .count-up {
  display: inline-block;
  font-size: 4rem;
}
.stats-section__numbers .stats-box__value .plus {
  font-size: 2rem;
  margin-left: 0.2em;
}
.stats-section__numbers .stats-box.large .stats-box__value .count-up {
  font-size: 6rem;
}
.stats-section__numbers .stats-box.large .stats-box__value .plus {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .stats-section__numbers {
    display: block;
    text-align: center;
  }
  .stats-section__numbers .stats-box {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .stats-section__numbers .stats-box.large {
    margin-bottom: 2rem;
  }
  .stats-section__numbers .stats-box:not(.large) {
    display: inline-block;
    width: 45%;
    margin: 0 1%;
    vertical-align: top;
  }
}
.stats-section__note {
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.voice-section {
  padding: 5rem 1rem;
  position: relative;
}
.voice-section::after {
  content: "VOICE";
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 20vw, 11rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.voice-section .voice-section__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.voice-section .voice-section__inner .swiper-button-prev,
.voice-section .voice-section__inner .swiper-button-next {
  color: #C1272D;
}
.voice-section .voice-section__inner .swiper-button-prev:after,
.voice-section .voice-section__inner .swiper-button-next:after {
  font-size: 30px;
  font-weight: 900;
}
.voice-section .voice-section__inner .swiper-button-prev {
  left: -4px;
}
.voice-section .voice-section__inner .swiper-button-next {
  right: -4px;
}
.voice-section .voice-section__inner .swiper-pagination {
  margin-top: 2rem;
}

.swiper-slide {
  display: flex;
  height: auto;
}

.voice-card {
  flex: 1;
  background-color: #ffffff;
  color: #1f1f1f;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 1rem;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.voice-card__top {
  display: flex;
  gap: 1rem;
}
.voice-card__image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.voice-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.voice-card__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voice-card__meta .voice-card__team {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.voice-card__meta .voice-card__class {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.voice-card__meta .voice-card__tags {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.voice-card__meta .voice-card__tags .tag {
  background-color: #1f1f1f;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.2rem 1rem;
  border-radius: 999px;
  line-height: 1;
}
.voice-card__comment {
  font-size: 0.875rem;
  line-height: 1.8;
}

.subpage-header {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #1f1f1f;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .subpage-header {
    justify-content: center;
  }
}
.subpage-header__bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/global/subpage-header-bg.png") center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
  filter: grayscale(100%);
}
.subpage-header__inner {
  position: relative;
  z-index: 1;
  text-align: right;
  padding-left: clamp(2rem, 8vw, 8rem);
  color: #ffffff;
}
@media (max-width: 1023px) {
  .subpage-header__inner {
    text-align: center;
    padding-left: 0;
  }
}
.subpage-header__title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: bold;
  line-height: 1.2;
}
.subpage-header__title .font-red {
  color: #C1272D;
  margin-right: 0.5rem;
}
.subpage-header__subtitle {
  font-size: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .subpage-header {
    height: 40vh;
  }
  .subpage-header__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .subpage-header__subtitle {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# top
--------------------------------------------------------------*/
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  overflow: hidden;
  padding: 0 1.5rem;
  /*background: url('./assets/img/hero/hero.webp') center/cover no-repeat; */
}
@media (max-width: 768px) {
  .hero {
    padding: 0 0.8rem;
  }
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(31, 31, 31, 0.6) 1px, transparent 1px);
  background-size: 2px 2px;
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 790px;
}
.hero__heading {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1.2;
}
.hero__heading .red {
  color: #C1272D;
}
@media (max-height: 900px) {
  .hero__heading {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .hero__heading {
    font-size: 4rem;
  }
}
.hero__text {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 0.85rem;
    white-space: normal;
  }
}
.hero .sp-only {
  display: none;
}
@media (max-width: 768px) {
  .hero .sp-only {
    display: inline;
  }
}

/* =========================================
   バーモントカップ バッジ
   ========================================= */
.hero__badge {
  position: absolute;
  width: 180px;
  left: 10px;
  top: -170px;
  z-index: 4;
  animation: badgeFadeIn 0.8s ease-out 0.4s forwards;
  opacity: 0;
}
.hero__badge img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.65));
}
@media (max-height: 900px) {
  .hero__badge {
    width: 130px;
    left: -5px;
    top: -140px;
  }
}
@media (max-width: 1366px) {
  .hero__badge {
    width: 130px;
    left: -5px;
    top: -140px;
  }
}

/* ふわっと出現 */
@keyframes badgeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* =========================================
   HERO NEWS CARD
   ========================================= */
.hero__news {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 4;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__news {
    bottom: 1.6rem;
  }
}

.hero__news-inner {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  padding-inline: 1.2rem;
}

.hero__news-card {
  max-width: 900px;
  width: 100%;
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.9), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  padding: 0.8rem 1.4rem 0.9rem;
  color: #fff;
  opacity: 1;
  transform: none;
}

/* =========================================
   PC：横並びレイアウト
   SP：縦並びレイアウト
   ========================================= */
.hero__news-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .hero__news-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

/* ===== タグ + 日付 ===== */
.hero__news-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .hero__news-head {
    gap: 0.4rem;
  }
}

.hero__news-label {
  padding: 0.15em 0.75em 0.2em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__news-date {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ===== タイトル ===== */
.hero__news-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.hero__news-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
}
@media (max-width: 767px) {
  .hero__news-title {
    font-size: 1.05rem;
  }
}

.hero__news-link:hover .hero__news-title {
  text-decoration: underline;
}

.hero__news-no-post {
  font-size: 1.05rem;
  margin: 0.2rem 0 0;
}

.intro-section {
  background-color: #1f1f1f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  width: 2px;
  height: 200%;
  background-color: #C1272D;
  transform: rotate(45deg);
  z-index: 2;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .intro-section::before {
    transform: rotate(25deg);
  }
}

.intro-block {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10rem 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .intro-block {
    flex-direction: column;
    padding: 0;
  }
}
.intro-block__label {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #C1272D;
}
.intro-block__label_jp {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.intro-block__heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .intro-block__heading {
    font-size: 2rem;
    text-align: center;
  }
}
.intro-block__content {
  flex: 1;
  position: relative;
  z-index: 3;
  max-width: 580px;
}
.intro-block__content p {
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .intro-block__content br {
    display: none;
  }
}
.intro-block__image {
  position: absolute;
  z-index: 0;
}
.intro-block__image img {
  width: 100%;
  height: auto;
}
.intro-block__bg-text {
  position: absolute;
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: bold;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
  pointer-events: none;
  left: 5%;
  top: 2rem;
}

.mission {
  justify-content: space-between;
}
.mission .intro-block__image {
  position: relative;
  flex: 1;
  margin-left: auto;
  opacity: 1;
}
.mission .intro-block__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
@media (max-width: 768px) {
  .mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20vh 0;
  }
  .mission .intro-block__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
  }
  .mission .intro-block__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mission .intro-block__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
  }
  .mission .intro-block__content p {
    text-align: left;
  }
}

.challenge {
  flex-direction: row;
  justify-content: flex-end;
}
.challenge .intro-block__image {
  bottom: -2rem;
  left: 0;
  width: 500px;
  transform: rotate(0);
  z-index: 0;
}
.challenge .intro-block__image img {
  width: 100%;
}
@media (max-width: 768px) {
  .challenge .intro-block__image img {
    width: 80%;
  }
}
.challenge .intro-block__content {
  margin-right: 0;
}
@media (max-width: 768px) {
  .challenge .intro-block__content {
    padding: 5rem 2rem 0;
  }
}
.challenge .intro-block__bg-text {
  right: 1rem;
  top: -3rem;
  text-align: right;
}
@media (max-width: 768px) {
  .challenge .intro-block__bg-text {
    right: -1rem;
    left: auto;
    top: 1rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}
@media (max-width: 768px) {
  .challenge {
    flex-direction: column-reverse;
  }
  .challenge .intro-block__image {
    position: static;
    width: 80%;
  }
}

.development {
  position: relative;
}
.development .intro-block__image {
  position: absolute;
  bottom: -7rem;
  right: -3rem;
  max-width: 680px;
  transform: rotate(-15deg);
  z-index: 0;
}
.development .intro-block__image img {
  width: 100%;
}
@media (max-width: 768px) {
  .development .intro-block__image {
    position: static;
    transform: none;
    width: 90%;
    margin: 2rem auto 0;
  }
}
.development .intro-block__bg-text {
  left: 1rem;
  top: 0;
}
@media (max-width: 768px) {
  .development .intro-block__bg-text {
    left: -1rem;
    top: -2rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}
.development .intro-block__content {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 0;
}

.top-class-section {
  position: relative;
  padding: 6rem 1rem;
  background-color: #1f1f1f;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}
.top-class-section__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/class/bg-top-class.jpg") center/cover no-repeat;
  mix-blend-mode: lighten;
  opacity: 0.1;
  z-index: 0;
}
.top-class-section .container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: auto;
}
.top-class-section__title {
  font-size: 8rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .top-class-section__title {
    font-size: 5rem;
  }
}
.top-class-section__items {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  gap: 2rem;
  margin: 5rem auto;
}
@media (min-width: 768px) {
  .top-class-section__items {
    gap: 3rem;
  }
}
.top-class-section__cta {
  margin-top: 3rem;
  text-align: right;
}
@media (max-width: 768px) {
  .top-class-section__cta {
    text-align: center;
  }
}
.top-class-section__cta .btn-primary {
  background-color: #C1272D;
  color: #ffffff;
  font-weight: bold;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 10px;
  display: inline-block;
  transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}
.top-class-section__cta .btn-primary:hover {
  background-color: rgb(150.5732758621, 30.4267241379, 35.1077586207);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.top-class-section__cta .btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.top-class-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.top-class-box__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.top-class-box__icon img {
  width: 100%;
  height: auto;
}
.top-class-box__content {
  flex: 1;
}
.top-class-box__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.top-class-box__text {
  font-size: 0.875rem;
  line-height: 1.8;
}

.top-partner-section {
  background-color: #f8f8f8;
  padding: 4rem 1rem;
  text-align: center;
}
.top-partner-section .container {
  max-width: 1024px;
  margin: 0 auto;
}
.top-partner-section .partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 5rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}
.top-partner-section .partner-logos__item {
  flex: 1 1 30%;
  max-width: 180px;
}
.top-partner-section .partner-logos__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-partner-section__link {
  font-size: 0.875rem;
  color: #666;
}
.top-partner-section__link a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.top-partner-section__link a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .top-partner-section .partner-logos {
    flex-direction: column;
    align-items: center;
  }
  .top-partner-section .partner-logos__item {
    max-width: 50%;
  }
  .top-partner-section__link {
    font-size: 0.75rem;
  }
}

.info-section {
  background: #1f1f1f;
  color: #ffffff;
  padding: 5rem 1rem;
}
.info-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
}
.info-section .info-list .info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.info-section .info-list .info-item__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.info-section .info-list .info-item__meta .info-item__category {
  background: #ffffff;
  color: #1f1f1f;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.2rem 1.2rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.info-section .info-list .info-item__meta .info-item__date {
  font-size: 0.875rem;
  color: #ffffff;
  white-space: nowrap;
}
.info-section .info-list .info-item__title {
  font-size: 0.875rem;
  line-height: 1.8;
}
.info-section .info-list .info-item__title a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}
.info-section .info-list .info-item__title a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .info-section .info-list .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .info-section .info-list .info-item__meta {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }
  .info-section .info-list .info-item__title {
    font-size: 0.85rem;
  }
}
.info-section .info-link {
  text-align: right;
  margin-top: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.info-section .info-link a {
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.info-section .info-link a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------
# Coaching philosophy
--------------------------------------------------------------*/
.slogan-section {
  padding: 6rem 1rem;
  text-align: center;
}
.slogan-section .section-title {
  margin-bottom: 3rem;
}
.slogan-section .slogan-graphics {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.slogan-section .slogan-graphics__item {
  width: 280px;
  height: auto;
}
@media (max-width: 767px) {
  .slogan-section .slogan-graphics {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .slogan-section .slogan-graphics__item {
    width: 240px;
  }
}
.slogan-section .slogan-message {
  max-width: 780px;
  margin: 0 auto;
}
.slogan-section .slogan-message__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.slogan-section .slogan-message__text {
  font-size: 0.875rem;
  line-height: 1.8;
}

.point-blocks {
  background-color: #1f1f1f;
}

.point-block {
  position: relative;
  overflow: hidden;
  padding: 6rem 1rem;
}
.point-block__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  gap: 2rem;
  position: relative;
}
@media (max-width: 1023px) {
  .point-block__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .point-block__inner {
    gap: 2rem;
  }
}
.point-block__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  filter: grayscale(100%);
  z-index: 0;
}
.point-block__inner.point-block__inner--bg01::before {
  background-image: url("assets/img/pages/coaching/point-bg-one.jpg");
}
.point-block__inner.point-block__inner--bg02::before {
  background-image: url("assets/img/pages/coaching/point-bg-two.jpg");
}
.point-block__inner.point-block__inner--bg03::before {
  background-image: url("assets/img/pages/coaching/point-bg-three.jpg");
}
.point-block__media {
  position: relative;
  width: 50%;
  min-width: 300px;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .point-block__media {
    width: 100%;
  }
}
.point-block__accent {
  position: absolute;
  inset: 0;
  width: 50%;
  background-color: #C1272D;
  mix-blend-mode: overlay;
  z-index: 1;
}
@media (max-width: 1023px) {
  .point-block__accent {
    width: 100%;
    height: 60%;
  }
}
.point-block__image {
  position: relative;
  z-index: 2;
  padding: 3rem;
}
.point-block__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .point-block__image {
    padding: 2rem;
  }
}
.point-block__content {
  width: 50%;
  color: #ffffff;
  padding: 3rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  .point-block__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .point-block__content {
    padding: 0 2rem 3rem 2rem;
  }
}
.point-block__label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.point-block__label .point-block__point {
  font-size: 0.8rem;
  font-weight: bold;
}
.point-block__label .point-block__num {
  font-size: 2.5rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .point-block__label {
    align-items: center;
  }
}
.point-block__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.point-block__text {
  font-size: 1rem;
  line-height: 1.8;
}
.point-block__text p + p {
  margin-top: 1.5rem;
}
.point-block--reverse .point-block__inner {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .point-block--reverse .point-block__inner {
    flex-direction: column;
  }
}
.point-block--reverse .point-block__accent {
  left: auto;
  right: 0;
}
.point-block--reverse .point-block__content {
  text-align: left;
}
@media (max-width: 1023px) {
  .point-block--reverse .point-block__label {
    align-items: center;
  }
}

.career-section {
  position: relative;
  padding: 6rem 1rem;
  text-align: center;
  background-color: #ffffff;
  color: #1f1f1f;
}
.career-section::before {
  content: "CAREER";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 20vw, 11rem);
  color: rgba(0, 0, 0, 0.03);
  font-weight: 900;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
.career-section__lead {
  margin-bottom: 3rem;
}
.career-section__lead p {
  font-size: 1rem;
  line-height: 1.8;
}
.career-section__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.career-section__logos-txt {
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}
.career-section__logos .vissel {
  border-left: solid 10px #881c21;
}
.career-section__logos .serezo {
  border-left: solid 10px #da1263;
}
.career-section__logos .gamba {
  border-left: solid 10px #005391;
}
.career-section__logos .sanga {
  border-left: solid 10px #74006b;
}
.career-section__logos .voltis {
  border-left: solid 10px #111183;
}
@media (max-width: 767px) {
  .career-section__logos {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.career-section__head {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem;
  position: relative;
}
.career-section__note {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 600;
  margin: 2rem auto 0 auto;
}

/*--------------------------------------------------------------
# Course & Fee
--------------------------------------------------------------*/
.class-intro-section {
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 6rem 1rem;
  text-align: center;
}
.class-intro-section__inner {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .class-intro-section__inner {
    max-width: 580px;
  }
}
@media (max-width: 767px) {
  .class-intro-section {
    text-align: left;
  }
}
.class-intro-section__text {
  margin-top: 3rem;
  font-size: 1rem;
  line-height: 1.8;
}
.class-intro-section__text p {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .class-intro-section__text {
    font-size: 0.95rem;
  }
}

.class-block {
  background: #1f1f1f;
  color: #ffffff;
  padding: 6rem 1rem 1rem 1rem;
}
.class-block__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 6rem;
}
@media (max-width: 1023px) {
  .class-block__inner {
    flex-direction: column;
    max-width: 580px;
  }
}
.class-block__inner--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .class-block__inner--reverse {
    flex-direction: column;
  }
}
.class-block__content {
  width: 55%;
}
@media (max-width: 1023px) {
  .class-block__content {
    width: 100%;
  }
}
.class-block__image {
  width: 45%;
}
.class-block__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
@media (max-width: 1023px) {
  .class-block__image {
    width: 100%;
    order: -1;
  }
}
.class-block__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.class-block__label img {
  width: 2.5rem;
  height: 2.5rem;
}
.class-block__title {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.class-block__lead {
  font-weight: bold;
  margin-bottom: 1rem;
}
.class-block__sub {
  font-weight: bold;
  font-size: 1rem;
  margin: 2rem 0 1rem;
}
.class-block__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.class-block__table th, .class-block__table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 0.5rem;
  text-align: left;
}
.class-block__table th {
  font-weight: bold;
}

.tryout-block {
  background: #1f1f1f;
  padding: 2rem 1rem 6rem 1rem;
}
.tryout-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  color: #1f1f1f;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 6px;
}
@media (max-width: 1023px) {
  .tryout-block__inner {
    flex-direction: column;
    max-width: 580px;
    margin: auto;
  }
}
.tryout-block__image {
  width: 45%;
}
.tryout-block__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
@media (max-width: 1023px) {
  .tryout-block__image {
    width: 100%;
    order: -1;
  }
}
.tryout-block__content {
  width: 55%;
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 1023px) {
  .tryout-block__content {
    width: 100%;
  }
}
.tryout-block__content p {
  margin-bottom: 1rem;
}
.tryout-block__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.tryout-block__sub {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.tryout-block__list {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  list-style: disc;
}
.tryout-block__list li {
  margin-bottom: 0.5rem;
}
.tryout-block__list li strong {
  font-weight: bold;
}

/* ================================
   Course Page - Futsal School
   ================================ */
.course-futsal-school {
  background: radial-gradient(1200px 520px at 10% 10%, rgba(193, 39, 45, 0.22), transparent 55%), radial-gradient(900px 450px at 90% 30%, rgba(255, 255, 255, 0.1), transparent 60%), rgb(10.6, 10.6, 10.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(48px, 5vw, 88px) 0;
  overflow: hidden;
  color: #fff;
  /* Visual */
  /* Content */
  /* Banner CTA */
}
.course-futsal-school__inner {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}
.course-futsal-school__lead {
  margin: auto;
  margin-bottom: clamp(26px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
  width: 90%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
  padding-left: 14px;
}
.course-futsal-school__lead span {
  color: #B22C31;
}
.course-futsal-school__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: 1.3em;
  border-radius: 999px;
  background: linear-gradient(180deg, #C1272D, rgba(193, 39, 45, 0));
  opacity: 0.95;
}
.course-futsal-school__grid {
  display: grid;
  gap: clamp(22px, 3vw, 40px);
}
@media (min-width: 992px) {
  .course-futsal-school__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}
.course-futsal-school__visual {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}
.course-futsal-school__visual::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 55%);
  transform: rotate(8deg);
  opacity: 0.45;
  pointer-events: none;
}
.course-futsal-school__image {
  width: 100%;
  height: clamp(220px, 36vw, 430px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.course-futsal-school__content {
  display: grid;
  gap: 16px;
}
.course-futsal-school__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 2;
  font-size: 1rem;
  padding: 18px 18px;
}
.course-futsal-school__cta {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.course-futsal-school__cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.45), 0 18px 55px rgba(0, 0, 0, 0.5);
}
.course-futsal-school__cta-banner {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .course-futsal-school__cta:hover .course-futsal-school__cta-banner {
    transform: scale(1.01);
  }
}
.course-futsal-school__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.course-section {
  background: #fff;
  color: #1f1f1f;
  padding: 6rem 1rem;
  max-width: 1280px;
  margin: auto;
}
.course-section__intro {
  max-width: 780px;
  margin: auto;
  text-align: center;
}
.course-section__intro-lead {
  font-size: 1.2rem;
  font-weight: 700;
}
.course-section .course-cards {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 3rem auto;
  flex-wrap: wrap;
  align-items: stretch;
  height: 100%;
}
@media (max-width: 1023px) {
  .course-section .course-cards {
    flex-direction: column;
  }
}
.course-section .course-cards .course-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1023px) {
  .course-section .course-cards .course-card {
    max-width: 580px;
    margin: auto;
  }
}
.course-section .course-cards .course-card__title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
.course-section .course-cards .course-card__price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}
.course-section .course-cards .course-card__price span {
  font-size: 0.9rem;
}
.course-section .course-cards .course-card__type {
  background: #1f1f1f;
  color: #fff;
  border-radius: 1.5rem;
  display: inline-block;
  padding: 0.2rem 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}
.course-section .course-cards .course-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
}
.course-section .course-cards .course-card__desc .course-card__note {
  font-size: 0.75rem;
  color: #C1272D;
  display: block;
  margin-top: 0.5rem;
}
.course-section .course-table {
  max-width: 768px;
  margin: 0 auto 4rem;
}
@media (max-width: 1023px) {
  .course-section .course-table {
    max-width: 580px;
  }
}
.course-section .course-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.course-section .course-table table th, .course-section .course-table table td {
  border-bottom: 1px solid #ddd;
  padding: 0.8rem 0.5rem;
  text-align: left;
}
@media (max-width: 767px) {
  .course-section .course-table table th, .course-section .course-table table td {
    display: block;
    text-align: center;
  }
}
.course-section .course-table table thead th {
  background: #f7f7f7;
}
@media (max-width: 767px) {
  .course-section .course-table thead {
    display: none;
  }
  .course-section .course-table tbody {
    border: solid 1px #ddd;
  }
  .course-section .course-table .op-table-head {
    background-color: #eee;
  }
  .course-section .course-table .op-table-desc {
    border-bottom: none;
    padding: 0.8rem 0.5rem 0 0.5rem;
  }
  .course-section .course-table tbody tr:last-of-type .op-table-price {
    border: none;
  }
}
.course-section .course-table__note {
  margin-top: 1rem;
  font-size: 0.75rem;
}
.course-section .course-banner {
  text-align: center;
  max-width: 780px;
  margin: auto;
}
@media (max-width: 1023px) {
  .course-section .course-banner {
    max-width: 580px;
  }
}
.course-section .course-banner img {
  max-width: 100%;
  height: auto;
  margin: 1rem auto 0;
  display: block;
}
.course-section .course-banner__caption {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 20px;
  color: #1f1f1f;
  font-weight: 700;
  border-radius: 10px;
  background-color: #E9E100;
  margin: 0 auto 1.5rem auto;
}
.course-section .course-banner__caption::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  z-index: 0;
  width: 20px;
  height: 12px;
  transform: translateX(-50%);
  box-sizing: border-box;
  background-color: #E9E100;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (max-width: 767px) {
  .course-section .course-banner img {
    width: 256px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.course-section .highlight {
  color: #C1272D;
  font-weight: bold;
}

.schedule-block {
  background-color: #efefef;
  color: #1f1f1f;
  padding: 6rem 1rem;
}
.schedule-block__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .schedule-block__inner {
    max-width: 580px;
  }
}
.schedule-block__intro {
  margin: 2rem 0 4rem;
  font-size: 1rem;
  line-height: 1.8;
}
.schedule-block__class {
  margin-bottom: 6rem;
}
.schedule-block__class h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: left;
}
.schedule-block__class .schedule-block__label {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}
.schedule-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.schedule-block table th, .schedule-block table td {
  border-bottom: 1px solid #ccc;
  padding: 0.8rem 0.5rem;
  text-align: left;
  white-space: nowrap;
}
.schedule-block table thead {
  background: #f5f5f5;
}
.schedule-block table tbody {
  background-color: #fff;
}
.schedule-block .scroll-hint {
  position: relative;
  overflow-x: auto;
}
.schedule-block .scroll-hint::-webkit-scrollbar {
  height: 6px;
}
.schedule-block .scroll-hint::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.schedule-block .scroll-hint::-webkit-scrollbar-track {
  background: transparent;
}
.schedule-block .scroll-table {
  min-width: 780px;
}
@media (max-width: 767px) {
  .schedule-block table {
    font-size: 0.85rem;
  }
}

.location-block {
  padding: 80px 0;
  background-color: #1e1e1e;
  color: #ffffff;
}
.location-block__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.location-block .location-block__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 6rem 0;
}
.location-block .location-block__item {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .location-block .location-block__item {
    flex-direction: column;
    max-width: 580px;
    margin: auto;
    gap: 0;
  }
}
.location-block .location-block__image {
  flex: 1;
  padding: 1rem;
}
.location-block .location-block__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.location-block .location-block__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  padding: 0 1rem;
}
.location-block .location-block__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.location-block .location-block__address {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.location-block .location-block__address-t {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .location-block .location-block__address {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.location-block .location-block__desc,
.location-block .location-block__note {
  font-size: 14px;
  line-height: 1.6;
}
.location-block .location-block__map-btn {
  display: inline-block;
  background-color: #ffeb00;
  color: #000000;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}

/*--------------------------------------------------------------
# Staff
--------------------------------------------------------------*/
.staff-coach-section {
  padding: 80px 0;
  background-color: #1e1e1e;
  color: #ffffff;
}
.staff-coach-section__inner {
  padding: 0 1rem;
}
.staff-coach-section__intro {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-bottom: 60px;
}
.staff-coach-section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 980px;
  margin: auto;
  justify-content: center;
}
.staff-coach-section__item {
  width: calc(50% - 20px);
  max-width: 390px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .staff-coach-section__item {
    width: 100%;
  }
}
.staff-coach-section__image img {
  width: 100%;
  height: auto;
  display: block;
}
.staff-coach-section__content {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.staff-coach-section__content div {
  display: flex;
  flex-direction: column;
}
.staff-coach-section__role {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
}
.staff-coach-section__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C1272D;
  line-height: 1.5;
}
.staff-coach-section__modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: url("assets/img/pages/staff/c_arrow.svg") no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

.staff-coach-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.staff-coach-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.4s ease-out;
}
.staff-coach-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.9);
  z-index: 1;
}
.staff-coach-modal__content {
  position: relative;
  width: 90%;
  max-width: 640px;
  max-height: 90%;
  overflow-y: auto;
  background: #ffffff;
  padding: 40px 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .staff-coach-modal__content {
    padding: 20px;
  }
}
.staff-coach-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease;
}
.staff-coach-modal__close:hover {
  background-color: #f2f2f2;
  color: #333;
}
.staff-coach-modal__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.staff-coach-modal__info {
  color: #000;
}
.staff-coach-modal__info h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.staff-coach-modal__info dl dt {
  font-weight: bold;
  font-size: 14px;
  margin-top: 1.5rem;
  padding-bottom: 6px;
  border-bottom: 1px dotted #ddd;
}
.staff-coach-modal__info dl dd {
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0 12px 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.recruit-block {
  padding: 80px 0;
  background-color: #ffffff;
  color: #000000;
}
.recruit-block__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.recruit-block__lead {
  font-size: 14px;
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
.recruit-block__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #d60000;
  text-align: center;
  margin-bottom: 30px;
}
.recruit-block__table {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
}
.recruit-block__row {
  display: flex;
  padding-top: 16px;
  border-bottom: 1px solid #ccc;
}
.recruit-block__row dt {
  width: 200px;
  font-weight: bold;
  flex-shrink: 0;
}
.recruit-block__row dd {
  flex: 1;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruit-block__row {
    flex-direction: column;
    gap: 6px;
  }
  .recruit-block__row dt {
    width: auto;
  }
}
.recruit-block__note {
  font-size: 13px;
  text-align: center;
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/
.partner-vision-block {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 100px 0;
}
.partner-vision-block__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.partner-vision-block__title-en {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.partner-vision-block__title-ja {
  font-size: 14px;
  margin-top: 8px;
  color: #ccc;
}
.partner-vision-block__lead {
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 30px;
  line-height: 1.6;
}
.partner-vision-block__text {
  font-size: 14px;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  text-align: center;
}
.partner-vision-block__text p {
  margin: 0;
}
.partner-vision-block__text strong {
  font-weight: bold;
  display: block;
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .partner-vision-block__text {
    text-align: left;
  }
}

.background-divider-block {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.background-divider-block__spacer {
  display: block;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .background-divider-block__spacer {
    height: 200px;
  }
}

.offer-block {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 0;
}
.offer-block__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.offer-block__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.offer-block__item {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .offer-block__item {
    text-align: left;
  }
}
.offer-block__number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #C1272D;
  margin-bottom: 1rem;
}
.offer-block__number span {
  margin-left: 4px;
}
.offer-block__heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.offer-block__text {
  font-size: 14px;
  line-height: 2;
}

.perks-block {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 80px 0;
}
.perks-block__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.perks-block__lead {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .perks-block__lead {
    text-align: left;
  }
}
.perks-block__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.perks-block__item {
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.perks-block__icon {
  width: 200px;
  height: auto;
  margin: 0 auto 1rem auto;
}
.perks-block__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}
.perks-block__text {
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}
.perks-block__note {
  text-align: center;
  font-size: 12px;
  color: #cccccc;
  margin-top: 40px;
}
.perks-block__banner {
  margin-top: 80px;
}

.plan-block {
  padding: 80px 0;
  background-color: #ffffff;
  color: #000;
}
.plan-block__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.plan-block__lead {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .plan-block__lead {
    text-align: left;
  }
}
.plan-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .plan-block__list {
    flex-direction: column;
  }
}
.plan-block__card {
  flex: 1 1 30%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 32px 24px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
  margin: auto;
}
.plan-block__card--bronze {
  border-color: #8d6449;
}
.plan-block__card--silver {
  border-color: #888;
}
.plan-block__card--gold {
  border-color: #c1a000;
}
@media screen and (max-width: 768px) {
  .plan-block__card {
    width: 100%;
  }
}
.plan-block__label {
  font-size: 16px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.plan-block__label::before {
  content: "";
}
.plan-block__card--bronze .plan-block__label {
  background-color: #8d6449;
}
.plan-block__card--silver .plan-block__label {
  background-color: #888;
}
.plan-block__card--gold .plan-block__label {
  background-color: #c1a000;
}
.plan-block__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.plan-block__price {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.plan-block__price span {
  font-size: 3rem;
}
.plan-block__desc {
  font-size: 13px;
  line-height: 1.8;
}
.plan-block__features {
  margin-top: 16px;
  border-top: 1px solid #ddd;
  list-style: none;
  padding: 16px 0 0;
  font-size: 12px;
}
.plan-block__features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.plan-block__features li img {
  width: 20px;
  height: auto;
}
.plan-block__features li span {
  padding-right: 8px;
}
.plan-block__features li span + span {
  margin-left: 8px;
  font-weight: normal;
  font-size: 10px;
  color: #333;
}

.partner-gallery-section {
  padding: 80px 0;
  background-color: #1f1f1f;
  color: #fff;
}
.partner-gallery-section__inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.partner-gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .partner-gallery-section__grid {
    grid-template-columns: 1fr;
  }
}
.partner-gallery-section__item {
  overflow: hidden;
  border-radius: 8px;
}
.partner-gallery-section__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.partner-gallery-section__item img:hover {
  transform: scale(1.05);
}

.top-partner-section {
  background-color: #f8f8f8;
  padding: 4rem 1rem;
  text-align: center;
}
.top-partner-section .container {
  max-width: 1024px;
  margin: 0 auto;
}
.top-partner-section .partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}
.top-partner-section .partner-logos__item {
  flex: 1 1 30%;
  max-width: 180px;
}
.top-partner-section .partner-logos__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-partner-section__link {
  font-size: 0.875rem;
  color: #666;
}
.top-partner-section__link a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.top-partner-section__link a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .top-partner-section .partner-logos {
    flex-direction: column;
    align-items: center;
  }
  .top-partner-section .partner-logos__item {
    max-width: 50%;
  }
  .top-partner-section__link {
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq-section {
  padding: 80px 0;
  background-color: #1f1f1f;
  color: #ffffff;
}
.faq-section__inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.faq-section a {
  color: currentcolor;
  text-decoration: underline;
}

.faq-block {
  margin-top: 60px;
}
.faq-block__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  border-left: 4px solid #C1272D;
  padding-left: 16px;
}
.faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #444;
  border-radius: 6px;
  overflow: hidden;
  background-color: #2a2a2a;
}
.faq-item__question {
  width: 100%;
  padding: 20px 40px 20px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  background-color: #2a2a2a;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}
.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s;
}
.faq-item__question.is-open::after {
  content: "-";
}
.faq-item__question:hover {
  background-color: #333;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  background-color: #1f1f1f;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-item__answer p {
  padding: 20px 20px;
  font-size: 15px;
  line-height: 1.8;
}
.faq-item__answer.is-open {
  max-height: 500px;
}

/*--------------------------------------------------------------
# Company
--------------------------------------------------------------*/
.company-philosophy {
  background: #1f1f1f;
  color: #fff;
  padding: 80px 20px;
  background-image: url(assets/img/pages/company/field.jpg);
  background-blend-mode: color-dodge;
  background-position: center;
  background-size: cover;
}
.company-philosophy__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.company-philosophy__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 9rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .company-philosophy__content {
    flex-direction: column;
    gap: 4rem;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .company-philosophy__content {
    flex-direction: column;
    max-width: 420px;
    margin: auto;
  }
}
.company-philosophy__text {
  flex: 1;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.company-philosophy__text p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .company-philosophy__text {
    max-width: 640px;
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .company-philosophy__text {
    order: 2;
  }
}
.company-philosophy__signature {
  text-align: right;
  font-size: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.company-philosophy__signature-img {
  height: 32px;
  width: auto;
}
.company-philosophy__image {
  position: relative;
  flex: 0 0 360px;
  max-width: 100%;
  border-radius: 8px;
}
.company-philosophy__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .company-philosophy__image {
    width: 90%;
    order: 1;
  }
}
.company-philosophy__catch {
  position: absolute;
  bottom: 0;
  left: -3rem;
  color: #d32f2f;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .company-philosophy__catch {
    bottom: -3rem;
    left: -1rem;
    font-size: 3rem;
  }
}

.company-info {
  background-color: #1f1f1f;
  color: #fff;
  padding: 80px 20px;
}
.company-info__inner {
  max-width: 780px;
  margin: 0 auto;
}
.company-info__table {
  margin-top: 60px;
  display: grid;
  row-gap: 24px;
  -moz-column-gap: 48px;
       column-gap: 48px;
  grid-template-columns: 200px 1fr;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company-info__table {
    display: block;
  }
}
.company-info__table::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 200px;
  width: 1px;
  background-color: #666;
}
@media screen and (max-width: 768px) {
  .company-info__table::after {
    display: none;
  }
}
.company-info__row {
  display: contents;
}
@media screen and (max-width: 768px) {
  .company-info__row {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #999;
  }
}
.company-info__row dt {
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .company-info__row dt {
    margin-bottom: 0.5em;
  }
}
.company-info__row dd {
  font-size: 15px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .company-info__row dd {
    margin-bottom: 0.5em;
  }
}

/*--------------------------------------------------------------
# Futsal
--------------------------------------------------------------*/
.futsal-page {
  background-color: #050505;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

/* Button Component */
.futsal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-weight: 700;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.futsal-btn--primary {
  background-color: #cc0000;
  color: #ffffff;
}
.futsal-btn--primary:hover {
  background-color: #990000;
  box-shadow: 0 10px 15px rgba(204, 0, 0, 0.2);
}
.futsal-btn--secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.futsal-btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.futsal-btn--full {
  width: 100%;
}
@media (min-width: 768px) {
  .futsal-btn--full {
    width: auto;
  }
}

/* Section Common */
.futsal-section {
  padding: 80px 20px;
}
.futsal-section__container {
  max-width: 1100px;
  margin: 0 auto;
}
.futsal-section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 60px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .futsal-section__title {
    font-size: 3rem;
  }
}
.futsal-section__title span {
  display: block;
  font-family: "Oswald", sans-serif;
  color: #D4AF37;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.futsal-section__title em {
  font-style: normal;
  color: #cc0000;
}

/* Hero Section */
.futsal-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
  /*アチーブメント：テキスト廃止予定
      &__badge {
          display: inline-block;
          background-color: rgba(5, 5, 5, 0.7);
          border-left: 4px solid #D4AF37;
          padding: 20px 30px;
          margin-bottom: 40px;
          backdrop-filter: blur(4px);
          text-align: left;

          p {
              display: flex;
              align-items: center;
              gap: 10px;
              font-family: $font-accent;
              font-weight: 700;
          }
      }

      &__badge-main {
          color: #D4AF37;
          font-size: 1.1rem;
          margin-bottom: 5px;
          @media (min-width: 768px) { font-size: 1.5rem; }
      }

      &__badge-sub {
          color: #D4AF37;
          font-size: 1.1rem;
          @media (min-width: 768px) { font-size: 1.5rem; }
      }
      */
}
.futsal-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.futsal-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.futsal-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.8) 100%);
}
.futsal-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  margin-top: 60px;
}
.futsal-hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .futsal-hero__title {
    font-size: 4rem;
    text-align: center;
  }
}
.futsal-hero__title span {
  color: #cc0000;
  display: inline-block;
}
.futsal-hero__lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .futsal-hero__lead {
    font-size: 1.5rem;
  }
}
.futsal-hero__badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .futsal-hero__badges-container {
    gap: 15px;
  }
}
.futsal-hero__badge-img {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--easing);
}
.futsal-hero__badge-img :hover {
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .futsal-hero__badge-img {
    max-width: 140px;
  }
}

/* Achievements Section */
.achievements {
  background-color: #1a1a1a;
  border-top: 4px solid #D4AF37;
}
.achievements__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .achievements__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-achievement {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
}
.card-achievement__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-achievement:hover .card-achievement__img {
  transform: scale(1.1);
  opacity: 0.8;
}
.card-achievement__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.card-achievement__label {
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.card-achievement__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-achievement__result {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.card-achievement__result span {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 10px;
}

/* Philosophy Section */
.philosophy {
  background-color: #050505;
}
.philosophy__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  .philosophy__wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}
.philosophy__profile {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .philosophy__profile {
    width: 40%;
  }
}
.philosophy__profile img {
  width: 90%;
  margin: auto;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.philosophy__profile::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 5px;
  width: 80px;
  height: 80px;
  border-top: 4px solid #cc0000;
  border-left: 4px solid #cc0000;
}
.philosophy__profile::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 5px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid #cc0000;
  border-right: 4px solid #cc0000;
}
.philosophy__name {
  text-align: right;
  margin-top: 15px;
}
.philosophy__name small {
  color: #cccccc;
  display: block;
  font-size: 0.9rem;
}
.philosophy__name strong {
  font-size: 1.2rem;
}
.philosophy__text {
  width: 100%;
}
@media (min-width: 992px) {
  .philosophy__text {
    width: 60%;
  }
}
.philosophy__headline {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .philosophy__headline {
    font-size: 2.5rem;
  }
}
.philosophy__headline span {
  color: #cc0000;
}
.philosophy__block {
  margin-bottom: 50px;
  color: #ddd;
}
.philosophy__block h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  border-left: 10px solid #cc0000;
  padding-left: 15px;
}
.philosophy__block strong {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #cc0000;
  text-decoration-thickness: 2px;
}

/* Analys Section */
.futsal-analysis {
  background-color: #000;
  border-top: 1px solid #333;
}
.futsal-analysis__grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  .futsal-analysis__grid {
    flex-direction: row;
    align-items: center;
  }
}
.futsal-analysis__visual {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .futsal-analysis__visual {
    width: 50%;
  }
}
.futsal-analysis__img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.futsal-analysis__content {
  width: 100%;
}
@media (min-width: 992px) {
  .futsal-analysis__content {
    width: 50%;
  }
}
.futsal-analysis__heading {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid #C1272D;
}
.futsal-analysis__result {
  background-color: rgba(5, 5, 5, 0.3);
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #D4AF37;
}
.futsal-analysis__result p {
  font-weight: 700;
  font-size: 1.1rem;
  color: #D4AF37;
}
.futsal-analysis__intro {
  text-align: center;
  margin-bottom: 50px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.futsal-analysis__quote {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid #D4AF37;
  text-align: left;
}
.futsal-analysis__quote-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 10px;
}
.futsal-analysis__quote-highlight {
  color: #D4AF37;
  font-size: 1.4rem;
}
.futsal-analysis__quote-credit {
  display: block;
  text-align: right;
  color: #ccc;
  font-size: 0.9rem;
}
.futsal-analysis__detail-title {
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 2px solid #C1272D;
}
.futsal-analysis__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.futsal-analysis__list-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-left: 20px;
  position: relative;
  color: #ddd;
}
.futsal-analysis__list-item:last-child {
  border-bottom: none;
}
.futsal-analysis__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.futsal-analysis__list-item:nth-child(1)::before {
  background-color: #4dffac;
}
.futsal-analysis__list-item:nth-child(2)::before {
  background-color: #4da6ff;
}
.futsal-analysis__list-item:nth-child(3)::before {
  background-color: #ffcc00;
}
.futsal-analysis__item-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--futsal-gold-light);
}
.futsal-analysis__item-number {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-right: 10px;
  line-height: 1;
}
.futsal-analysis__item-text {
  color: var(--grey-base);
  line-height: 1.6;
  font-size: 0.95rem;
}
.futsal-analysis__closing {
  margin-top: 40px;
  text-align: center;
  background: linear-gradient(to right, rgba(193, 39, 45, 0.1), rgba(0, 0, 0, 0), rgba(193, 39, 45, 0.1));
  padding: 20px;
  border: 1px solid rgba(193, 39, 45, 0.3);
  border-radius: 4px;
}
.futsal-analysis__closing p {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Global Voice Section */
.global-voice {
  background: linear-gradient(to bottom, #1a1a1a, #050505);
}
.global-voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .global-voice__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .global-voice__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  background-color: #050505;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.quote-card__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: rgba(204, 0, 0, 0.2);
}
.quote-card__text {
  position: relative;
  z-index: 2;
  font-style: italic;
  color: #ccc;
  margin-bottom: 20px;
}
.quote-card__author {
  position: relative;
  text-align: right;
  font-weight: 700;
  color: #D4AF37;
  z-index: 2;
}
.quote-card--featured {
  background: linear-gradient(135deg, #cc0000, #550000);
  border: none;
}
@media (min-width: 768px) {
  .quote-card--featured {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .quote-card--featured {
    grid-column: span 1;
  }
}
.quote-card--featured .quote-card__icon {
  color: rgba(0, 0, 0, 0.3);
}
.quote-card--featured .quote-card__text {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}
.quote-card--featured .quote-card__author {
  color: #ffffff;
}
.quote-card__silhouette {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: auto;
  height: 100%;
  opacity: 0.2; /* 薄く表示 */
  z-index: 1;
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
}

/* Benefits Section */
.benefits {
  background-color: #050505;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #333;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.benefit-item:hover {
  border-color: #cc0000;
}
.benefit-item__icon {
  width: 80px;
  height: 80px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #D4AF37;
}
.benefit-item__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.benefit-item__desc {
  color: #aaa;
  font-size: 0.95rem;
}

/* School Info Section */
.futsal-school-info {
  background-color: #1f1f1f;
}

.futsal-school-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .futsal-school-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.futsal-school-card {
  background-color: #050505;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.futsal-school-card--featured {
  border: 2px solid #C1272D;
  position: relative;
}
.futsal-school-card--featured .futsal-school-card__header {
  background: linear-gradient(to bottom, rgba(193, 39, 45, 0.1), rgba(0, 0, 0, 0));
}
.futsal-school-card__header {
  padding: 30px;
  background-color: rgba(5, 5, 5, 0.5);
  border-bottom: 1px solid #333;
  text-align: center;
}
.futsal-school-card__badge {
  display: inline-block;
  background-color: #C1272D;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
  vertical-align: middle;
  animation: futsal-pulse 2s infinite;
}
.futsal-school-card__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}
.futsal-school-card__body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@keyframes futsal-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.futsal-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.futsal-info-item__label {
  font-weight: 700;
  color: #eee;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.futsal-info-item__label i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
  color: #D4AF37;
}
.futsal-info-item__value {
  color: #ffffff;
  font-size: 1.1rem;
  padding-left: 28px;
}
.futsal-info-item__value strong {
  display: block;
  margin-bottom: 4px;
}
.futsal-info-item__value span {
  font-size: 0.9rem;
  color: #ccc;
}

.futsal-price-mini {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
}
.futsal-price-mini th,
.futsal-price-mini td {
  padding: 4px 0;
  vertical-align: top;
}
.futsal-price-mini th {
  text-align: left;
  color: #eee;
  font-weight: normal;
  font-size: 0.9rem;
  width: 70px;
}
.futsal-price-mini td {
  text-align: right;
  color: #ffffff;
  font-weight: 700;
}
.futsal-price-mini .note {
  font-size: 0.8rem;
  color: #E9E100;
  font-weight: normal;
  display: block;
  text-align: right;
  margin-top: 2px;
}

.futsal-map-embed {
  background-color: #333;
  border-radius: 4px;
  margin-top: 15px;
  overflow: hidden;
}
.futsal-map-embed iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}

.futsal-sub-venue {
  border: 1px solid #333;
  border-radius: 4px;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.02);
}
.futsal-sub-venue__summary {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  list-style: none;
}
.futsal-sub-venue__summary::-webkit-details-marker {
  display: none;
}
.futsal-sub-venue__summary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.futsal-sub-venue__summary i.toggle-icon {
  transition: transform 0.3s;
}
.futsal-sub-venue[open] .futsal-sub-venue__summary i.toggle-icon {
  transform: rotate(180deg);
}
.futsal-sub-venue__content {
  padding: 0 15px 15px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* FAQ Section */
.faq {
  background-color: #050505;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__item {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}
.faq__item[open] .faq__summary {
  background-color: rgba(204, 0, 0, 0.1);
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  color: #cc0000;
}
.faq__summary {
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  /* Hide default marker */
  list-style: none;
}
.faq__summary::-webkit-details-marker {
  display: none;
}
.faq__icon {
  transition: transform 0.3s;
}
.faq__answer {
  padding: 20px 20px 30px;
  color: #ccc;
  border-top: 1px solid #333;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CTA / Footer */
.cta {
  padding: 100px 20px;
  background: linear-gradient(to top, #050505 0%, #990000 100%);
  text-align: center;
}
.cta__title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 3rem;
  }
}
.cta__text {
  color: #ddd;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 768px) {
  .cta__buttons {
    flex-direction: row;
  }
}

.footer {
  background-color: #050505;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #222;
  color: #666;
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-page {
  padding: 6rem 1rem;
  background: #1f1f1f;
  color: #fff;
}
.contact-page .contact-form {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 20px;
}
.contact-page .contact-form__wrapper input.short-input,
.contact-page .contact-form__wrapper textarea.short-input,
.contact-page .contact-form__wrapper select.short-input {
  width: 200px;
}
.contact-page .contact-form__wrapper input.medium-input,
.contact-page .contact-form__wrapper textarea.medium-input,
.contact-page .contact-form__wrapper select.medium-input {
  width: 400px;
}
@media (max-width: 768px) {
  .contact-page .contact-form__wrapper input.medium-input,
  .contact-page .contact-form__wrapper textarea.medium-input,
  .contact-page .contact-form__wrapper select.medium-input {
    width: 100%;
  }
}
.contact-page .contact-form__wrapper input.long-input,
.contact-page .contact-form__wrapper textarea.long-input,
.contact-page .contact-form__wrapper select.long-input {
  width: 100%;
}
.contact-page .contact-form__wrapper input[type=text],
.contact-page .contact-form__wrapper input[type=email],
.contact-page .contact-form__wrapper input[type=tel],
.contact-page .contact-form__wrapper input[type=number],
.contact-page .contact-form__wrapper textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
.contact-page .contact-form__wrapper textarea {
  height: 160px;
  resize: vertical;
}
.contact-page .contact-form__wrapper dt {
  margin-top: 24px;
  font-weight: bold;
}
.contact-page .contact-form__wrapper dt .required {
  background-color: #C1272D;
  color: #fff;
  margin-left: 4px;
  font-size: 0.9em;
  font-size: 0.7rem;
  padding: 0 5px;
  border-radius: 100px;
  line-height: 1;
}
.contact-page .contact-form__wrapper dd {
  margin-top: 8px;
}
.contact-page .contact-form__wrapper dd .wpcf7-radio,
.contact-page .contact-form__wrapper dd .wpcf7-checkbox {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-page .contact-form__wrapper dd .wpcf7-radio label,
.contact-page .contact-form__wrapper dd .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}
.contact-page .contact-form .form-agree {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}
.contact-page .contact-form .form-agree .agree-label {
  display: inline-block;
  cursor: pointer;
}
.contact-page .contact-form .form-submit {
  margin-top: 30px;
  text-align: center;
}
.contact-page .contact-form .form-submit input[type=submit] {
  background-color: #C1272D;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-page .contact-form .form-submit input[type=submit]:hover {
  background-color: #a80000;
}
.contact-page .contact-form .wpcf7-spinner {
  display: none !important;
}
.contact-page .recaptcha-notice {
  font-size: 0.7rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0 auto;
  color: #ccc;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*--------------------------------------------------------------
# privacy-policy
--------------------------------------------------------------*/
.section-privacy {
  padding: 6rem 0;
  background-color: #1f1f1f;
  color: #fff;
}
.section-privacy .container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-privacy h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #C1272D;
  padding-left: 1rem;
}
.section-privacy p,
.section-privacy li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.section-privacy ul {
  padding-left: 1.5rem;
  list-style: disc;
}
.section-privacy ul li {
  margin-bottom: 0.5rem;
}
.section-privacy a {
  color: transparent;
  text-decoration: underline;
  color: #fff;
}
.section-privacy a:hover {
  text-decoration: none;
}
.section-privacy .text-right {
  text-align: right;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #eee;
}

/*--------------------------------------------------------------
# Blog(public/member共通)
--------------------------------------------------------------*/
.blog-archive {
  background: #1f1f1f;
  color: #fff;
  padding: 80px 20px;
}
.blog-archive .container {
  max-width: 1080px;
  margin: 0 auto;
}
.blog-archive .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.blog-archive .section-title__en {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
}
.blog-archive .section-title__ja {
  font-size: 16px;
  color: #ccc;
  margin-top: 8px;
}
.blog-archive .current-tag-label {
  font-size: 0.8rem;
  margin-bottom: 5px;
}
.blog-archive .blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 30px;
  align-items: flex-end;
}
.blog-archive .blog-filter__block {
  display: flex;
  flex-direction: column;
}
.blog-archive .blog-filter__label {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 6px;
}
.blog-archive .blog-filter__category {
  min-width: 220px;
}
.blog-archive .blog-filter__category select {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
}
.blog-archive .blog-filter__search {
  flex: 1;
}
.blog-archive .blog-filter__search form {
  display: flex;
  gap: 8px;
  max-width: 400px;
}
.blog-archive .blog-filter__search form input[type=text] {
  flex: 1 1 auto;
  max-width: 260px;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fff;
  color: #333;
}
@media screen and (max-width: 768px) {
  .blog-archive .blog-filter__search form input[type=text] {
    max-width: 100%;
  }
}
.blog-archive .blog-filter__search form button {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.blog-archive .blog-filter__search form button:hover {
  background: #b71c1c;
}
.blog-archive .blog-tags-wrap {
  margin-bottom: 30px;
}
.blog-archive .blog-tags-wrap .blog-filter__label {
  margin-bottom: 8px;
}
.blog-archive .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-archive .blog-tags li {
  list-style: none;
}
.blog-archive .blog-tags li a {
  display: inline-block;
  background: #444;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-archive .blog-tags li a:hover {
  background: #d32f2f;
}
.blog-archive .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.blog-archive .blog-card {
  background: #2c2c2c;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-archive .blog-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0 0 10px;
}
.blog-archive .blog-card a:hover {
  background: #333;
}
.blog-archive .blog-card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-archive .blog-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-archive .blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}
.blog-archive .blog-card__category {
  background: #d32f2f;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}
.blog-archive .blog-card__title {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 16px 0;
  line-height: 1.4;
}
.blog-archive .blog-card__tags {
  padding: 0 16px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.blog-archive .blog-card__tags a {
  padding: 3px 0;
  color: #ccc;
}
.blog-archive .blog-card__tags a:hover {
  color: #C1272D;
  background-color: transparent;
}
.blog-archive .blog-card__tag {
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-archive .blog-card__tag:hover {
  color: #fff;
}
.blog-archive .pagination {
  text-align: center;
}
.blog-archive .pagination .page-numbers {
  display: inline-block;
  padding: 6px 10px;
  margin: 0 4px;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: background 0.2s;
}
.blog-archive .pagination .page-numbers:hover {
  background: #d32f2f;
  border-color: #d32f2f;
}
.blog-archive .pagination .page-numbers.current {
  background: #d32f2f;
  border-color: #d32f2f;
}
.blog-archive .no-post {
  text-align: center;
  font-size: 16px;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .blog-archive .blog-list {
    /* スマホは1列表示 */
    grid-template-columns: 1fr;
  }
  .blog-archive .blog-filter {
    flex-direction: column;
  }
  .blog-archive .blog-filter__block {
    width: 100%;
  }
  .blog-archive .blog-filter__search form {
    flex-direction: column;
  }
  .blog-archive .blog-filter__search form button {
    width: 100%;
  }
  .blog-archive .blog-card__thumb {
    height: 180px;
  }
}

.blog-single {
  padding: 60px 0;
  background: #1f1f1f;
}
.blog-single .container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.blog-single .blog-post {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.blog-single .blog-post__thumb img {
  width: 100%;
  height: auto;
}
.blog-single .blog-post__meta {
  font-size: 14px;
  color: #888;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.blog-single .blog-post__category {
  font-weight: bold;
  color: #cc0000;
}
.blog-single .blog-post__title {
  font-size: 28px;
  margin-bottom: 20px;
}
.blog-single .blog-post__content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.blog-single .blog-post__tags .tag {
  display: inline-block;
  margin: 20px 10px 0 0;
  padding: 5px 10px;
  background: #eee;
  border-radius: 16px;
  font-size: 14px;
  color: #555;
}
.blog-single .blog-post__share {
  margin-top: 40px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-single .blog-post__share-label {
  position: relative;
  display: inline-block;
  background: #1f1f1f;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.8rem;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.blog-single .blog-post__share-icons {
  display: flex;
  gap: 16px;
}
.blog-single .blog-post__share-icons a {
  display: inline-block;
  width: 110px;
}
.blog-single .blog-post__share-icons a img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-single .related-posts {
  margin-top: 60px;
  color: #fff;
}
.blog-single .related-posts__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.blog-single .related-posts__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .blog-single .related-posts__list {
    grid-template-columns: 1fr;
  }
}
.blog-single .related-posts .related-post {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.blog-single .related-posts .related-post__thumb img {
  width: 100%;
  height: auto;
}
.blog-single .related-posts .related-post__title {
  padding: 10px;
  font-size: 16px;
  color: #333;
}

/*--------------------------------------------------------------
# member
--------------------------------------------------------------*/
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background-color: #1f1f1f;
  min-height: calc(100vh - var(--header-height)); /* ヘッダー分の高さを引く */
}
.login-page .login-container {
  width: 100%;
  max-width: 380px;
  color: #fff;
}
.login-page .login-container .login-error-notice {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #e74c3c; /* 赤いアクセント */
  background-color: #fdecea; /* 薄い赤背景 */
  color: #c0392b; /* ダークレッド文字 */
  border-radius: 5px;
  font-size: 0.9375rem;
}
.login-page .login-container .login-card {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  color: #333;
  /* ユーザー名＆パスワードのフィールドは wp_login_form が自動出力 */
}
.login-page .login-container .login-card #loginform {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.login-page .login-container .login-card #loginform input[type=text],
.login-page .login-container .login-card #loginform input[type=password] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dcdde1;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  outline: none;
  /* #user_login, #user_pass などの ID を利用して調整 */
}
.login-page .login-container .login-card #loginform input[type=text]:focus,
.login-page .login-container .login-card #loginform input[type=password]:focus {
  border: solid 3px #2980b9;
}
.login-page .login-container .login-card #loginform input[type=text] #user_login,
.login-page .login-container .login-card #loginform input[type=text] #user_pass,
.login-page .login-container .login-card #loginform input[type=password] #user_login,
.login-page .login-container .login-card #loginform input[type=password] #user_pass {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dcdde1;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  outline: none;
}
.login-page .login-container .login-card #loginform input[type=text] #user_login:focus,
.login-page .login-container .login-card #loginform input[type=text] #user_pass:focus,
.login-page .login-container .login-card #loginform input[type=password] #user_login:focus,
.login-page .login-container .login-card #loginform input[type=password] #user_pass:focus {
  border-color: #2980b9;
}
.login-page .login-container .login-card #loginform input[type=text] #rememberme,
.login-page .login-container .login-card #loginform input[type=password] #rememberme {
  margin-right: 0.5rem;
}
.login-page .login-container .login-card #loginform input[type=text] label[for=rememberme],
.login-page .login-container .login-card #loginform input[type=password] label[for=rememberme] {
  font-size: 0.875rem;
  color: #34495e;
}
.login-page .login-container .login-card #loginform #wp-submit {
  margin-top: 0.75rem;
  padding: 0.75rem 2rem;
  background-color: #333;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.login-page .login-container .login-card #loginform #wp-submit:hover {
  background-color: #217dbb;
}
.login-page .login-container .login-card .login-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #7f8c8d;
  line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .login-page {
    padding: 4rem 2rem;
  }
  .login-page .login-container {
    max-width: 100%;
  }
  .login-page .login-container .login-card {
    padding: 1.5rem 1rem;
  }
  .login-page .login-container .login-card .login-title {
    font-size: 1.5rem;
  }
  .login-page .login-container .login-card .login-form {
    gap: 1rem;
  }
  .login-page .login-container .login-card .login-form #wp-submit {
    font-size: 0.9375rem;
    padding: 0.65rem;
  }
  .login-page .login-container .login-card .login-note {
    font-size: 0.75rem;
  }
}
/* ===========================================================
   member-dashboard (Block) → BEMスタイルで書く
   =========================================================== */
.member-dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fdfdfd;
  color: #2c3e50;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* 1. Intro Section (Block__Element) */
  /* 2. Info Section (Block__Element) */
  /* 3. Schedule Section (Block__Element) */
  /* 4. PDF Link Section (Block__Element) */
  /* 5. Contact Section (Block__Element) */
  /* 6. Logout Section (Block__Element) */
  /* レスポンシブ対応 */
}
.member-dashboard__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #34495e;
}
.member-dashboard__intro {
  width: 100%;
  background: linear-gradient(135deg, #2980b9, #3498db);
  color: #ffffff;
  padding: 4rem 1rem;
}
.member-dashboard__intro-banner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.member-dashboard__intro-banner-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.member-dashboard__intro-banner-subtitle {
  font-size: 1.125rem;
}
.member-dashboard__info {
  width: 100%;
  max-width: 960px;
  padding: 3rem 1rem;
}
.member-dashboard__info-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.member-dashboard__info-posts-card { /* 例: member-dashboard__info-posts-card */
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.member-dashboard__info-posts-card:hover {
  transform: translateY(-4px);
}
.member-dashboard__info-posts-card-thumb {
  overflow: hidden;
}
.member-dashboard__info-posts-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.member-dashboard__info-posts-card-content {
  padding: 1rem;
}
.member-dashboard__info-posts-card-content-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.member-dashboard__info-posts-card-content-title a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.2s ease;
}
.member-dashboard__info-posts-card-content-title a:hover {
  color: #1c5980;
}
.member-dashboard__info-posts-card-content-meta {
  font-size: 0.875rem;
  color: #7f8c8d;
  margin-bottom: 0.75rem;
}
.member-dashboard__info-posts-card-content-excerpt {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #4a4a4a;
}
.member-dashboard__info-archive-link {
  text-align: center;
}
.member-dashboard__info-archive-link-button { /* member-dashboard__info-archive-link-button */
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2980b9;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.member-dashboard__info-archive-link-button:hover {
  background-color: #217dbb;
  box-shadow: 0 4px 8px rgba(33, 125, 187, 0.2);
}
.member-dashboard__schedule {
  width: 100%;
  max-width: 960px;
  padding: 3rem 1rem;
  background-color: #ffffff;
  margin-bottom: 2rem;
}
.member-dashboard__schedule-calendar .eo-calendar {
  width: 100%;
  border: 1px solid #dcdde1;
  border-radius: 0.75rem;
  overflow: hidden;
}
.member-dashboard__schedule-calendar .eo-calendar .eo-month {
  background-color: #ecf0f1;
  padding: 0.75rem;
  text-align: center;
  font-size: 1.125rem;
  color: #2c3e50;
}
.member-dashboard__schedule-calendar .eo-calendar table {
  width: 100%;
  border-collapse: collapse;
}
.member-dashboard__schedule-calendar .eo-calendar table th, .member-dashboard__schedule-calendar .eo-calendar table td {
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.875rem;
  color: #4a4a4a;
}
.member-dashboard__schedule-calendar .eo-calendar table th {
  background-color: #f5f6fa;
  font-weight: 600;
}
.member-dashboard__schedule-calendar .eo-calendar table td {
  height: 4rem;
  vertical-align: top;
}
.member-dashboard__schedule-calendar .eo-calendar table .eo-day-has-event {
  background-color: #d6eaf8;
  cursor: pointer;
}
.member-dashboard__schedule-calendar .eo-calendar table .eo-day-has-event:hover {
  background-color: #aed6f1;
}
.member-dashboard__pdf-link {
  width: 100%;
  max-width: 960px;
  padding: 3rem 1rem;
}
.member-dashboard__pdf-link-button-wrapper {
  text-align: center;
}
.member-dashboard__pdf-link-button-wrapper-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #27ae60;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.member-dashboard__pdf-link-button-wrapper-button:hover {
  background-color: #1e8449;
  box-shadow: 0 4px 8px rgba(30, 132, 73, 0.2);
}
.member-dashboard__contact {
  width: 100%;
  max-width: 960px;
  padding: 3rem 1rem 4rem;
}
.member-dashboard__contact-text {
  font-size: 0.975rem;
  line-height: 1.6;
  text-align: center;
  color: #4a4a4a;
}
.member-dashboard__contact-text a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.2s ease;
}
.member-dashboard__contact-text a:hover {
  color: #1c5980;
}
.member-dashboard__logout {
  width: 100%;
  max-width: 960px;
  padding: 2rem 1rem;
  text-align: center;
}
.member-dashboard__logout-wrapper {
  display: inline-block;
}
.member-dashboard__logout-wrapper-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #c0392b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.member-dashboard__logout-wrapper-button:hover {
  background-color: #993c2e;
  box-shadow: 0 4px 8px rgba(153, 60, 46, 0.2);
}
@media (max-width: 768px) {
  .member-dashboard__info-posts {
    grid-template-columns: 1fr;
  }
  .member-dashboard__schedule, .member-dashboard__pdf-link, .member-dashboard__contact, .member-dashboard__logout {
    padding: 2rem 1rem;
  }
}
@media (max-width: 480px) {
  .member-dashboard__intro-banner-title {
    font-size: 1.75rem;
  }
  .member-dashboard__intro-banner-subtitle {
    font-size: 1rem;
  }
  .member-dashboard__info-archive-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
  .member-dashboard__pdf-link-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
  .member-dashboard__contact-text {
    font-size: 0.9rem;
  }
  .member-dashboard__logout-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}

.member-schedule {
  background-color: #ffffff;
  padding: 5rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #1f1f1f;
  /* ============================================================
     カレンダーラッパー（アスペクト比 4:3 を維持する例）
     ============================================================ */
  /* ============================================================
     レスポンシブ調整：スマホ幅ではアスペクト比を 3:4 (133%) にする例
     ============================================================ */
}
.member-schedule .container {
  max-width: 960px;
  margin: 0 auto;
}
.member-schedule__calendar-wrapper {
  position: relative;
  width: 100%;
  /* アスペクト比を固定（例：4:3 = 75% のパディング） */
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(31, 31, 31, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(31, 31, 31, 0.05);
  /* 影を内側にするなら inset を使う例
  box-shadow: inset 0 0 0 1px rgba($color-dark, 0.1);
  */
  /* 背景色を薄く灰色にしたい場合 */
  /* background-color: #f9f9f9; */
}
.member-schedule__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* スクロールを隠す */
  overflow: hidden;
}
@media (max-width: 480px) {
  .member-schedule__calendar-wrapper {
    /* 縦長の画面で見やすいように：3:4 ≒ 133% */
    padding-bottom: 133%;
  }
}

.member-pdf {
  background-color: #eee;
  padding: 4rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #1f1f1f;
  /* ================= PDFカードリスト ================= */
  /* ================= 各カード ================= */
  /* ================= PDF未登録時メッセージ ================= */
  /* ================= レスポンシブ ================= */
}
.member-pdf .container {
  max-width: 960px;
  margin: 0 auto;
}
.member-pdf__list {
  display: grid;
  /* 常に3列固定 */
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.member-pdf__card {
  background-color: #f9f9f9;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s ease;
  /* 説明文 */
}
.member-pdf__card:hover {
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.08);
}
.member-pdf__card .member-pdf__meta {
  margin-bottom: 1.25rem;
}
.member-pdf__card .member-pdf__title {
  font-size: 1rem;
  color: #1f1f1f;
  line-height: 1.4;
  margin: 0 0 0.75rem;
}
.member-pdf__card .member-pdf__description {
  font-size: 0.8;
  color: #1f1f1f;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.member-pdf__card .member-pdf__button {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #C1272D;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}
.member-pdf__card .member-pdf__button:hover {
  background-color: rgb(163.3012931034, 32.9987068966, 38.0754310345);
}
.member-pdf__card .member-pdf__button--disabled {
  color: #1f1f1f;
  background-color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}
.member-pdf__none {
  text-align: center;
  font-size: 1rem;
  color: #1f1f1f;
  opacity: 0.7;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .member-pdf__list {
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .member-pdf {
    /* スマホ時は1列に切り替え */
  }
  .member-pdf {
    padding: 3rem 1rem;
  }
  .member-pdf__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .member-pdf__card {
    padding: 1.25rem 0.75rem;
  }
  .member-pdf__card .member-pdf__button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

.member-cta-section {
  padding: 4rem 1rem;
  position: relative;
  background-color: #1f1f1f;
}
.member-cta-section .container {
  max-width: 768px;
  margin: auto;
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  text-align: center;
  color: #1f1f1f;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .member-cta-section .container {
    max-width: 580px;
  }
}
.member-cta-section__text {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.member-cta-section__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.member-cta-section .cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
}
.member-cta-section .cta-btn img {
  width: 42px;
}
.member-cta-section .cta-btn--line {
  background-color: #00B900;
}
.member-cta-section .cta-btn--mail {
  background-color: #C1272D;
}
.member-cta-section__tel {
  border-top: 1px solid #eee;
  padding-top: 2rem;
  max-width: clamp(380px, 500px, 80%);
  margin: auto;
}
.member-cta-section__tel-label {
  display: flex;
  flex-direction: nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .member-cta-section__tel-label {
    gap: 1rem;
    justify-content: center;
  }
}
.member-cta-section__tel-number {
  text-align: center;
  gap: 2rem;
}
.member-cta-section__tel-number a:link, .member-cta-section__tel-number a:visited, .member-cta-section__tel-number a:hover, .member-cta-section__tel-number a:active {
  color: currentcolor;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .member-cta-section__tel-number a:link, .member-cta-section__tel-number a:visited, .member-cta-section__tel-number a:hover, .member-cta-section__tel-number a:active {
    font-size: 1rem;
  }
}
.member-cta-section__tel-note {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

/*--------------------------------------------------------------
# other
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# not-found-section
--------------------------------------------------------------*/
.not-found-section {
  padding: 6rem 1rem;
  text-align: center;
  background-color: #1f1f1f;
}
.not-found-section .section-title {
  margin-bottom: 2rem;
}
.not-found-section .section-title__en {
  font-size: 2.5rem;
  color: #C1272D;
  margin-bottom: 0.5rem;
}
.not-found-section .section-title__ja {
  font-size: 1.2rem;
  color: #fff;
}
.not-found-section__message {
  font-size: 1rem;
  color: #fff;
  margin-top: 1.5rem;
}
.not-found-section__message a {
  color: #C1272D;
  text-decoration: underline;
}
.not-found-section__message a:hover {
  color: rgb(163.3012931034, 32.9987068966, 38.0754310345);
}

/*--------------------------------------------------------------
# utilities
--------------------------------------------------------------*/
.u-text-center {
  text-align: center !important;
}

.u-mb-lg {
  margin-bottom: 3rem !important;
}

.breadcrumb {
  font-size: 13px;
  color: #aaa;
  max-width: 800px;
  width: 90%;
  margin: 0 auto 20px auto;
}
.breadcrumb a {
  color: #ccc;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 4px;
}

/* ==============================================
  animation.scss
  任意の要素にクラスを追加
  JS: .js-fadein → .is-inview で発火
================================================= */
/* 基本：フェードイン系 */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fadein.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.fadein-up {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fadein-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* スライドイン */
.slidein-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slidein-left.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.slidein-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slidein-right.is-inview {
  opacity: 1;
  transform: translateX(0);
}

/* ズーム系 */
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zoom-in.is-inview {
  opacity: 1;
  transform: scale(1);
}

/* 回転＋ズーム */
.rotate-fadein {
  opacity: 0;
  transform: rotate(-10deg) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rotate-fadein.is-inview {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* バウンスイン */
.bounce-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.bounce-in.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* フリップイン */
.flip-in {
  opacity: 0;
  transform: perspective(800px) rotateY(90deg);
  transition: opacity 0.6s ease, transform 0.8s ease;
}
.flip-in.is-inview {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg);
}

/* ブラーから表示 */
.blur-in {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.6s ease, filter 0.6s ease;
}
.blur-in.is-inview {
  opacity: 1;
  filter: blur(0);
}

/* 浮き上がるように表示 */
.float-up {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.float-up.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 揺れながら表示 */
.shake-fadein {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.3s ease;
}
.shake-fadein.is-inview {
  opacity: 1;
  animation: shake 0.6s ease;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}
/* 遅延制御 */
.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.9s;
}/*# sourceMappingURL=style.css.map */