@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/************* header ********************/
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to right, #d100b1, #3f0099);
  padding: 15px 0;
}
@media (max-width: 767px) {
  .main-header {
    position: fixed;
    right: 0;
    left: inherit;
    top: 0;
    width: 50px;
    height: 50px;
  }
}
.main-header .pc-nav {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
.main-header .pc-nav .pc-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}
.main-header .pc-nav .pc-nav-list li {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.main-header .pc-nav .pc-nav-list li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .main-header .pc-nav .pc-nav-list li {
    font-size: 0.8rem;
  }
}
.main-header .pc-nav .pc-nav-list li a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.main-header .pc-nav .pc-nav-list li a:hover {
  opacity: 0.7;
}
.main-header .sp-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}
.main-header .sp-menu-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s;
}
.main-header .sp-menu-toggle span:nth-child(1) {
  top: 0;
}
.main-header .sp-menu-toggle span:nth-child(2) {
  top: 11px;
}
.main-header .sp-menu-toggle span:nth-child(3) {
  bottom: 0;
}
.main-header .sp-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.main-header .sp-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.main-header .sp-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.main-header .sp-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #3f0099;
  padding: 80px 40px;
  transition: right 0.4s;
  box-sizing: border-box;
  z-index: 999;
}
.main-header .sp-nav.is-active {
  right: 0;
  display: block;
}
.main-header .sp-nav .sp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-header .sp-nav .sp-nav-list li {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}
.main-header .sp-nav .sp-nav-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
}

@media (max-width: 767px) {
  .main-header .pc-nav {
    display: none;
  }
  .main-header .sp-menu-toggle {
    display: block;
    right: 9px;
  }
}
/************* sp-navi ********************/
:where(ol, ul) {
  list-style: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #111;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  body {
    font-size: 17px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  margin: 1em 0;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: opacity 0.3s;
}
.btn:hover {
  opacity: 0.8;
}
.btn--primary {
  background-color: #d4af37;
  color: #000;
}
.btn--sub {
  background-color: #444;
  color: #fff;
}

.header {
  padding: 0 2.6vw;
  top: 0;
  background: url(../images/fv__bg.webp) no-repeat center center/cover;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 768px) {
  .header .container {
    flex-direction: row;
  }
}
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .header .nav ul {
    margin-top: 0;
  }
}
.header .nav ul a {
  color: #111;
  text-decoration: none;
  font-size: 0.9rem;
}

.mv {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("assets/images/mv-bg.jpg") center/cover;
}
.mv__sub {
  color: #d4af37;
  letter-spacing: 0.2em;
}
.mv__title {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid__item {
  background: #222;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}
.grid__item h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.kei-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .kei-flex {
    flex-direction: row;
  }
}
.kei-flex__img {
  flex: 1;
}
.kei-flex__text {
  flex: 2;
}

.table-wrapper {
  overflow-x: auto;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.rank-table th, .rank-table td {
  border: 1px solid #444;
  padding: 1rem;
  text-align: center;
}
.rank-table th {
  background: #d4af37;
  color: #000;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-list__item {
  background: #1a1a1a;
  padding: 1.5rem;
  border-left: 5px solid #d4af37;
}
.step-list__item .num {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
  display: block;
}

.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #333;
}
.footer a {
  color: #aaa;
  text-decoration: none;
}
.footer .copyright {
  margin-top: 1rem;
  color: #666;
}

section {
  padding: 4rem 0;
}

.title-wrap {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .title-wrap {
    max-width: 97%;
  }
}
@media (max-width: 767px) {
  .title-wrap {
    max-width: 97%;
  }
}
.title-wrap span.bg {
  content: "";
  background: #ea24ad;
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 1070px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .title-wrap span.bg {
    width: 97%;
  }
}
@media (max-width: 767px) {
  .title-wrap span.bg {
    width: 97%;
  }
}
.title-wrap span.bg {
  height: calc(100% - 10px);
  z-index: 0;
  opacity: 0.6;
}
.title-wrap .section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 3rem;
  padding: 15px 20px;
  background: linear-gradient(90deg, #5a00b5 0%, #b5008c 100%);
  box-shadow: 0 6px 0 #3e006b;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .title-wrap .section-title {
    font-size: 36px;
    padding: 20px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .title-wrap .section-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .title-wrap .section-title {
    margin-bottom: 1.5em;
  }
}
.title-wrap .section-title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

/*******************************/
/********** profile **********/
/********************************************/
.profile {
  background: url(../images/profile__bg.webp) no-repeat center/cover;
}
.profile .container {
  max-width: 1080px;
  margin: auto;
}

.profile-card {
  position: relative;
  background: #fff;
  border: 2px solid #ff0090;
  padding: 30px;
  margin: 0 auto;
  max-width: 900px;
  box-sizing: border-box;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .profile-card {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .profile-card {
    max-width: 90%;
  }
}
.profile-card::before, .profile-card::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 8px solid #ff0090;
  z-index: 1;
}
.profile-card::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}
.profile-card::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}
.profile-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .profile-card__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
.profile-card__img {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #ff0090;
  overflow: hidden;
  background: #000;
}
@media (max-width: 767px) {
  .profile-card__img {
    width: 120px;
    height: 120px;
  }
}
.profile-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-card__content {
  flex-grow: 1;
}
.profile-card__name {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ff0090;
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .profile-card__name {
    font-size: 20px;
  }
}
.profile-card__text {
  color: #000;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}
@media (min-width: 768px) {
  .profile-card__text {
    font-size: 17px;
  }
}

.profile-card__inner::before, .profile-card__inner::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 8px solid #ff0090;
}
.profile-card__inner::before {
  top: -10px;
  right: -10px;
  border-left: none;
  border-bottom: none;
}
.profile-card__inner::after {
  bottom: -10px;
  left: -10px;
  border-right: none;
  border-top: none;
}

/********** 入塾方法について **********/
/********************************************/
.about {
  padding: 5vh 2.6vw;
  background-color: #161616;
}
.about .container {
  max-width: 1080px;
  margin: auto;
}

.youtube-container {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 700px;
  margin: auto;
}

.youtube-container iframe {
  width: 100%;
  height: 100%;
  border: 10px solid #0c0c0c;
}

/********** 道場について **********/
/*******************************************/
.points {
  padding: 5vh 2.6vw;
}
.points .container {
  max-width: 1080px;
  margin: auto;
}

.new-list-section {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 1em;
  padding: 0;
}
.new-list-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.new-list-section .feature-list .feature-item {
  background-color: #d100b1;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 8px;
  padding: 15px 20px 15px 45px;
  border-radius: 4px;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4;
}
.new-list-section .feature-list .feature-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background-color: #ffff00;
  border-radius: 2px;
}
.new-list-section .feature-list .feature-item:last-child {
  margin-bottom: 0;
}
.new-list-section .gradient-heading-box {
  position: relative;
  padding: 20px 0;
  text-align: center;
}
.new-list-section .gradient-heading-box::before, .new-list-section .gradient-heading-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #d100b1, #3f0099);
}
.new-list-section .gradient-heading-box::before {
  top: 0;
}
.new-list-section .gradient-heading-box::after {
  bottom: 0;
}
.new-list-section .gradient-heading-box .gradient-heading-text {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .new-list-section .feature-list .feature-item {
    font-size: 1.1rem;
    padding: 12px 15px 12px 35px;
  }
  .new-list-section .feature-list .feature-item::before {
    left: 10px;
    width: 4px;
  }
  .new-list-section .gradient-heading-box .gradient-heading-text {
    font-size: 1.4rem;
  }
}
/********** 入塾方法について **********/
/*******************************************/
.condition {
  padding: 5vh 2.6vw;
}
.condition .container {
  max-width: 1080px;
  margin: auto;
}

.condition-section {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.condition-section .intro-box {
  background-color: #fffdf0;
  padding: 30px 20px;
  text-align: center;
}
.condition-section .intro-box .intro-text {
  margin: 0 0 15px 0;
  font-weight: bold;
  line-height: 1.6;
  font-size: 1.4rem;
}
.condition-section .intro-box .intro-text .highlight-red {
  color: #d32f2f;
  font-weight: 900;
}
.condition-section .intro-box .sub-condition {
  margin: 0;
  font-weight: 900;
  font-size: 1.35rem;
}
.condition-section .intro-box .sub-condition .yellow-marker {
  background-color: #fff9c4;
  padding: 2px 10px;
  color: #d32f2f;
}
@media (max-width: 767px) {
  .condition-section .intro-box .sub-condition {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .condition-section .intro-box .sub-condition br {
    display: none;
  }
}
.condition-section .condition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.condition-section .condition-list .condition-item {
  background-color: #f1b6da;
  margin-top: 5px;
  padding: 15px 20px 15px 45px;
  font-weight: bold;
  position: relative;
  font-size: 1.35rem;
}
.condition-section .condition-list .condition-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #e91e63;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .condition-section .intro-box .intro-text {
    font-size: 1rem;
  }
  .condition-section .condition-list .condition-item {
    font-size: 1.1rem;
    padding: 12px 15px 12px 40px;
    line-height: 1.455;
  }
}
@media (min-width: 768px) {
  .condition-list .condition-item br {
    display: none;
  }
}
/********** ランクアップについて **********/
/*******************************************/
.rank {
  padding: 5vh 2.6vw;
}
.rank .container {
  max-width: 1080px;
  margin: auto;
}

.entry-condition-container {
  margin-bottom: 0;
}
.entry-condition-container .intro-box {
  background-color: #fffdf0;
  padding: 30px 20px;
  text-align: center;
}
.entry-condition-container .intro-box .intro-text {
  margin: 0 0 15px 0;
  font-weight: bold;
  line-height: 1.6;
  font-size: 1.1rem;
}
.entry-condition-container .intro-box .intro-text .highlight-red {
  color: #d32f2f;
}
.entry-condition-container .intro-box .sub-condition {
  margin: 0;
  font-weight: bold;
}
.entry-condition-container .intro-box .sub-condition .yellow-marker {
  background-color: #fff9c4;
  padding: 2px 10px;
  color: #d32f2f;
}
.entry-condition-container .condition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.entry-condition-container .condition-list .condition-item {
  background-color: #f6e1f1;
  margin-top: 5px;
  padding: 15px 20px 15px 45px;
  font-weight: bold;
  position: relative;
}
.entry-condition-container .condition-list .condition-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #e91e63;
  border-radius: 50%;
}

.rank-up-section .rank-up-logo {
  width: 200px;
  margin-bottom: 5px;
}
.rank-up-section .gradient-heading-box {
  position: relative;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 30px;
}
.rank-up-section .gradient-heading-box::before, .rank-up-section .gradient-heading-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #d100b1, #3f0099);
}
.rank-up-section .gradient-heading-box::before {
  top: 0;
}
.rank-up-section .gradient-heading-box::after {
  bottom: 0;
}
.rank-up-section .gradient-heading-box .gradient-heading-text {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.rank-up-section .table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.rank-up-section .rank-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.rank-up-section .rank-table th {
  background-color: #000000;
  color: #ffffff;
  padding: 12px;
  font-size: 1.1rem;
  border: 1px solid #ffffff;
}
.rank-up-section .rank-table td {
  padding: 15px;
  font-weight: bold;
  border: 1px solid #ffffff;
  vertical-align: middle;
  font-size: 1.1rem;
  line-height: 1.5;
}
.rank-up-section .rank-table td.rank-name {
  text-align: center;
  width: 20%;
}
.rank-up-section .rank-table td.rank-name .medal-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}
.rank-up-section .rank-table td.condition-val {
  text-align: center;
  width: 30%;
}
.rank-up-section .rank-table td.condition-val .note-mark {
  color: #d32f2f;
}
.rank-up-section .rank-table .bg-light-pink {
  background-color: #f6e1f1;
}
.rank-up-section .rank-table .bg-pink {
  background-color: #f1b6da;
}
.rank-up-section .rank-table .bg-dark-pink {
  background-color: #e455a7;
}
.rank-up-section .rank-table .bg-magenta {
  background-color: #d100b1;
}
.rank-up-section .rank-table .color-white {
  color: #ffffff;
}
.rank-up-section .rank-notes {
  background-color: #fffdf0;
  padding: 20px;
}
.rank-up-section .rank-notes p {
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
}
.rank-up-section .rank-notes p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .rank-up-section .gradient-heading-box .gradient-heading-text {
    font-size: 1.2rem;
  }
  th, td {
    font-size: 1rem;
  }
}
/********** 入塾までのステップ **********/
/*******************************************/
.steps {
  padding: 5vh 2.6vw;
}
.steps .container {
  max-width: 1080px;
  margin: auto;
}

.admission-steps-section {
  padding: 20px 0;
}
.admission-steps-section .steps-header {
  background: linear-gradient(to right, #3f0099, #d100b1);
  padding: 15px;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(209, 0, 177, 0.2);
  margin-bottom: 40px;
}
.admission-steps-section .steps-header .steps-header-text {
  color: #ffffff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.admission-steps-section .step-container .step-item {
  margin-bottom: 30px;
}
.admission-steps-section .step-container .step-item .step-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.admission-steps-section .step-container .step-item .step-title .step-number {
  background: linear-gradient(135deg, #d100b1, #3f0099);
  color: #ffffff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.656rem;
  font-weight: 900;
}
.admission-steps-section .step-container .step-item .step-title .step-name {
  margin: 0;
  font-size: 1.65rem;
  font-weight: bold;
  color: #000000;
}
.admission-steps-section .step-container .step-item .step-border {
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #d100b1, #3f0099);
  margin-bottom: 10px;
}
.admission-steps-section .step-container .step-item .step-content {
  background-color: #fff5f8;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 1.1rem;
}
.admission-steps-section .step-container .step-item:last-child {
  margin-bottom: 20px;
}
.admission-steps-section .steps-footer-note {
  text-align: center;
  color: #d32f2f;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 20px;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .admission-steps-section {
    padding: 0;
  }
  .admission-steps-section .steps-header .steps-header-text {
    font-size: 1.2rem;
  }
  .admission-steps-section .step-container .step-item .step-title .step-number {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .admission-steps-section .step-container .step-item .step-title .step-name {
    font-size: 1.2rem;
  }
  .admission-steps-section .step-container .step-item .step-content {
    font-size: 1rem;
  }
  .admission-steps-section .steps-footer-note {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
/********** 入塾ガイド **********/
/*******************************************/
.guide {
  padding: 5vh 2.6vw;
  background: #000000;
}
.guide .container {
  max-width: 1080px;
  margin: auto;
}

/********** 実績 **********/
/*******************************************/
.performance {
  padding: 5vh 2.6vw;
  background: linear-gradient(to right, #bf0095 0%, #4889bf 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.performance .container {
  max-width: 1080px;
  margin: auto;
}

.delivery-performance-section {
  background: transparent;
}
.delivery-performance-section .performance-intro {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}
.delivery-performance-section .performance-intro .intro-main-text {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 25px;
}
.delivery-performance-section .performance-intro .performance-total {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffff00;
}
.delivery-performance-section .performance-intro .performance-total .yellow-underline {
  border-bottom: 2px solid #ffff00;
  padding-bottom: 2px;
}
.delivery-performance-section .performance-grid {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: nowrap;
}
.delivery-performance-section .performance-grid .performance-card {
  flex: 1;
}
.delivery-performance-section .performance-grid .performance-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid #fa0000;
}

@media (max-width: 767px) {
  .delivery-performance-section {
    padding: 0;
  }
  .delivery-performance-section .performance-intro .intro-main-text {
    margin: 0;
    text-align: left;
    font-size: 1rem;
  }
  .delivery-performance-section .performance-intro .intro-main-text br {
    display: none;
  }
  .delivery-performance-section .performance-intro .performance-total {
    font-size: 1.1rem;
  }
  .delivery-performance-section .performance-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .delivery-performance-section .performance-grid .performance-card {
    width: 100%;
    max-width: 400px;
  }
}
/****************道場性の声*****************/
.review {
  padding: 5vh 2.6vw;
  background: #90adfc;
}
.review .container {
  max-width: 1080px;
  margin: auto;
}
.review .container .slide {
  padding: 1em;
  margin-bottom: 0;
  background: #000000;
}
.review .container .slide .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}
.review .container .slick-track {
  display: flex !important;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.review .container .slick-slide {
  height: auto !important;
}
.review .dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.review .dots-wrap li {
  width: 18px;
  height: 18px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.review .dots-wrap li:hover,
.review .dots-wrap li.slick-active {
  background: coral;
}
.review .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/********** ツールについて **********/
/*******************************************/
.tools {
  padding: 5vh 2.6vw;
  padding-bottom: 0;
}
.tools .container {
  max-width: 1080px;
  margin: auto;
}

.tool-intro-section .tool-list {
  margin-bottom: 40px;
}
.tool-intro-section .tool-list .tool-item {
  background: linear-gradient(to right, #d100b1, #3f0099);
  display: flex;
  align-items: center;
  padding: 15px 30px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
}
.tool-intro-section .tool-list .tool-item .tool-visual {
  flex: 0 0 240px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.tool-intro-section .tool-list .tool-item .tool-visual picture.icon {
  width: 60%;
  max-width: 160px;
}
.tool-intro-section .tool-list .tool-item .tool-visual picture {
  width: 40%;
}
.tool-intro-section .tool-list .tool-item .tool-visual img.tool-img {
  width: 80%;
  max-width: 100%;
  height: auto;
  display: block;
  background: #000;
  padding: 0.5em;
  border-radius: 50%;
}
.tool-intro-section .tool-list .tool-item .tool-info {
  flex: 1;
}
.tool-intro-section .tool-list .tool-item .tool-info .tool-rank {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
}
.tool-intro-section .tool-list .tool-item .tool-info .tool-rank .small-note {
  font-size: 0.9rem;
}
.tool-intro-section .tool-list .tool-item .tool-info .tool-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}
.tool-intro-section .rank-notes {
  background-color: #fffdf0;
  padding: 20px;
  margin-bottom: 30px;
}
.tool-intro-section .rank-notes p {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  font-weight: bold;
}
.tool-intro-section .rank-notes p:last-child {
  margin-bottom: 0;
}
.tool-intro-section .admission-condition-box {
  border: 6px double #d32f2f;
  padding: 20px;
  margin-bottom: 40px;
  text-align: left;
}
.tool-intro-section .admission-condition-box .condition-title {
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
}
.tool-intro-section .admission-condition-box .condition-detail {
  margin: 0 0 5px 0;
  font-weight: bold;
  font-size: 1rem;
}
.tool-intro-section .admission-condition-box .condition-detail .highlight-red {
  color: #d32f2f;
  text-decoration: underline;
}
.tool-intro-section .consultation-box {
  background-color: #fffdf0;
  text-align: center;
  padding: 20px;
}
.tool-intro-section .consultation-box .consultation-text {
  color: #d32f2f;
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1.6;
  text-decoration: underline;
  margin: 0;
}

@media (max-width: 767px) {
  .tool-intro-section .tool-list .tool-item {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .tool-intro-section .tool-list .tool-item .tool-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 200px;
    margin: 0 0 15px 0;
  }
  .tool-intro-section .tool-list .tool-item .tool-info .tool-rank {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .tool-intro-section .tool-list .tool-item .tool-info .tool-rank .small-note {
    font-size: 0.9rem;
    display: block;
  }
  .tool-intro-section .tool-list .tool-item .tool-info .tool-description {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: left;
  }
  .tool-intro-section .consultation-box .consultation-text {
    font-size: 1rem;
  }
}
.triangle {
  margin: 2.5vh auto;
  text-align: center;
  max-width: 180px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .triangle {
    max-width: 110px;
  }
}
@media (max-width: 767px) {
  .triangle {
    max-width: 90px;
  }
}

/********** ツールについて **********/
/*******************************************/
.cta {
  padding-top: 0;
  padding-bottom: 0;
}
.cta .container {
  max-width: 1080px;
  margin: auto;
}

.action-section {
  background-color: #fffdf0;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-top: 2.5vh;
}
@media (max-width: 767px) {
  .action-section a {
    max-width: 100%;
  }
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  height: 120px;
  border-radius: 80px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.85rem;
  box-shadow: 0 6px 0 rgba(85, 2, 2, 0.9);
  transition: transform 0.2s, box-shadow 0.2s;
  margin: auto;
}
.c-button.is-red {
  background-color: #e60012;
}
.c-button.is-green {
  background-color: #00a07d;
  box-shadow: 0 6px 0 rgba(2, 85, 57, 0.9);
}
.c-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
.c-button__icon {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}
.c-button__icon img {
  width: 80%;
  height: auto;
}
.c-button__text {
  letter-spacing: 0.05em;
}

.cta-guidance {
  margin: 0 0 10px;
}
.cta-guidance__text {
  color: #e60012;
  font-weight: bold;
  font-size: 1.45rem;
  line-height: 1.5;
}
.cta-guidance__text .u-underline {
  text-decoration: underline;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .c-button {
    height: 60px;
    font-size: 1.1rem;
    max-width: calc(100% - 2em);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .c-button {
    height: 100px;
    max-width: 500px;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .c-button__icon {
    width: 40px;
    height: 40px;
  }
  .cta-guidance__text {
    font-size: 1rem;
    margin-top: 0;
  }
  .cta-guidance__text .u-underline {
    font-size: 1.1rem;
  }
}
.sticky-footer {
  display: flex;
  gap: 10px;
  padding: 10px;
}
.sticky-footer .c-button {
  flex: 1;
  height: 50px;
  font-size: 0.9rem;
}
.sticky-footer .c-button__icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

/********** 追従 **********/
/*******************************************/
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(to right, #d100b1, #3f0099);
  padding: 1em;
  box-sizing: border-box;
  animation: slideUp 0.4s ease-out forwards;
}
.sticky-footer__inner {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sticky-footer__inner .c-button {
  flex: 1;
  height: 75px;
  font-size: 1.3rem;
  border-radius: 30px;
  max-width: none;
}
.sticky-footer__inner .c-button__icon {
  width: 45px;
  height: 45px;
  margin-right: 8px;
}
.sticky-footer__inner .c-button__text {
  white-space: nowrap;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .sticky-footer__inner {
    gap: 8px;
  }
  .sticky-footer__inner .c-button {
    height: 50px;
    font-size: 0.85rem;
    padding: 0 10px;
  }
  .sticky-footer__inner .c-button__icon {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .sticky-footer__inner .c-button__text span {
    display: none;
  }
}
/************* モーダル表示 **************/
.main-footer {
  background-color: #000;
  padding: 40px 20px 160px;
  text-align: center;
}
@media (max-width: 768px) {
  .main-footer {
    padding-bottom: 115px;
  }
}
.main-footer .footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.main-footer .footer-nav .footer-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
}
.main-footer .footer-nav .footer-link:hover {
  opacity: 0.7;
}
.main-footer .footer-nav .separator {
  color: #ffffff;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #242424;
  color: #ffffff;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  box-sizing: border-box;
}
.modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}
.modal-content .modal-heading {
  font-size: 1.4rem;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
  text-align: center;
}
.modal-content .modal-body {
  max-height: 60vh;
  overflow-y: auto;
  line-height: 1.6;
  font-size: 0.95rem;
}
.modal-content .modal-body li {
  margin: 0.5em 0;
  text-indent: -1em;
  padding-left: 1em;
}
.modal-content .modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-content .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

@media (max-width: 768px) {
  .modal-content {
    height: 70dvh;
    display: flex;
    flex-direction: column;
  }
  .modal-content .modal-body {
    flex: 1;
    max-height: none;
    overflow-y: auto;
  }
}/*# sourceMappingURL=style.css.map */