@charset "UTF-8";
/* CSS Document */

/*------------------------------------------------------------
TOPページコンテンツ
------------------------------------------------------------*/

/* フルスクリーンイメージ画像 */
.top_slider {
  width: 100%;
}

.top_slide {
  width: 100%;
  height: calc(100vh - 64px); /* ヘッダー分を引く */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* PC画像 */
.top_slide_01 { background-image: url("../images/topimage_01.jpg"); }
.top_slide_02 { background-image: url("../images/topimage_02.jpg"); }
.top_slide_03 { background-image: url("../images/topimage_03.jpg"); }

/* タブレット画像 */
@media screen and (max-width: 1024px) {
  .top_slide_01 { background-image: url("../images/topimage_tab_01.jpg"); }
  .top_slide_02 { background-image: url("../images/topimage_tab_02.jpg"); }
  .top_slide_03 { background-image: url("../images/topimage_tab_03.jpg"); }
}

/* スマホ画像 */
@media screen and (max-width: 767px) {
  .top_slide_01 { background-image: url("../images/topimage_sp_01.jpg"); }
  .top_slide_02 { background-image: url("../images/topimage_sp_02.jpg"); }
  .top_slide_03 { background-image: url("../images/topimage_sp_03.jpg"); }
}

/* 矢印の位置 */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
}

.carousel-control-prev { left: 0px; }
.carousel-control-next { right: 0px; }

.slide_copy_01 {
  position: absolute;
  left: 15%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  color: #222;
}
.slide_copy_01 img { width: 150px; height: auto; }
.slide_copy_01 .c_01 { font-size: 46px; font-weight: 700; line-height: 2; letter-spacing: 0.1em; }
.slide_copy_01 .c_02 { font-size: 28px; font-weight: 500; line-height: 1.2; letter-spacing: 0.04em; }

/* FVコピー・ロゴ ふわっと表示 */
.fv_logo,
.fv_copy_sub,
.fv_copy_main {
  opacity: 0;
  transform: translateY(24px);
  animation: fvCopyFadeUp 1s ease forwards;
}

.fv_logo {
  animation-delay: 0.2s;
}

.fv_copy_sub {
  animation-delay: 0.5s;
}

.fv_copy_main {
  animation-delay: 0.85s;
}

@keyframes fvCopyFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.slide_copy_02 {
  position: absolute;
  left: 15%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  color: #222;
}
.slide_copy_02 .c_01 span { font-size: 36px; font-weight: 600; line-height: 2; letter-spacing: 0.1em; text-shadow: 2px 2px 4px rgba(255,255,255,0.9);}

/* 2枚目コピー：1行ずつふわっと表示 */
.fv_copy_lines span {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}

/* スライドが表示された時に発火 */
.carousel-item.active .fv_copy_lines span {
  animation: fvLineFadeUp 0.8s ease forwards;
}

.carousel-item.active .fv_copy_lines span:nth-child(1) {
  animation-delay: 0.2s;
}

.carousel-item.active .fv_copy_lines span:nth-child(2) {
  animation-delay: 0.55s;
}

.carousel-item.active .fv_copy_lines span:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes fvLineFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.slide_copy_03 {
  position: absolute;
  left: 16%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;

  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(235, 20, 35, 0.82);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.slide_copy_03 p {
  margin: 0;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.slide_copy_03 .copy_small { font-size: 30px; }
.slide_copy_03 .copy_mid   { font-size: 48px; margin-top: 12px; }
.slide_copy_03 .copy_big   { font-size: 60px; margin-top: 12px;}

/* 3枚目：丸と文字のアニメーション */
.fv_circle_copy {
  opacity: 0;
  transform: scale(0.9);
}

/* スライドが表示された時に丸をふわっと表示 */
.carousel-item.active .fv_circle_copy {
  animation: fvCircleFade 0.9s ease forwards;
  animation-delay: 0.2s;
}

/* 文字を1行ずつ */
.fv_circle_copy .copy_small,
.fv_circle_copy .copy_mid,
.fv_circle_copy .copy_big {
  opacity: 0;
  transform: translateY(18px);
}

/* active時だけ発火 */
.carousel-item.active .fv_circle_copy .copy_small {
  animation: fvTextFadeUp 0.7s ease forwards;
  animation-delay: 0.75s;
}

.carousel-item.active .fv_circle_copy .copy_mid {
  animation: fvTextFadeUp 0.7s ease forwards;
  animation-delay: 1.05s;
}

.carousel-item.active .fv_circle_copy .copy_big {
  animation: fvTextFadeUp 0.7s ease forwards;
  animation-delay: 1.35s;
}

@keyframes fvCircleFade {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fvTextFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* タブレットコピー */
@media screen and (max-width: 1024px) {

.slide_copy_01 {
  position: absolute;
  left: 10%;
  top: 20%;
  transform: translateY(-50%);
  z-index: 2;
  color: #222;
}
.slide_copy_01 img { width: 100px; height: auto; }
.slide_copy_01 .c_01 { font-size: 46px; font-weight: 700; line-height: 2; letter-spacing: 0.1em; }
.slide_copy_01 .c_02 { font-size: 28px; font-weight: 500; line-height: 1.2; letter-spacing: 0.04em; }

.slide_copy_02 {
  position: absolute;
  left: 12%;
  top: 25%;
  transform: translateY(-50%);
  z-index: 2;
  color: #222;
}
.slide_copy_02 .c_01 span {
  font-size: 40px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.9);
}

.slide_copy_03 {
  position: absolute;
  left: 10%;
  top: 65%;
  transform: translateY(-50%);
  z-index: 2;

  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(235, 20, 35, 0.82);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.slide_copy_03 p {
  margin: 0;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.slide_copy_03 .copy_small { font-size: 30px; }
.slide_copy_03 .copy_mid   { font-size: 48px; margin-top: 12px; }
.slide_copy_03 .copy_big   { font-size: 60px; margin-top: 12px;}

}

/* スマホコピー */
@media screen and (max-width: 767px) {


.slide_copy_01 {
  position: absolute;
  left: 10%;
  top: 15%;
  transform: translateY(-50%);
  z-index: 2;
  color: #222;
}
.slide_copy_01 img { width: 70px; height: auto; }
.slide_copy_01 .c_01 { font-size: 38px; font-weight: 700; line-height: 2; letter-spacing: 0.1em; }
.slide_copy_01 .c_02 { font-size: 18px; font-weight: 500; line-height: 1.2; letter-spacing: 0.04em; }

.slide_copy_02 {
  position: absolute;
  left: 8%;
  top: 20%;
  transform: translateY(-50%);
  z-index: 2;
  color: #222;
}
.slide_copy_02 .c_01 span {
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.9);
}

.slide_copy_03 {
  position: absolute;
  left: 20%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;

  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(235, 20, 35, 0.82);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.slide_copy_03 p {
  margin: 0;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.slide_copy_03 .copy_small { font-size: 20px; }
.slide_copy_03 .copy_mid   { font-size: 34px; margin-top: 12px; }
.slide_copy_03 .copy_big   { font-size: 30px; margin-top: 12px;}


}



/* 3つの丸 ****************/

.maru_copy {
  width: clamp(155px, 24vw, 280px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;

  border-radius: 50%;
  background: #b7d83a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;

}

.maru_copy p {
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .maru_copy {
    width: clamp(155px, 44vw, 190px);
  }

  .maru_copy p {
    line-height: 1.6;
  }
}

.maru_copy p {
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
}

.maru_01_01 { font-size: clamp(15px, 2.4vw, 28px); letter-spacing: 0.06em; }
.maru_01_02 { font-size: clamp(15px, 2.2vw, 26px); }
.maru_01_03 { font-size: clamp(13px, 1.8vw, 20px); }

.maru_02_01 { font-size: clamp(15px, 2.2vw, 26px); }
.maru_02_02 { font-size: clamp(13px, 1.9vw, 22px); }
.maru_02_03 { font-size: clamp(13px, 1.9vw, 22px); }

.maru_03_01 { font-size: clamp(15px, 2.3vw, 27px); }
.maru_03_02 { font-size: clamp(13px, 1.8vw, 21px); }
.maru_03_03 { font-size: clamp(13px, 1.9vw, 22px); }


.about {
  width: 100%;
  background-image: url("../images/topback_01.jpg");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
}

.about_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.about_text {
  width: 55%;
}

.about_text h1 {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.about_text p {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
  letter-spacing: 0.03em;
}

.about_link {
  margin-top: 28px;
}


@media screen and (max-width: 767px) {
  .about {
    background-image: url("../images/topback_01_sp.jpg");
    background-position: center top;
  }

  .about_inner {
    width: 90%;
    padding: 20px 0 20px;
  }

  .about_text {
    width: 100%;
    padding: 24px 15px;
    background: rgba(255,255,255,0.4);
  }

  .about_text h1 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .about_text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .about_link a {
    font-size: 15px;
  }
}

h1 { font-size: 24px; font-weight: 600; }

@media screen and (max-width: 767px) {
h1 { font-size: 20px; font-weight: 700; }
}


.benefit_icon {
  width: 130px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* タブレット以下 */
@media (max-width: 991.98px) {
  .benefit_card {
    text-align: left !important;
  }

  .benefit_card .card-body {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0.75rem 0;
  }

  .benefit_icon {
    width: 80px;
    height: auto;
    flex: 0 0 100px;
    margin-bottom: 0;
  }

  .benefit_body {
    flex: 1;
  }

  .benefit_body h2 {
    font-size: 1.35rem !important;
    margin-bottom: 0.35rem !important;
  }

  .benefit_body p {
    line-height: 1.7 !important;
  }
}

/*　コース紹介　*/
.course_section {
  background: #f26342;
}

.course_card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 180px;
  padding: 0px 50px 0px 32px;
  background: #fffdf3;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.28);
  color: #111;
  text-decoration: none;
  transition: 0.25s ease;
}

.course_card_g {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 180px;
  padding: 0px 50px 0px 32px;
  background: #DFF9D3;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.28);
  color: #111;
  text-decoration: none;
  transition: 0.25s ease;
}


.course_card:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
  color: #F06B47;
}


.course_card_g:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
  color: #009F00;
}


.course_title {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.course_title span {
  font-size: 0.82em;
}

.course_text {
  font-size: 0.85em;
  line-height: 1.7;
  margin-bottom: 0;
}

.course_arrow {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  color: #ff1b1b;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 300;
}

/* スマホ */
@media (max-width: 767.98px) {
  .course_card,.course_card_g {
    min-height: auto;
    padding: 28px 48px 26px 24px;
  }

  .course_title {
    margin-bottom: 10px;
  }

  .course_arrow {
    right: 20px;
    font-size: 2.2rem;
  }
}

.price {
  width: 100%;
  background: url("../images/topback_02.jpg") no-repeat top left;
  background-size: auto;
}

.price_area { margin: 60px 0 60px 650px; }

.price h1 { font-size: 22px; font-weight: 600; }

/* タブレット */
@media (max-width: 1024px) {
  .price {
    background-size: 60% auto cover;
    background-position: -160px top;
  }
  .price_area { margin: 60px 0 60px 500px; }
}

/* タブ〜スマホ */
@media (max-width: 900px) {
  .price {
    height: auto;
    background-image: none;
  }
  .price_area { margin: 30px auto; width: 80%; }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .price_area { margin: 30px auto; width: 90%; }
}


.btn_detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 12px 10px;
  background: #0075c0;
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  box-shadow: 8px 10px 16px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.btn_detail:hover {
  color: #fff;
  background: #1790DE;
  transform: translateY(2px);
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.2);
}

.btn_detail:active {
  transform: translateY(4px);
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.18);
}

.title_trainer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background: #e63100;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
}

/*　スタッフ紹介　*/

.staff_photo_sm {
  width: 110px;
  min-width: 110px;
}

.staff_photo_sm img {
  width: 100%;
  height: auto;
  display: block;
}



/*　バナーcard　*/

.bana_card {
  max-width: 450px;
  height: 100%;
  overflow: hidden;
  transition: 0.2s ease;
}

.bana_card:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

.bana_card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bana_card_title {
  flex: 1;
  min-height: 70px;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  padding: 0.8em 1em;
  background: #c8547c;
  text-align: center;

  display: grid;
  place-items: center;
  line-height: 1.5;
}

/* タブレット文字 */
@media screen and (max-width: 1024px) {
  .bana_card_title { font-size: 1em; }
}

/* スマホ文字 */
@media screen and (max-width: 767px) {
   .bana_card_title { 
    min-height: 45px;
    font-size: 0.8em;
    font-weight: 400;
    padding: 6px 5px;
    line-height: 1.3;
   }
}




/* タブレット文字 */
@media screen and (max-width: 1024px) {

}

/* スマホ文字 */
@media screen and (max-width: 767px) {

}