
/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
html,body{
  height: 100%;
  margin: 0;
}
html {
    font-size: 62.5%;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
a{
	color: #ffffff;
	transition: .4s;
}
a:hover{
	opacity: 0.8;
}
p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/*--------------------------------------------------------------
# 全体
--------------------------------------------------------------*/
.sp_hidden{
  display: block;
}
.pc_hidden{
  display: none;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  margin:0;
  padding:0;
  color:#ffffff;
  line-height:1.7;
  position: relative;
  font-size: 1.6rem;
}
.poppins_sb {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.contents_wrap {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
	display: block;
}
.pad_tb90{
  padding: 90px 0;
}

/***ボタン***/
.btn_wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 40px;
}
.bk_white_btn{
    width: 300px;
    height: 60px;
    background: #ffffff;
    border: solid 1px #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    color: #0e6eb8 !important;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.bk_blue_btn{
    width: 300px;
    height: 60px;
    background: #0e70b9;
    border: solid 1px #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    color: #ffffff !important;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.link_btn_wrap{
    display: flex;
    justify-content: center;
}
.link_btn_wrap .link_btn {
    display: flex;
    width: 300px;
    height: 60px;
    background: #ffffff;
    justify-content: center;
    border-radius: 60px;
    font-size: 2rem;
    color: #0e6eb8;
    font-weight: bold;
    align-items: center;
}
.view_more_btn_wrap{
  display: flex;
  justify-content: center;
  margin-top: auto;
  text-align: center;
}
.view_more_btn{
  color:#0e6eb8 !important;
  border: solid 1px #0e6eb8;
  width: 250px;
  height: 50px;
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  align-items: center;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.8rem;
}

/* ======================
   Header
====================== */
header.header {
  position: fixed;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  header.header {
    height: 71px;
  }
}

header .header-inner {
  height: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-weight: bold;
}
header .inner_right_contents{
    display: flex;
    align-items: center;
}
header .hader_contact_btn{
    width: 210px;
    height: 60px;
    display: flex;
    background: #222736;
    border-radius: 60px;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

/* ======================
   Hamburger
====================== */
.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  transition: .3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { bottom: 0; }
/* Active animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* ======================
   Menu
====================== */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0e6eb8;
    padding-top: 100px;
    transition: .4s;
    z-index: 999;
}
.menu.active {
  right: 0;
}
.menu ul {
    list-style: none;
    padding: 60px;
    text-align: center;
}
.menu li {
  margin-bottom: 30px;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* ======================
   Main
====================== */
main{
  overflow: hidden;
  background: #0e6eb8;
}
.fv {
  height: 100vh;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section {
  padding: 100px 20px;
}
.contents_top_title_wrap{
    margin-top: -75px;
    z-index: 99;
    position: relative;
}
.contents_top_title_wrap h3{
    font-size: 4.6rem;
    font-weight: bold;
    text-align: center;
}
.contents_top_title_wrap p{
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 1px;
}
.contents_main_title_wrap h3.title {
  font-size: 3rem;
  color: #16b1e1;
  text-align: center;
}
.contents_main_title_wrap h4.sub_title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
.contents_main_title_wrap .text{
    text-align: center;
    font-size: 2.4rem;
    margin: 20px 0 60px;
    font-weight: 500;
}

/* ==========================================
   TOPページ
========================================== */

.tennis_top {
  padding: 0;
}

/* ------------------ Hero ------------------ */
.hero {
    position: relative;
    min-height: 1200px;
}
.hero .lignt_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    opacity: 0.8;
}
.hero .top_imgage_wrap {
    height: 790px;
    z-index: 0;
    background: url(../img/top/top_main_bk.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
.hero .mv_img_wrap .mv_main {
  max-width: 790px;
  margin: 0 auto;
}
.hero .mv_contents_wrap {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 99;
    background: url(../img/top/light.png);
    background-position: center top;
    background-repeat: no-repeat;
}
.hero .mv_contents_wrap .mv_img_wrap{
  margin-top: 80px;
}
.hero .mv_contents_wrap .contents_wrap {
  position: relative;
  z-index: 10;
}
.hero .mv_contents_wrap .main_title {
  font-size: 8rem;
  line-height: 1;
  margin-top: -46px;
  text-align: center;
}
.hero .mv_contents_wrap .sub_title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
.hero .mv_contents_wrap .w_bk_text{
  text-align: center;
}
.hero .mv_contents_wrap .w_bk_text h3 {
  font-size: 4rem;
  display: inline-block;
  padding: 0 20px;
  margin: 30px 0;
  text-align: center;
  background: #fff;
  color: #0f78be;
  font-weight: bold;
}
.hero .mv_contents_wrap .info_text {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 500;
}
.hero .mv_left_top {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 40px;
    width: 210px;
    margin-top: 21%;
    z-index: 99;
}
.hero .mv_left_bottom {
    width: 280px;
    position: absolute;
    bottom: 0;
    margin-bottom: -13%;
    z-index: 9;
}
.hero .mv_right_top {
    width: 280px;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 9;
    margin-bottom: 15%;
}
.hero .mv_right_bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 40px;
    width: 210px;
    z-index: 99;
    margin-bottom: -11%;
}
.bg_secound {
    width: 200vw;
    height:660px;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 9;
    -webkit-transform: translate(-50%, -23%) rotate(-16deg);
    -ms-transform: translate(-50%,-30%) rotate(-25deg);
    transform: translate(-50%, -23%) rotate(-16deg);
    background: #0f7ed1;
    top: 570px; 
    margin-top: 0;
}

/* ------------------ Point ------------------ */
.point {
  position: relative;
  padding-top: 40px;
}
#point_area .flexbox {
    display: flex;
    gap: 60px;
    align-items: stretch;
    margin: 70px 0;
    justify-content: center;
}
#point_area .flexbox .point_item {
    width: 360px;
    display: flex;
    flex-direction: column;
    position: relative;
}


#point_area .flexbox .point_item .circle {
    background: url(../img/top/circle_bk.png);
    width: 300px;
    height: 300px;
    background-size: contain;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

#point_area .flexbox .point_item .circle:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -54%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-top: dotted 3px #ffffff;
}

#point_area .flexbox .point_item:last-child .circle:after {
  content: none;
}


#point_area .flexbox .point_item .circle .number {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  font-weight: 600;
  width: 100%;
  text-align: center;
}
#point_area .flexbox .point_item .circle .number:before {
    content: '';
    position: absolute;
    bottom: -8px;
    display: inline-block;
    width: 26px;
    height: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 2px;
}
#point_area .flexbox .point_item .circle .text01{
    font-weight: bold;
    font-size: 6rem;
    width: 100%;
}
#point_area .flexbox .point_item .circle .text02 {
    font-weight: 500;
    width: 100%;
    text-align: center;
}
#point_area .flexbox .point_item h5{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0px;
}
#point_area .flexbox .point_item .text {
    text-align: center;
    margin-bottom: 30px;
    flex-grow: 1;
    letter-spacing: -1px;
}
#point_area .flexbox .point_item .border_box{
    background: #253f75;
    border: solid 1px #ffffff;
    padding: 10px;
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.5;
}

/* ------------------ tuyomi ------------------ */
#tuyomi_area .scroll_text_wrap{
    position: relative;
}
#tuyomi_area .big_bk_text_wrap{
  display: flex;
  justify-content: center;
}
/***
#tuyomi_area .big_bk_text_wrap .big_bk_text{
    display: block;
    text-align: center;
    font-size: 20rem;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); 
    line-height: 1;
}
***/
#tuyomi_area .contents_top_title_wrap {
    position: relative;
    margin-bottom: 100px;
    margin-top: -50px;
}
/**
#tuyomi_area .contents_top_title_wrap::before {
    content: "INDOOR TENNIS SCHOOL";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 20rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 1);
    pointer-events: none;
    backface-visibility: hidden;
    transform: translateX(-50%) translateZ(0);
    will-change: transform, opacity;
    margin-top: -126px;
}
    **/
.my_swiper_wrap{
    background: linear-gradient(to bottom, transparent 0%, transparent 20%, #e1e6ec 20%, #e1e6ec 100%);
    padding-bottom: 160px;
}
.mySwiper {
    width: 100%;
    padding: 40px 0;
    overflow: inherit !important;
    padding-bottom: 50px;
    position: relative;
}
.mySwiper .swiper-pagination {
    bottom: 0;
    margin-bottom: -80px;
}
.mySwiper .swiper-pagination-bullet {
  margin: 0 12px!important;
}
.swiper-slide {
  background: #ffffff;
  text-align: center;
  padding: 0px 0;
  font-size: 20px;
}
.swiper-slide .number {
    color: #16b1e1;
    font-size: 8rem;
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-top: -4rem;
    margin-left: -25px;
    /* width: 30px; */
}
.mySwiper .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.mySwiper .swiper-pagination-bullet-active {
  background: #000000;
}
.mySwiper .swiper-slide .image{
  width: 100%;;
}
.mySwiper .swiper-slide .bottom_box{
  padding: 30px;
}
.mySwiper .swiper-slide .bottom_box h4{
  font-size: 2.2rem;
  color: #000000;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
}
.mySwiper .swiper-slide .bottom_box p{
    font-size: 1.5rem;
    color: #000000;
    text-align: left;
    margin-bottom: 30px;
}
.mySwiper .swiper-wrapper {
  align-items: stretch;
}
.mySwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.bottom_box {
  display: flex;
  flex-direction: column;
  flex: 1; 
}

/* ------------------ reason ------------------ */
#reason_area {
    background: url(../img/top/reason_bk.jpg);
    background-size: cover;
}
#reason_area .contents_main_title_wrap h3.title {
    color: #ffffff;
}
#reason_area .flexbox{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
#reason_area .flexbox .reason_item {
    position: relative;
    width: 330px;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 22px;
    border: solid 1px #ffffff;
    clip-path: polygon(
        15px 0,
        calc(100% - 15px) 0,
        100% 15px,
        100% calc(100% - 15px),
        calc(100% - 15px) 100%,
        15px 100%,
        0 calc(100% - 15px),
        0 15px
    );
}
#reason_area .flexbox .reason_item img{
    width: 160px;
    margin: 0 auto 20px;
}
#reason_area .flexbox .reason_item h5{
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

/* ------------------ lesson ------------------ */
#lesson_area {
    background: #ffffff;
    padding: 80px 0px 110px;
}
#lesson_area .contents_main_title_wrap {
    margin-bottom: 20px;
}
#lesson_area .contents_main_title_wrap h4.sub_title{
    color: #0e6eb8;
}
#lesson_area .lesson_item{
    background: #e1e6ec;
    padding-bottom: 60px;
}
#lesson_area .lesson_item.lesson01{
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #e1e6ec 50%, #e1e6ec 100%);
    padding-top: 60px;
}
#lesson_area .lesson_item.lesson04{
    padding-bottom: 100px;
}
#lesson_area .lesson_item .inner_box {
    position: relative;
    height: 360px;
    background: #ffffff;
}
#lesson_area .lesson_item .title_wrap{
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 40px;
}
#lesson_area .lesson_item.lesson01 .title_wrap{
    background: #0f7ed1;
}
#lesson_area .lesson_item.lesson02 .title_wrap{
    background: #0e6eb8;
}
#lesson_area .lesson_item.lesson03 .title_wrap{
    background: #00b9d4;
}
#lesson_area .lesson_item.lesson04 .title_wrap{
    background: #16b1e1;
}
#lesson_area .lesson_item .title_wrap h4.title{
    font-size: 3rem;
    font-weight: bold;
    margin-right: 20px;
}
#lesson_area .lesson_item .title_wrap .en_title{
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(255, 255, 255, 0.3);
    line-height: 1;
}
#lesson_area .lesson_item .textbox {
    padding: 40px 40px;
    width: calc(100% - 420px);
}
#lesson_area .lesson_item .view_more_btn{
    margin-left: 40px;
    position: absolute;
    bottom: 0;
    margin-bottom: 40px;
}
#lesson_area .lesson_item .textbox .text{
  color:#565656;
}
#lesson_area .lesson_item .imagebox{
    position: absolute;
    width: 380px;
    height: 280px;
    top: 0;
    right: 0;
    margin-top: 40px;
    margin-right: 40px;
}

/* ------------------ top_last_contents ------------------ */
.top_last_contents {
    position: relative;
    padding-bottom: 210px;
    /* background: url(../img/top/top_last_contents_right_img.png); */
    /* background-repeat: no-repeat;
    background-position: right top;
    background-size: 600px; */
}

.top_last_contents_bg {
  background: url(../img/top/top_last_contents_right_img.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 600px;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 0;
  top: 0;
  width: 100%;
}

.top_last_contents .title_wrap {
  background: linear-gradient(to right, #30c2ec 0%, #277ec0 100%);
}

.top_last_contents .contents_wrap {
  position: relative;
  z-index: 3;
}

.top_last_contents h3{
  font-size: 3rem;
  padding: 40px 0;
}
.top_last_contents .bottom_contents{
  margin: 50px 0;
}
.top_last_contents .bottom_contents .b_text{
  font-size: 4.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.top_last_contents .bottom_contents .s_text{
  font-size: 2.4rem;
  font-weight: 500;
}
.top_last_contents .play_tennis_img{
  position: absolute;
  right: 0;
  bottom: 0;
}
.top_last_contents .link_btn_wrap{
    justify-content: flex-start;
    gap: 40px;
}
.scroll_text_wrap{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.scroll_text{
  display: flex;
  width: max-content;
  animation: textScroll 25s linear infinite;
}
.scroll_text p {
    white-space: nowrap;
    padding-right: 120px;
    font-size: 20rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgb(255, 255, 255, 0.3);
    line-height: 0.9;
    margin-bottom: -19px;
}
/* アニメーション */
@keyframes textScroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* ------------------ PC ------------------ */
@media screen and (min-width: 769px) {
  body {
    min-width: 1240px; 
  }
  .contents_wrap {
    width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.hero_bottom_img {
  display: none;
}

.contents_main_title_wrap h4.sub_title {
  margin-bottom: 60px;
} 

/* ------------------ SP ------------------ */
@media screen and (max-width: 768px) {
  .sp_hidden{
    display: none;
  }
  .pc_hidden{
    display: block;
  }
  body{
      min-width: auto;
    }
      .contents_wrap {
          width: 100%;
          padding: 0 4%;
      } 
  header .header-inner {
      height: 100%;
      padding: 0 10px;
  }
  header .hader_contact_btn {
      width: 120px;
      height: 40px;
      margin-right: 10px;
      font-size: 1.4rem;
      margin-left: 10px;
  }

  .hero {
    min-height: auto;
  }


  .hero .mv_contents_wrap .mv_img_wrap {
      margin-top: 15px;
  }
  .hero .mv_img_wrap .mv_main {
          max-width: 120%;
          margin: 0 auto 0 -3%;
      }
  .hero .mv_contents_wrap {
      background-size: 100%;
  }
  .hero .top_imgage_wrap {
      height: 440px;
  }
  .hero .mv_contents_wrap .main_title {
      font-size: 4.1rem;
      margin-top: -20px;
  }
  .hero .mv_contents_wrap .sub_title {
      font-size: 2rem;
  }
  .hero .mv_contents_wrap .w_bk_text h3 {
      font-size: 2.1rem;
      padding: 0px 5px;
      margin: 15px 0;
      letter-spacing: -1px;
      width: 100%;
  }
  .hero .mv_contents_wrap .info_text {
      font-size: 1.5rem;
      letter-spacing: -0.01em;
  }

  .bg_secound {
    height: 390px;
    top: 86vw;
  }

  .btn_wrap {
    margin-top: 20px;
    gap: 0 20px;
  }

  .bk_blue_btn,
  .bk_white_btn {
    font-size: calc(32 / 750 * 100vw);
    height: calc(100 / 750 * 100vw);
  }
  
  .hero_bottom_img {
    display: block;
    padding-top: 50vw;

    img {
      width: 100%;
    }
  }

  .contents_main_title_wrap h3.title {
    font-size: calc(38 / 750 * 100vw);
  }

  .contents_main_title_wrap h4.sub_title {
    font-size: calc(54 / 750 * 100vw);
    margin-bottom: 30px;
  }

  #point_area .flexbox {
    margin: 30px 0 60px;
    flex-direction: column;
  }

  #point_area .flexbox .point_item .circle {
    margin: 0 auto;
    width: 250px;
    height: 250px;
  }

  #point_area .flexbox .point_item .circle:after {
    content: none;
  }

  #point_area .flexbox .point_item {
    width: 100%;
  }

  #point_area .flexbox .point_item:after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    border-left: dotted 3px #ffffff;
  }

  #point_area .flexbox .point_item:last-child:after {
    content: none;
  }

  #point_area .flexbox .point_item .circle .number {
    font-size: calc(24 / 750 * 100vw);
  }

  

  #point_area .flexbox .point_item .circle .text01 {
    font-size: calc(90 / 750 * 100vw);
  }

  #point_area .flexbox .point_item .circle .text02 {
    font-size: calc(27 / 750 * 100vw);
  }


  #point_area .flexbox .point_item h5 {
    font-size: calc(40 / 750 * 100vw);
    margin: 10px 0;
  }

  #point_area .flexbox .point_item .text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: initial;
    margin-bottom: 20px;
  }

  #point_area .flexbox .point_item .border_box {
    margin: 0 20px;
    font-size: calc(32 / 750 * 100vw);
  }

  .scroll_text p {
    font-size: calc(200 / 750 * 100vw);
  }

  .contents_top_title_wrap h3 {
    font-size: calc(54 / 750 * 100vw);
  }

  .contents_top_title_wrap p {
    font-size: calc(32 / 750 * 100vw);
  }

  #tuyomi_area .contents_top_title_wrap {
    margin-top: -20px;
    margin-bottom: 50px;
  }

  .my_swiper_wrap {
    padding-bottom: 100px;
  }

  .mySwiper .swiper-pagination {
    margin-bottom: -60px;
  }

  .swiper-slide .number {
    width: auto;
    font-size: calc(120 / 750 * 100vw);
    margin-left: -10px;
    margin-top: -30px;
  }

  .mySwiper .swiper-slide .bottom_box h4 {
    font-size: calc(32 / 750 * 100vw);
  }

  .mySwiper .swiper-slide .bottom_box p {
    font-size: calc(26 / 750 * 100vw);
    margin-bottom: 0;
  }
  
  #reason_area .flexbox {
    flex-direction: column;
    gap: 30px 0;
  }

  #reason_area .flexbox .reason_item {
    width: 100%;
    padding: 20px;
  }

  #reason_area .flexbox .reason_item img {
    width: calc(160 / 750 * 100vw);
  }

  #reason_area .flexbox .reason_item h5 {
    font-size: calc(32 / 750 * 100vw);
  }

  .link_btn_wrap .link_btn {
    font-size: calc(32 / 750 * 100vw);
  }

  #lesson_area {
    padding: 50px 0 60px;
  }

  #lesson_area .contents_main_title_wrap h4.sub_title {
    margin-bottom: 0;
  }

  #lesson_area .lesson_item {
    padding-bottom: 30px;
  }

  #lesson_area .lesson_item.lesson01 {
    padding-top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50px, #e1e6ec 50px, #e1e6ec 100%);
  }


  #lesson_area .lesson_item .title_wrap {
    flex-direction: column-reverse;
    justify-content: center;
    order: 1;
    height: auto;
    padding: 20px 0;
  }

  #lesson_area .lesson_item .title_wrap h4.title {
    font-size: calc(40 / 750 * 100vw);
    margin-right: 0;
  }

  #lesson_area .lesson_item .title_wrap .en_title {
    font-size: calc(38 / 750 * 100vw);
  }


  #lesson_area .lesson_item .inner_box {
    display: flex;
    flex-direction: column;
    height: auto;
    position: initial;
    margin: 0;
   padding-bottom: 30px; 
  }

  #lesson_area .lesson_item .textbox {
    order: 3;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
    font-size: calc(26 / 750 * 100vw);
  }

  #lesson_area .lesson_item .view_more_btn {
    order: 4;
    position: initial;
    margin: auto;
    font-size: calc(30 / 750 * 100vw);
    width: calc(380 / 750 * 100vw);
  }

  #lesson_area .lesson_item .imagebox {
    order: 2;
    width: 100%;
    height: auto;
    position: initial;
    margin: 0;
    padding: 20px;
  }

  #lesson_area .lesson_item.lesson04 {
    padding-bottom: 50px;
  }

  .top_last_contents {
    background: url(../img/top/top_last_contents_right_img_sp.png) no-repeat bottom left;
    background-size: 300px;
  }

  .top_last_contents_bg {
    display: none;
  }

  .top_last_contents .title_wrap {
    background: linear-gradient(to right, #30c2ec 0%, #277ec0 100%);
  }


  .top_last_contents .title_wrap + .contents_wrap {
    padding-bottom: 170px;
  }



  .top_last_contents h3 {
    font-size: calc(40 / 750 * 100vw);
    padding: 20px 0;
    letter-spacing: 2px;
  }

  .top_last_contents .bottom_contents {
    margin: 30px 0;
  }

  .top_last_contents .bottom_contents .b_text {
    font-size: calc(54 / 750 * 100vw);
  }

  .top_last_contents .bottom_contents .s_text {
    font-size: calc(30 / 750 * 100vw);
    letter-spacing: -0.01em;
  }

  .top_last_contents .play_tennis_img {
    width: 65%;
    right: 0;
  }

  .top_last_contents .link_btn_wrap {
    gap: 0 20px;
  }
}




/* ==========================================
   BEGINNERページ
========================================== */

.s_main  {
  padding-top: 100px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .s_main {
    padding-top: 71px;
  }
}

.s_main .about:after {
  content: none;
}

.s_main .hero {
  background: url(../img/sub/s-main_bg.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
  min-height: auto;
  position: relative;
  z-index: 200;
}

@media screen and (max-width: 768px) {
  .s_main .hero {
    background: url(../img/sub/s-main_bg_sp.jpg) no-repeat;
    background-position: center top;
    background-size: cover;
  }
}


.s_main .hero .mv_contents_wrap:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 1000px solid transparent;
  border-bottom: 400px solid #fff;
}

@media screen and (max-width: 768px) {
  .s_main .hero .mv_contents_wrap:after {
    content: none;
  }
}


.s_main .hero .mv_contents_wrap {
  position: initial;
  transform: initial;
  background: none;
}


@media screen and (max-width: 768px) {
  .s_main .hero .mv_contents_wrap {
    padding: 0 20px 40vw;
  }
}

.s_main .bg_secound {
  z-index: 300;
  height: 450px;
  top: 400px;
}

@media screen and (max-width: 768px) {
  .s_main .bg_secound {
    display: none;
  }
}

.s_main .mv_body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .s_main .mv_body {
    padding: 50px 0;
  }
}

.s_main .mv_body_top {
  margin-bottom: 60px;
  padding-left: 30px;
  border-left: solid 1px #fff;
}

@media screen and (max-width: 768px) {
  .s_main .mv_body_top {
    margin-bottom: 30px;
    padding-left: 20px;
  }
}

.s_main .mv_body .title {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #16b1e1;
  line-height: 60px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .s_main .mv_body .title {
    font-size: calc(70 / 750 * 100vw);
    line-height: calc(70 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.s_main .mv_body .sub_title {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .s_main .mv_body .sub_title {
    font-size: calc(36 / 750 * 100vw);
  }
}

.s_main .mv_body .description {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .s_main .mv_body .description {
    font-size: calc(57 / 750 * 100vw);
  }
}

.s_main .mv_body .text {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .s_main .mv_body .text {
    font-size: calc(34 / 750 * 100vw);
    line-height: 2;
    margin-bottom: 30px;
  }
}

.s_main .mv_body .btn .link {
  display: inline-block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #0e6eb8;
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  width: 300px;
}

.s_main .mv_body .btn .link.btn_link {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .s_main .mv_body .btn .link {
    font-size: calc(32 / 750 * 100vw);
    width: 250px;
  }

  .s_main .mv_body .btn .link.btn_link {
    margin: 0;
    margin-top: 15px;
  }
}

.s_main .mv_image_wrap {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .s_main .mv_image_wrap {
    position: absolute;
    top: auto;
    z-index: 1002;
    left: 20px;
    right: 20px;
  }
}

/* // ==============================================================================
/* about 
   =============================================================================
*/

.s_main .about {
  padding-top: 200px;
  padding-bottom: 100px;
  background: #fff;
  position: relative;
  z-index: 150;
}

@media screen and (max-width: 768px) {
  .s_main .about {
    padding: 180px 0 50px;
  }
}


.s_main .head {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .s_main .head {
    margin-bottom: 40px;
  }
}

.s_main .head .en {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #16b1e1;
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .s_main .head .en {
    font-size: calc(40 / 750 * 100vw);
  }
}

.s_main .head .title {
  font-size: 46px;
  font-weight: 700;
  color: #0e6eb8;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .s_main .head .title {
    font-size: calc(56 / 750 * 100vw);
  }
}

.s_main .head .desc {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .s_main .head .desc {
    font-size: calc(34 / 750 * 100vw);
  }
}

.beginner_swiper {
  margin-bottom: 40px;
}

.beginner_swiper .swiper-slide  {
  width: 330px;
}

.s_main .btn_wrap .link {
  display: inline-block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #0e6eb8;
  padding: 10px 20px;
  border-radius: 30px;
  width: 300px;
}

@media screen and (max-width: 768px) {
  .s_main .btn_wrap .link {
    font-size: calc(32 / 750 * 100vw);
    width: calc(550 / 750 * 100vw);
  }
}


/* // ==============================================================================
/* envi 
   =============================================================================
*/

.envi {
  padding: 80px 0;
  margin-bottom: 80px;
  background: #e1e6ec;
  position: relative;
  z-index: 150;
}

@media screen and (max-width: 768px) {
  .envi {
    padding: 50px 0;
    margin-bottom: 50px;
  }
}

.envi .inner_wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
}

.envi .head {
  text-align: center;
  margin-bottom: 40px;
}

.envi .head .envi_ttl {
  font-size: 36px;
  font-weight: 700;
  color: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .envi .head .envi_ttl {
    font-size: calc(44 / 750 * 100vw);
  }
}

.envi .contents {
  
}

.envi  .envi_list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.envi .envi_item {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .envi .envi_item {
    flex-direction: column;
  }
}

.envi .envi_item .envi_item_head {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: #0e6eb8;
  color: #16b1e1;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .envi .envi_item .envi_item_head {
    font-size: calc(32 / 750 * 100vw);
    width: 100%;
    padding: 10px;
  }
}

.envi .envi_item .envi_item_body {
  font-size: 20px;
  font-weight: 500;
  background: #fff;
  color: #000;
  padding: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .envi .envi_item .envi_item_body {
    padding: 15px 8px;
  }
}

.envi .envi_item_text {
  font-size: 18px;
  color: #777;
}

@media screen and (max-width: 768px) {
  .envi .envi_item .envi_item_text {
    font-size: calc(26 / 750 * 100vw);
    text-align: center;
  }
}

.envi .envi_item_ttl {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .envi .envi_item_ttl {
    font-size: calc(32 / 750 * 100vw);
    text-align: center;
  }
}


/* // ==============================================================================
   reason 
   =============================================================================
*/


.reason {
  background: url(../img/sub/reason_bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  z-index: 150;
}

.reason .inner_wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .reason .inner_wrap {
    padding: 0;
  }
}

.reason .head .en {
  color: #fff;
}

.reason .head .title {
  color: #fff;
}

.reason .head .title span {
  color: #0e6eb8;
  background: #fff;
  padding: 0px 8px;
}

.reason .head .desc {
  color: #fff;
}

.reason .contents {
  
}

.reason .reason_list {
  display: flex;
  justify-content: center;
  gap: 0 75px;
}

@media screen and (max-width: 768px) {
  .reason .reason_list {
    flex-direction: column;
    gap: 80px 0;
    margin-bottom: 40px;
  }
}

.reason .reason_item {
  width: 350px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .reason .reason_item {
    width: 100%;
    position: relative;
  }

  .reason .reason_item:after {
    content: "";
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 35px;
    border-left: dotted 4px #fff;
  }

  .reason .reason_item:last-child:after {
    content: none;
  }
}

.reason .reason_item .reason_item_head {
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .reason .reason_item .reason_item_head {
    width: calc(520 / 750 * 100vw);
    margin: 0 auto 10px;
  }
}

.reason .reason_item .reason_item_head:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  border-top: dotted 2px #fff;
}

@media screen and (max-width: 768px) {
  .reason .reason_item .reason_item_head:after {
    content: none;
  }
}

.reason .reason_item:last-child .reason_item_head:after {
  content: none;
}

.reason .reason_item .reason_item_body {
  color: #fff;
}

.reason .reason_item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #16b1e1;
}

@media screen and (max-width: 768px) {
  .reason .reason_item .num {
    font-size: calc(28/ 750 * 100vw);
  }
}

.reason .reason_item .num:before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 1px;
  background: #fff;
}


.reason .reason_item .num:after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 1px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .reason .reason_item .num:before,
  .reason .reason_item .num:after {
    width: 100%;
  }

  .reason .reason_item .num span {
    flex-shrink: 0;
  }
}

.reason .reason_item .ttl {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .reason .reason_item .ttl {
    font-size: calc(40 / 750 * 100vw);
  }
}

.reason .reason_item .desc {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .reason .reason_item .desc {
    font-size: calc(28 / 750 * 100vw);
  }
}

.s_main .reason .btn_wrap .link {
  background: #fff;
  color: #0e6eb8;
}


/* // ==============================================================================
   support 
   =============================================================================
*/

.support {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .support {
    padding: 50px 0;
  }
}

.support_list {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}

@media screen and (max-width: 768px) {
  .support_list {
    flex-direction: column;
    gap: 30px 0;
    padding: 0 20px;
  }
}

.support_item {
  width: 360px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .support_item {
    width: 100%;
  }
}

.support_item .support_item_head {
  margin-bottom: 10px;
  position: relative;
}

.support_item .support_item_body {

}

.support_item .support_item_ttl {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .support_item .support_item_ttl {
    font-size: calc(34 / 750 * 100vw);
    margin-bottom: 5px;
  }
}

.support_item .support_item_text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .support_item .support_item_text {
    font-size: calc(28 / 750 * 100vw);
    margin-bottom: 5px;
  }
}

.support_item .support_item_desc {
  font-size: 15px;
  font-weight: 500;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .support_item .support_item_desc {
    font-size: calc(26 / 750 * 100vw);
  }
}

.support_item_btn {
  margin-top: 10px;
  text-align: right;
}

.support_item_btn .link {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .support_item_btn .link {
    font-size: calc(26 / 750 * 100vw);
  }
}

.support_item_btn .link:before {
  content: "＞";
  display: inline-block;
  background: #0e6eb8;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .support_item_btn .link:before {
    font-size: calc(16 / 750 * 100vw);
  }
}


/* // ==============================================================================
   voice 
   =============================================================================
*/

.voice {
  background: url(../img/sub/voice_bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  z-index: 150;
  margin-bottom: 150px;
}

@media screen and (max-width: 768px) {
  .voice {
    padding: 50px 0;
    margin-bottom: 100px;
  }
}

.voice_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
  display: flex;
  gap: 0 100px;
}

@media screen and (max-width: 768px) {
  .voice_inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px 0;
    padding: 0 0 70px;
  }
}

.voice_head {
  color: #fff;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .voice_head {
    text-align: center;
  }
}

.voice_head .voice_ttl {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .voice_head .voice_ttl {
    font-size: calc(40 / 750 * 100vw);
    margin-bottom: 0;
  }
}

.voice_head .voice_title {
  font-size: 46px;
  line-height: 46px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .voice_head .voice_title {
    font-size: calc(56 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.voice_head .voice_desc {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .voice_head .voice_desc {
    font-size: calc(30 / 750 * 100vw);
  }
}

.voice_contents {
  max-width: 100%; 
}

.voice_contents .voice_slider {
  padding: 15px;
  position: initial;
}

.voice_contents .voice_item {
  width: 500px !important;
  background: #fff;
  padding: 40px;
  color: #000;
  position: relative;
}

@media screen and (max-width: 768px) {
  .voice_contents .voice_item {
    width: 90% !important;
    padding: 20px;
  }
}

.voice_item:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 15px;
  background: url(../img/sub/chon.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 25px;
  height: 30px;
}

.voice_item:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 15px;
  rotate: 180deg;
  background: url(../img/sub/chon.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 25px;
  height: 30px;
}



.voice_item .voice_item_head {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .voice_item .voice_item_head {
    font-size: calc(34 / 750 * 100vw);
  }
}

.voice_item .voice_item_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e1e6ec;
}

@media screen and (max-width: 768px) {
  .voice_item .voice_item_body {
    /* flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px 0; */
  }
}

.voice_item .voice_item_body .left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}

@media screen and (max-width: 768px) {
  .voice_item .voice_item_body .left {
    gap: 0 10px;
  }
}

.voice_item .voice_item_body .right {
  flex-shrink: 0;
}

.voice_item .voice_item_body .left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.voice_item .voice_item_body .left .voice_item_name {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .voice_item .voice_item_body .left .voice_item_name {
    font-size: calc(26 / 750 * 100vw);
  }
}

.voice_item .voice_item_body .left .voice_item_name_text {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .voice_item .voice_item_body .left .voice_item_name_text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.voice_item .voice_item_body .link {
  color: #0e6eb8;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 30px;
  border: 1px solid #0e6eb8;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .voice_item .voice_item_body .link {
    font-size: calc(26 / 750 * 100vw);
    padding: 8px 20px;
  }
}


.voice_slider .swiper-button-prev,
.voice_slider .swiper-button-next {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  margin-top: 0;
  width: 60px;
  height: 60px;
  border: solid 1px #fff;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .voice_slider .swiper-button-prev,
  .voice_slider .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}

.voice_slider .swiper-button-prev {
  left: 20px;
}

@media screen and (max-width: 768px) {
  .voice_slider .swiper-button-prev {
    left: calc(50% - 100px);
  }
}

.voice_slider .swiper-button-next {
  left: 200px;
}

@media screen and (max-width: 768px) {
  .voice_slider .swiper-button-next {
    left: auto;
    right: calc(50% - 100px);
  }
}

.voice_slider .swiper-button-prev:after,
.voice_slider .swiper-button-next:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: -135deg;
}

@media screen and (max-width: 768px) {
  .voice_slider .swiper-button-prev:after,
  .voice_slider .swiper-button-next:after {
    width: 10px;
    height: 10px;
  }
}

.voice_slider .swiper-button-next:after {
  rotate: 45deg;
}

.voice_pager {
  position: absolute;
  bottom: 10px;
  left: 117px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  display: flex;
  gap: 0 15px;
}

@media screen and (max-width: 768px) {
  .voice_pager {
    font-size: calc(26 / 750 * 100vw);
    left: 50%;
    transform: translateX(-50%);
  }
}


/* // ==============================================================================
   cta 
   =============================================================================
*/

.s_main .cta {
  background: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .s_main .cta .top_last_contents .play_tennis_img {
    width: 75%;
    right: -50px;
  }
}


/* // ==============================================================================
   qa 
   =============================================================================
*/


.qa {
  background: #fff;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .qa {
    padding: 50px 0;
  }
}

.qa .inner_wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.qa .qa_inner {
  display: flex;
  gap: 0 100px;
}

@media screen and (max-width: 768px) {
  .qa .qa_inner {
    flex-direction: column;
    gap: 0;
  }
}

.qa .qa_inner .head {
  text-align: left;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .qa .qa_inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
}

.qa .qa_inner .head .desc {
  font-size: 20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .qa .qa_inner .head .desc {
    font-size: calc(30 / 750 * 100vw);
    margin-bottom: 0;
  }
}

.qa .link {
  font-size: 20px;
  font-weight: 700;
  background: #0e6eb8;
  color: #fff;
  padding: 10px 60px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .qa .qa_btn {
    text-align: center;
  }

  .qa .link {
    font-size: calc(32 / 750 * 100vw);
    margin: 0 auto;
    padding: 10px 50px;
  }
}

.qa .qa_inner .contents {
  width: 100%;
}

.qa .qa_list {
  /* padding-top: 20px; */
  border-top: 1px solid #e1e6ec;
}

@media screen and (max-width: 768px) {
  .qa .qa_list {
    margin-bottom: 40px;
  }
}

.qa .qa_item {
  padding: 30px 0 20px;
  border-bottom: 1px solid #e1e6ec;
  position: relative;
}

@media screen and (max-width: 768px) {
  .qa .qa_item {
    padding: 20px 0 10px;
  }
}

.qa .qa_item:after {
  content: "";
  position: absolute;
  top: 38px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0e6eb8;
  border-right: 2px solid #0e6eb8;
  rotate: 135deg;
}

@media screen and (max-width: 768px) {
  .qa .qa_item:after {
    top: 28px;
    width: 8px;
    height: 8px;
    right: 10px;
  }
}

.qa .qa_item:has(.qa_item_body.is-open):after {
  rotate: -45deg;
}

.qa .qa_item .qa_item_head {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .qa .qa_item .qa_item_head {
    font-size: calc(30 / 750 * 100vw);
    margin-bottom: 5px;
    padding-right: 25px;
  }
}

.qa .qa_item .qa_item_body {
  display: none;
  font-size: 16px;
  font-weight: 500;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .qa .qa_item .qa_item_body {
    font-size: calc(26 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.qa_item .qa_item_body.is-open {
  display: block;
}



/* // ==============================================================================
   experienced 
   =============================================================================
*/

.experienced .bg_linear {
  background: linear-gradient(180deg, #fff 0%, #fff 100px, #e1e6ec 100px, #e1e6ec 100%);
  padding-bottom: 100px;
}

.experienced_list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 80px 0;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .experienced_list {
    gap: 40px 0;
  }
}

.experienced_item {
  display: flex;
}

@media screen and (max-width: 768px) {
  .experienced_item {
    flex-direction: column;
    gap: 0;
  }
}


.experienced_item_body {
  background: #fff;
  border-left: 4px solid #16b1e1;
  color: #000;
  position: relative;
  padding: 50px 40px;
}

@media screen and (max-width: 768px) {
  .experienced_item_body {
    padding: 30px 20px;
    border-left: none;
    position: relative;
  }

  .experienced_item_body:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 3px;
    background: #16b1e1;
  }
}

.experienced_item_num {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
  color: #16b1e1;
  position: absolute;
  left: 30px;
  top: -30px;
}

@media screen and (max-width: 768px) {
  .experienced_item_num {
    font-size: calc(70 / 750 * 100vw);
    line-height: calc(70 / 750 * 100vw);
    left: 20px;
    top: -15px;
  }
}

.experienced_item_label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #0e6eb8;
  margin-bottom: 20px;
  padding: 3px 20px;
}

@media screen and (max-width: 768px) {
  .experienced_item_label {
    font-size: calc(28 / 750 * 100vw);
    margin-bottom: 10px;
    padding: 2px 10px;
  }
}

.experienced_item_ttl {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .experienced_item_ttl {
    font-size: calc(42 / 750 * 100vw);
    margin-bottom: 5px;
  }
}


.experienced_item_text {
  font-size: 15px;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .experienced_item_text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.experienced_item_text span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .experienced_item_text span {
    font-size: calc(32 / 750 * 100vw);
  }
}

.experienced_item_image {
  width: 540px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .experienced_item_image {
    width: 100%;
    height: 200px;
  }

  .experienced_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.s_main .s_about {
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  .s_main .s_about {
    padding-top: 50px;
  }
}

.s_main .s_about .experienced_item {
  width: 100%;
  background: #fff;
  align-items: flex-end;
}

.experienced_item_btn {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding-right: 40px;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .experienced_item_btn {
    justify-content: center;
    padding-right: 0px;
    padding-bottom: 20px;
  }
}

.experienced_item_btn .link {
  border: #0e6eb8 solid 1px;
  color: #0e6eb8;
  padding: 6px 40px;
  border-radius: 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .experienced_item_btn .link {
    font-size: calc(32 / 750 * 100vw);
    padding: 6px 80px;
  }
}

/* // ==============================================================================
   s_coach 
   =============================================================================
*/

.s_coach_body {
  background: #fff;
  padding: 350px 0 80px;
  margin-top: -300px;
  background: url(../img/sub/s_coach_bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .s_coach_body {
    background: url(../img/sub/s_coach_bg_sp.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 200px 0 50px;
    margin-top: -160px;
  }
}

.s_coach_body {
  color: #fff;
}

.s_coach_body .inner_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.s_coach_body .head .title {
  color: #fff;
  font-size: 40px;
  padding-bottom: 20px;
  border-bottom: solid 1px #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .s_coach_body .head .title {
    font-size: calc(48 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.s_coach_body .head .text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .s_coach_body .head .text {
    font-size: calc(32 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.s_coach_body .head .desc {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .s_coach_body .head .desc {
    font-size: calc(28 / 750 * 100vw);
    margin-bottom: 30px;
  }
}

.head .coach_btn .link {
  background: #fff;
  color: #0e6eb8;
  padding: 10px 80px;
  border-radius: 30px;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .head .coach_btn .link {
    font-size: calc(32 / 750 * 100vw);
  }
}


/* 
=============================================================================
   health 
   =============================================================================
*/

.light_blue .bg_secound {
  background: #00b9d4;
}

@media screen and (max-width: 768px) {
  .s_main .light_blue {
    background: url(../img/sub/s-main_bg_sp_light.png) no-repeat;
    background-size: cover;
    background-position: center top;
  }
}

.health .support_item .support_item_ttl {
  color: #0e6eb8;
}

.proof {
  margin-bottom: 0;
}

.proof .proof_block {
  background: #fff;
  padding: 30px;
  display: flex;
  gap: 0 30px;
}

@media screen and (max-width: 768px) {
  .proof .proof_block {
    flex-direction: column;
    gap: 20px 0;
  }
}

.proof .proof_block_01 {
  padding: 100px;
  display: block;
}

@media screen and (max-width: 768px) {
  .proof .proof_block_01 {
    padding: 20px;
  }
}

.proof .proof_block_01 .text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #565656;
}

.proof .proof_block_01 .text a {
  color: #0e6eb8;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .proof .proof_block_01 .text {
    font-size: calc(24 / 750 * 100vw);
    
  }

  .proof .proof_block_01 .text a {
    font-size: calc(24 / 750 * 100vw);
    display: block;
  }
}



.proof_block_img {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .proof_block_img {
    width: 70%;
    margin: 0 auto;
  }
}

.proof_block_ttl {
  color: #0e6eb8;
  padding-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .proof_block_ttl {
    font-size: calc(42 / 750 * 100vw);
    padding-bottom: 10px;
  }
}

.proof_block_body {
  width: 60%;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .proof_block_body {
    width: 100%;
  }
}

.proof_block_text {
  font-size: 15px;
  font-weight: 500;
  color: #565656;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e6ec;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .proof_block_text {
    font-size: calc(26 / 750 * 100vw);
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.proof_block_text.no_border {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .proof_block_text.no_border {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.proof_block_text a {
  color: #0e6eb8;
}

.s_main .s_community {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .s_main .s_community {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.community_text {
  color: #d0eff9;
  font-family: "Poppins", sans-serif;
  font-size: 95px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  opacity: 0.5;
  letter-spacing: 3px;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .community_text {
    font-size: calc(50 / 750 * 100vw);
    margin-top: 20px;
  }
}


/* // ==============================================================================
   process 
   =============================================================================
*/

.process .contents {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.process_nav {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .process_nav {
    gap: 0 10px;
    margin-bottom: 20px;
  }
}

.process_nav_item {
  color: #000;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0 30px;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .process_nav_item {
    font-size: calc(28 / 750 * 100vw);
    text-align: center;
    gap: 0 10px;
  }
}

.process_nav_item span {
  flex-shrink: 0;
}

.process_nav_item:nth-child(2):before {
  content: "";
  display: block;
  width: 270px;
  height: 2px;
  background: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .process_nav_item:nth-child(2):before {
    width: 70px;
  }
}

.process_nav_item:nth-child(2)::after {
  content: "";
  display: block;
  width: 270px;
  height: 2px;
  background: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .process_nav_item:nth-child(2)::after {
    width: 70px;
  }
}

.process_nav_img {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .process_nav_img {
    margin-bottom: 30px;
  }
}

.process_nav_img img {
  margin: 0 auto;
}

.process_head {
  font-size: 30px;
  font-weight: 700;
  background: #0e6eb8;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 2px;
  position: relative;
  width: calc(100% - 30px);
}

.process_head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid #0e6eb8;
}

.process_list {
  display: flex;
  gap: 0 30px;
}

@media screen and (max-width: 768px) {
  .process_list {
    flex-direction: column;
    gap: 50px 0;
  }
}

.process_item {
  padding: 80px 0 80px;
  width: calc(100% / 3);
  padding-right: 30px;
  border-right: dashed 1px #ccc;
  position: relative;
}

@media screen and (max-width: 768px) {
  .process_item {
    width: 100%;
    padding:  0;
    padding-right: 0;
    border-right: none;
  }

  .process_item .process_item_head {
    background: #0e6eb8;
    color: #fff;
    text-align: center;
    font-size: calc(30 / 750 * 100vw);
    font-weight: 700;
    padding: 3px 0;
  }

  .process_item.process_item_human .process_item_body {
    background: none;
    padding: 0;
    height: auto;
  } 

  .process_item.process_item_human .process_item_img {
    margin-bottom: 20px;
    height: 240px;
  }

  .process_item.process_item_human .process_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .process_item.process_item_human .process_item_ttl {
    font-size: calc(34 / 750 * 100vw);
    font-weight: 700;
    margin-bottom: 0;
    color: #0e6eb8;
    text-align: left;
  }
  
  .process_item.process_item_human .process_item_text {
    font-size: calc(28 / 750 * 100vw);
    font-weight: 700;
    margin-bottom: 5px;
    min-height: auto;
    color: #565656;
    text-align: left;
  }

  .process_item.process_item_human .process_item_desc {
    font-size: calc(26 / 750 * 100vw);
    color: #565656;
    text-align: left;
  }
  
  .process_item.process_item_human:after {
    content: none;
  }
  
  
  
}

.process_item::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 1px;
  height: 50px;
  border-left: dotted 4px #0e6eb8;
  display: block;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .process_item::before {
    content: none;
  }
}

.process_item::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 1px;
  height: 50px;
  border-left: dotted 4px #0e6eb8;
  display: block;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .process_item::after {
    bottom: -40px;
    height: 30px;
    border-left: dotted 3px #0e6eb8;
  }
}

.process_item:last-child {
  border-right: none;
  padding-right: 0;
}

.process_item .process_item_body {
  background: url(../img/sub/process_item_01.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 180px 50px;
}

@media screen and (max-width: 768px) {
  .process_item .process_item_body {
    background: url(../img/sub/process_item_01_sp.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px 0 0;
    height: 280px;
  }
}

.process_item02 .process_item_body {
  background: url(../img/sub/process_item_02.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .process_item02 .process_item_body {
    background: url(../img/sub/process_item_02_sp.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.process_item03 .process_item_body {
  background: url(../img/sub/process_item_03.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .process_item03 .process_item_body {
    background: url(../img/sub/process_item_03_sp.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.process_item_ttl {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .process_item_ttl {
    font-size: calc(38 / 750 * 100vw);
    margin-bottom: 20px;
  }
}

.process_item_text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
  min-height: 81px;
}

@media screen and (max-width: 768px) {
  .process_item_text {
    font-size: calc(26 / 750 * 100vw);
    margin-bottom: 20px;
    min-height: auto;
  }
}

.process_item_btn {
  text-align: center;
}

.process_item_btn a {
  display: inline-block;
  background: #fff;
  color: #0e6eb8;
  padding: 5px 20px;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  width: 160px;
}

@media screen and (max-width: 768px) {
  .process_item_btn a {
    font-size: calc(32 / 750 * 100vw);
    width: calc(300 / 750 * 100vw);
    padding: 10px;
  }
}

.process_list02 .process_item_body {
  background: none;
  padding: 0;

}

.process_list02 .process_item_img {
  margin-bottom: 20px;
  height: 240px;
}

.process_list02 .process_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process_list02 .process_item_ttl {
  font-size: 28px;
  font-weight: 700;
  color: #0e6eb8;
  margin-bottom: 10px;
  text-align: left;
}

.process_list02 .process_item_text {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
  color: #565656;
  min-height: auto;
}

.process_list02 .process_item_desc {
  font-size: 14px;
  text-align: left;
  color: #565656;
  letter-spacing: -0.01em;
}

.process_list02 .process_item {
  padding-bottom: 30px;
}

.process_list02 .process_item:after {
  content: none;
}

/* // ==============================================================================
   s_trust 
   =============================================================================
*/

.s_trust, .s_event {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #e1e6ec 0%, #e1e6ec 400px, #fff 400px, #fff 100%);
}

@media screen and (max-width: 768px) {
  .s_trust, .s_event {
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(180deg, #e1e6ec 0%, #e1e6ec 300px, #fff 300px, #fff 100%);
  }
}

.s_trust .inner_wrap,
.s_event .inner_wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust_list,
.event_list {
  display: flex;
  gap: 0 30px;
}

@media screen and (max-width: 768px) {
  .trust_list, .event_list {
    flex-direction: column;
    gap: 30px 0;
  }
}

.trust_item,
.event_item {
  width: calc(100% / 3 - 20px);
}

@media screen and (max-width: 768px) {
  .trust_item, .event_item {
    width: 100%;
  }
}

.trust_item_head,
.event_item_head {
  width: 100%;
  height: 240px;
  margin-bottom: 10px;
}

.trust_item_head img,
.event_item_head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust_item_ttl,
.event_item_ttl {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .trust_item_ttl, .event_item_ttl {
    font-size: calc(34 / 750 * 100vw);
    margin-bottom: 5px;
  }
}

.trust_item_text,
.event_item_text {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .trust_item_text, .event_item_text {
    font-size: calc(26 / 750 * 100vw);
  }
}


/* // ==============================================================================
   s_coach 
   =============================================================================
*/

.coach {

}

.sub_mv {
  background: url(../img/sub/sub_mv_bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 170px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sub_mv {
    background: url(../img/sub/coach_mv_bg_sp.jpg);
    padding: 100px 0;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.sub_mv:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  border-left: solid 1px #fff;
  display: block;
}

@media screen and (max-width: 768px) {
  .sub_mv:before {
    height: 30px;
  }
}

.sub_mv:after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  border-left: solid 1px #0e6eb8;
  display: block;
  z-index: 151;
}

@media screen and (max-width: 768px) {
  .sub_mv:after {
    height: 30px;
    bottom: -30px;
  }
}

.sub_mv_inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.sub_mv_en {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #00b9d4;
}

@media screen and (max-width: 768px) {
  .sub_mv_en {
    font-size: calc(32 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.sub_mv_title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sub_mv_title {
    font-size: calc(50 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.sub_mv_text {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .sub_mv_text {
    font-size: calc(28 / 750 * 100vw);
  }
}

.s_main .sub_about {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .s_main .sub_about {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .s_main .sub_about .head {
    padding: 0 20px;
  }

  .s_main .sub_about .desc {
    font-size: calc(26 / 750 * 100vw);
  }
}


.sub_policy {
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .sub_policy {
    padding-bottom: 100px;
  }
}

.c-policy {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .c-policy {
    padding: 0 20px;
  }
}

.c-policy_list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .c-policy_list {
    gap: 20px 0;
  }
}

.c-policy_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  border-radius: 40px;
  background: #fff;
  height: 70px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-policy_item {
    height: auto;
    padding: 20px;
    border-radius: 10px;
    min-height: 112px;
  }
}

.c-policy_item_num {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  background: #16b1e1;
  color: #fff;
  padding: 10px 28px;
  border-radius: 40px 0 0 40px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
}

@media screen and (max-width: 768px) {
  .c-policy_item_num {
    font-size: calc(30 / 750 * 100vw);
    padding: 5px;
    border-radius: 10px 0 10px 0;
    width: calc(70 / 750 * 100vw);
    height: calc(70 / 750 * 100vw);
  }
}

.c-policy_item_ttl {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .c-policy_item_ttl {
    font-size: calc(42 / 750 * 100vw);
  }
}

.c-policy_text {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-policy_text {
    font-size: calc(34 / 750 * 100vw);
  }
}

/* // ==============================================================================
   intro 
   =============================================================================
*/

.intro {
  padding-bottom: 120px;
  background: #e1e6ec;
  padding-top: 120px;
  position: relative;
  z-index: 160;
}

@media screen and (max-width: 768px) {
  .intro {
    padding-bottom: 60px;
  }
}

.intro_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro_block {
  margin-top: -250px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .intro_block {
    margin-top: -180px;
    margin-bottom: 40px;
  }
}

.intro_block_inner {
  display: flex;
  gap: 0 30px;
  background: #fff;
  color: #000;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .intro_block_inner {
    flex-direction: column;
    padding: 20px;
  }
}

.intro_block_inner_left {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.intro_block_inner_left_ttl {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_left_ttl {
    font-size: calc(38 / 750 * 100vw);
    letter-spacing: -0.04em;
    margin-bottom: 10px;
  }
}

.intro_block_inner_left_text {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  margin-bottom: 30px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_left_text {
    font-size: calc(26 / 750 * 100vw);
    margin-bottom: 20px;
  }
}


.intro_block_inner_left_btn .link {
  background: #0e6eb8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  width: 200px;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_left_btn {
    text-align: center;
  }

  .intro_block_inner_left_btn .link {
    font-size: calc(32 / 750 * 100vw);
    width: calc(500 / 750 * 100vw);
  }
}

.intro_block_inner_right {
  width: 40%;
  border: solid 1px #eeeeee;
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_right {
    width: 100%;
    padding: 20px;
  }
}

.intro_block_inner_right_ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #eeeeee;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_right_ttl {
    font-size: calc(34 / 750 * 100vw);
  }
}

.intro_block_inner_right_label {
  font-size: 24px;
  font-weight: 700;
  color: #0e6eb8;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_right_label {
    font-size: calc(34 / 750 * 100vw);
  }
}

.intro_block_inner_right_text {
  font-size: 40px;
  font-weight: 700;
  /* line-height: 40px; */
  /* margin-bottom: 20px; */
  color: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_right_text {
    font-size: calc(50 / 750 * 100vw);
    line-height: 1.5;
    margin-bottom: 0;
  }
}

.intro_block_inner_right_text span {
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  line-height: 80px;
  font-weight: 700;
  color: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_right_text span {
    font-size: calc(100 / 750 * 100vw);
  }
}

.intro_block_inner_right_desc {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .intro_block_inner_right_desc {
    font-size: calc(21 / 750 * 100vw);
  }
}


.intro_block2 {}

.intro_block2_inner {
  background: #fff;
  color: #000;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .intro_block2_inner {
    padding: 20px 20px 30px;
  }
}

.intro_block2_head {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: solid 1px #eeeeee;
}

@media screen and (max-width: 768px) {
  .intro_block2_head {
    font-size: calc(38 / 750 * 100vw);
    margin-bottom: 20px;
  }
}

.intro_block2_list {

}

.intro_block2_item {
  display: flex;
  align-items: space-between;
  gap: 0 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #eeeeee;
}

@media screen and (max-width: 768px) {
  .intro_block2_item {
    flex-direction: column-reverse;
    gap: 20px 0;
    border-bottom: solid 2px #eeeeee;
  }
}

.intro_block2_item_left {
  width: 100%;
}

.intro_block2_item_left_ttl {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .intro_block2_item_left_ttl {
    font-size: calc(34 / 750 * 100vw);
  }
}

.intro_block2_item_left_desc {
  padding-bottom: 10px;
}

.intro_block2_item_left_text {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .intro_block2_item_left_text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.intro_block2_item_right {
  width: 330px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .intro_block2_item_right {
    width: 100%;
  }
}


.intro_block2_btn {

}

@media screen and (max-width: 768px) {
  .intro_block2_btn {
    text-align: center;
  }
}

.intro_block2_btn .link {
  background: #0e6eb8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  width: 200px;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .intro_block2_btn .link {
    font-size: calc(32 / 750 * 100vw);
    width: calc(500 / 750 * 100vw);
  }
}


/*
=============================================================================
   advisor 
   =============================================================================
*/
.advisor {
  padding: 120px 0
}

@media screen and (max-width: 768px) {
  .advisor {
    padding: 60px 0;
  }
}

.advisor_inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.advisor_list {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.advisor_item {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: calc(100% / 2 - 25px);
}

@media screen and (max-width: 768px) {
  .advisor_item {
    width: 100%;
    flex-direction: column;
    gap: 20px 0;
  }
}


.advisor_item_left {
  width: 100%;
}

.advisor_item_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor_item_right_ttl {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #0e6eb8;
}

@media screen and (max-width: 768px) {
  .advisor_item_right_ttl {
    font-size: calc(30 / 750 * 100vw);
  }
}

.advisor_item_right_ttl span {
  font-size: 32px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .advisor_item_right_ttl span {
    font-size: calc(42 / 750 * 100vw);
  }
}

.advisor_item_right_label {
  font-size: 20px;
  font-weight: 700;
  color: #0e6eb8;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .advisor_item_right_label {
    font-size: calc(28 / 750 * 100vw);
    margin-bottom: 10px;
  }
}

.advisor_item_right_text {
  font-size: 15px;
  font-weight: 500;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .advisor_item_right_text {
    font-size: calc(28 / 750 * 100vw);
  }
}

.advisor_item_right_profile {
  font-size: 14px;
  font-weight: 500;
  color: #565656;
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #eeeeee;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .advisor_item_right_profile {
    font-size: calc(26 / 750 * 100vw);
    margin-top: 10px;
    padding-top: 10px;
  }
}

.advisor_item_right_profile span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #16b1e1;
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .advisor_item_right_profile span {
    font-size: calc(28 / 750 * 100vw);
    margin-bottom: 5px;
  }
}


.advisor_item_right {
  width: 100%;
  color: #000;
}

.advisor_item:first-child {
  width: 100%;
  flex-direction: row;
  gap: 0 40px;
}

@media screen and (max-width: 768px) {
  .advisor_item:first-child {
    flex-direction: column;
    gap: 20px 0;
  }
}

.advisor_item:first-child .advisor_item_left {
  width: calc(100% / 2 - 20px);
}

.advisor_item:first-child .advisor_item_right {
  width: calc(100% / 2 - 20px);
}

@media screen and (max-width: 768px) {
  .advisor_item:first-child .advisor_item_left {
    width: 100%;
    height: calc(445 / 750 * 100vw);
  }
  .advisor_item:first-child .advisor_item_right {
    width: 100%;
  }
}



.coach .sub_about .title {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .coach .sub_about .title {
    font-size: calc(40 / 750 * 100vw);
  }
}


/* 
=============================================================================
   coach 
   =============================================================================
*/


.coach_syle_list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .coach_syle_list {
    gap: 20px 0;
    flex-direction: column;
    margin-bottom: 50px;
  }
}

.coach_syle_item {
  width: calc(100% / 2 - 20px);
}

@media screen and (max-width: 768px) {
  .coach_syle_item {
    width: 100%;
  }
}

.coach_syle_item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  background: #60ddc8;
  border-radius: 5px 5px 0 0;
}

@media screen and (max-width: 768px) {
  .coach_syle_item_head {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.coach_syle_item02 .coach_syle_item_head {
  background: #ff757a;
}

.coach_syle_item03 .coach_syle_item_head {
  background: #f7cc4b;
}

.coach_syle_item04 .coach_syle_item_head {
  background: #5bd676;
}

.coach_syle_item05 .coach_syle_item_head {
  background: #3fc3ed;
}

.coach_syle_item06 .coach_syle_item_head {
  background: #ff9639;
}


.coach_syle_item_head_ttl {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
}

.coach_syle_item_head_en {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.coach_syle_item_contents {
  border: solid 1px #60ddc8;
  padding: 20px 18px;
  border-radius: 0 0 5px 5px;
}

.coach_syle_item02 .coach_syle_item_contents {
  border: solid 1px #ff757a;
}

.coach_syle_item03 .coach_syle_item_contents {
  border: solid 1px #f7cc4b;
}

.coach_syle_item04 .coach_syle_item_contents {
  border: solid 1px #5bd676;
}

.coach_syle_item05 .coach_syle_item_contents {
  border: solid 1px #3fc3ed;
}

.coach_syle_item06 .coach_syle_item_contents {
  border: solid 1px #ff9639;
}

.coach_syle_item_contents_text {
  font-size: 14px;
  font-weight: 500;
  color: #565656;
  letter-spacing: -0.01em;
}

.coach_syle_item_contents_text span {
  font-weight: 700;
}

.coach_shiten_list {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.coach_shiten_item {
  width: 100%;
}

.coach_shiten_item a {
  background: #0e6eb8;
  padding: 20px 30px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .coach_shiten_item a {
    padding: 20px;
  }
}

.coach_shiten_item_ttl {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .coach_shiten_item_ttl {
    font-size: calc(28 / 750 * 100vw);
  }
}

.coach_shiten_item_more {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .coach_shiten_item_more {
    font-size: calc(24 / 750 * 100vw);
  }
}



.coach_syle_list02 {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px 50px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .coach_syle_list02 {
    gap: 20px;
  }
}

.coach_syle_list02_item02 {
  width: calc(100% / 3 - 34px);
}

@media screen and (max-width: 768px) {
  .coach_syle_list02_item02 {
    width: calc(100% / 2 - 10px);
  }
}

.coach_syle_item02_head {
  margin-bottom: 10px;
}

.coach_syle_item02_head img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .coach_syle_item02_head img {
    height: 220px;
  }
}

.coach_syle_item02_head_label {
  display: none;
  font-size: 16px;
  font-weight: 700;
  color: #000;
 background: #60ddc8; 
 text-align: center;
 padding: 8px;
 letter-spacing: -0.02em;
}

@media screen and (max-width: 768px) {
  .coach_syle_item02_head_label {
    font-size: calc(22 / 750 * 100vw);
    padding: 4px;
  }
}

.coach_syle_item02_01 .coach_syle_item02_head_label {
  background: #60ddc8;
}

.coach_syle_item02_02 .coach_syle_item02_head_label {
  background: #ff757a;
}

.coach_syle_item02_03 .coach_syle_item02_head_label {
  background: #f7cc4b;
}

.coach_syle_item02_04 .coach_syle_item02_head_label {
  background: #5bd676;
}

.coach_syle_item02_05 .coach_syle_item02_head_label {
  background: #3fc3ed;
}

.coach_syle_item02_06 .coach_syle_item02_head_label {
  background: #ff9639;
}

.coach_syle_item02_contents {
  
}

.coach_syle_item02_contents_name {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

@media screen and (max-width: 768px) {
  .coach_syle_item02_contents_name {
    font-size: calc(32 / 750 * 100vw);
  }
}

.coach_syle_item02_contents_text {
  font-size: 14px;
  font-weight: 500;
  color: #565656;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .coach_syle_item02_contents_text {
    font-size: calc(24 / 750 * 100vw);
  }
}


/* // ==============================================================================
   facility 
   =============================================================================
*/

.facility {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 120px;
  background: #e1e6ec;
}

@media screen and (max-width: 768px) {
  .facility {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}

.facility .head {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .facility .head {
    margin-bottom: 30px;
  }
}

.facility .head .desc {
  font-size: 20px;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 768px) {
  .facility .head .desc {
    font-size: calc(27 / 750 * 100vw);
  }
}

.facility .contents {
  
}

.facility_swiper {
  background: #e1e6ec;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .facility_swiper {
    margin-bottom: 30px;
  }
}

.facility_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.facility_swiper .swiper-slide {
  background: #e1e6ec;
}

.facility_item img {
  width: 100%;
}


/* 
=============================================================================
   review 
   =============================================================================
*/

.review {
  /* padding-top: 120px; */
  padding-bottom: 120px;
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .review {
    padding-bottom: 60px;
    margin-top: 60px;
  }

  .p_review .sub_mv {
    padding: 60px 0;
  }
}

.review_block {
  background: linear-gradient(180deg, #0e6eb8 0, #0e6eb8 400px, #e1e6ec 400px, #e1e6ec 100%);
  padding: 100px 0;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .review_block {
    padding: 40px 0;
    margin-bottom: 60px;
    background: linear-gradient(180deg, #0e6eb8 0, #0e6eb8 300px, #e1e6ec 300px, #e1e6ec 100%);
  }
}

.review_block:last-child {
  margin-bottom: 0;
}

.review .head .title {
  color: #fff;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .review .head .title {
    font-size: calc(50 / 750 * 100vw);
  }
}

.review .swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 80px;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .review .swiper-wrapper {
    margin-bottom: 50px;

  }
}

.review .review_item {
  background: #fff;
  padding: 40px;
  height: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .review .review_item {
    padding: 20px;
  }
}

.review .review_item::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 15px;
  background: url(../img/sub/chon.png) no-repeat center center / cover;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 25px;
  height: 30px;
}

.review .review_item::after {
  content: "";
    position: absolute;
    bottom: -15px;
    right: 15px;
    rotate: 180deg;
    background: url(../img/sub/chon.png) no-repeat center center / cover;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 25px;
    height: 30px;
}



.review_item_contents {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review_item_contents_text {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #eeeeee;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .review_item_contents_text {
    font-size: calc(34 / 750 * 100vw);
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.review_item_contents_inner {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-top: auto;
}

.review_item_contents_inner_image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .review_item_contents_inner_image {
    width: calc(80 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
  }
}

.review_item_contents_inner_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review_item_contents_inner_text {
  font-size: 18px;
  font-weight: 500;
  color: #565656;
}

@media screen and (max-width: 768px) {
  .review_item_contents_inner_text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.review .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.review .swiper-pagination-bullet {
  
}

.review .swiper-pagination-bullet-active {
  background: #000;
}

.review .swiper-button-prev,
.review .swiper-button-next {
  top: auto;
  bottom: 0;
  width: 25px;
  height: 25px;
}

.review .swiper-button-prev::after,
.review .swiper-button-next::after {
  width: 15px;
  height: 25px;
  font-size: 25px;
  font-weight: 700;
}


.review .swiper-button-prev {
  left: calc(50% - 130px);
}

@media screen and (max-width: 768px) {
  .review .swiper-button-prev {
    left: calc(50% - 100px);
  }
}

.review .swiper-button-next {
  right: calc(50% - 130px);
}

@media screen and (max-width: 768px) {
  .review .swiper-button-next {
    right: calc(50% - 100px);
  }
}


.coach_coming_soon {
  max-width: 1000px;
  margin: 0 auto;
  background: #ddd;
  padding: 40px;
  border-radius: 10px;
}

.coach_coming_soon img {
  width: 200px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .coach_coming_soon img {
    width: 150px;
  }
}

.coach_coming_soon_text {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.coach_coming_soon_text span {
  display: block;
  font-size: 20px;
  font-weight: 600;
}