
@charset "UTF-8";
.ly_header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: clamp(64px, 10vw, 80px);
  -webkit-box-shadow: 0px 10px 7px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 7px -6px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-bottom: 3px solid #95D0DE;
  z-index: 9999;
}

.ly_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 88%;
  max-width: 1100px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .ly_header_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
  }
}

.bl_header_logo_img {
  height: 34px;
}

@media screen and (min-width: 768px) {
  .bl_header_logo_img {
    height: unset;
    max-height: 36px;
  }
}

.bl_header_logo_ttl {
  font-size: 1rem;
}

.bl_header_logo_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.bl_header_menuPc {
  display: none;
}

@media screen and (min-width: 768px) {
  .bl_header_menuPc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.bl_header_menuPc_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.bl_header_menuPc_li_item {
  margin-left: 1rem;
  margin-right: 2rem;
  font-size: 13px;
  font-weight: 400;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.bl_header_menuPc_li_item_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  white-space: nowrap;
  position: relative;
}

.bl_header_menuPc_li_item_link::after {
  position: absolute;
  bottom: 1px;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #69adbe;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bl_header_menuPc_li_item_link:hover::after {
  width: 100%;
}

.bl_header_menuPc_li_item_txt {
  overflow: hidden;
  -webkit-transition: color 0.6s cubic-bezier(0.45, 0.12, 0.04, 0.96);
  transition: color 0.6s cubic-bezier(0.45, 0.12, 0.04, 0.96);
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
}

.bl_header_menuSp {
  position: relative;
}

@media screen and (min-width: 768px) {
  .bl_header_menuSp {
    display: none;
  }
}

.bl_header_menuSp_overlay {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: black;
}

@media screen and (min-width: 768px) {
  .bl_header_menuSp_overlay {
    display: none;
  }
}

.bl_header_menuSp_li {
  position: fixed;
  top: 112px;
  right: -360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 100%;
  font-size: 1.6rem;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  opacity: 0;
  z-index: 20;
}

.bl_header_menuSp_li_item {
  width: 88%;
  margin: auto;
  margin-bottom: 2rem;
}

.bl_header_menuSp_li_item a {
  color: white;
}

.bl_header_menuSp_icon {
  position: fixed;
  top: 19px;
  right: 24px;
  width: 22px;
  height: 22px;
  z-index: 10000;
  margin-left: 1.6rem;
}

.bl_header_menuSp_icon_input {
  display: none;
}

.bl_header_menuSp_icon,
.bl_header_menuSp_icon span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bl_header_menuSp_icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.4px;
  background-color: #442f17;
  border-radius: 3px;
}

.bl_header_menuSp_icon span:nth-of-type(1) {
  top: 0;
}

.bl_header_menuSp_icon span:nth-of-type(2) {
  top: 10px;
}

.bl_header_menuSp_icon span:nth-of-type(3) {
  top: 20px;
}

.bl_header_menuSp_icon_input:checked ~ .bl_header_menuSp_li {
  right: 0;
  opacity: 1;
}

.bl_header_menuSp_icon_input:checked ~ .bl_header_menuSp_overlay {
  display: block;
  opacity: 0.8;
}

.bl_header_menuSp_icon_input:checked ~ .bl_header_menuSp_icon span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-315deg);
          transform: translateY(20px) rotate(-315deg);
  top: -10px;
}

.bl_header_menuSp_icon_input:checked ~ .bl_header_menuSp_icon span:nth-of-type(2) {
  opacity: 0;
}

.bl_header_menuSp_icon_input:checked ~ .bl_header_menuSp_icon span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(315deg);
          transform: translateY(-20px) rotate(315deg);
  top: 30px;
}

.el_btn.el_btn_application.bl_header_btn {
  width: 178px;
  height: 48px;
  padding: 0;
  min-width: unset;
  max-width: unset;
}

.el_btn_application_icon.bl_header_btn_icon {
  width: 18px;
}

.el_btn_application_icon.bl_header_btn_icon_gl {
  margin: 0;
}

.ly_front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-top: clamp(64px, 10vw, 80px);
  margin: auto;
}

.ly_front_inner {
  width: 88%;
  max-width: 880px;
  margin: auto;
}

@media screen and (min-width: 960px) {
  .ly_front_inner {
    width: 100%;
  }
}

.ly_front h2 {
  font-family: serif;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  text-align: center;
  line-height: 2.6rem;
  margin-bottom: 1rem;
  border: unset;
  padding-right: 0;
  padding-left: 0;
}

.bl_front_notice, .bl_front_reason, .bl_front_worry, .bl_front_instructor, .bl_front_cta, .bl_front_success, .bl_front_voice, .bl_front_price {
  margin-bottom: clamp(4rem, 12vw, 8rem);
}


.bl_front_fv_img, .bl_front_banner_img {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

.bl_front_subTtl {
  width: 100%;
  background-color: #95D0DE;
}

.bl_front_subTtl_inner {
  width: 100%;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.bl_front_notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_front_notice_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_front_notice_inner {
  width: 100%;
  padding: 2rem;
  background-color: #F0F0F0;
  margin-top: 1rem;
}

.bl_front_notice_inner:first-of-type {
  position: relative;
  margin-top: 3rem;
}

.bl_front_notice_inner:first-of-type > img {
  position: absolute;
  top: -1rem;
  left: -1rem;
  -webkit-animation: bounce .6s ease infinite alternate;
          animation: bounce .6s ease infinite alternate;
}

.bl_front_notice_inner:last-of-type {
  margin-bottom: 0;
}

.bl_front_notice_ttlBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.bl_front_notice_ttl {
  width: 88%;
}


.bl_front_worry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_front_worry_h2 span {
  color: #CEBB89;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
}

.bl_front_worry_h2:nth-of-type(2) {
  font-size: clamp(1.5rem, 6vw, 3.4rem);
  margin-top: clamp(1rem, 5vw, 3rem);
  margin-bottom: clamp(1rem, 5vw, 3rem);
}

.bl_front_worry_inner {
  background-color: #EFF0F3;
}

.bl_front_worry_txt {
  width: 88%;
  padding: 3rem 0;
  margin: auto;
}

.bl_front_worry_arrow {
  width: clamp(45px, 9vw, 65px);
}

.bl_front_worry_solution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_front_worry_solution_bl {
  position: relative;
}

@media screen and (min-width: 375px) {
  .bl_front_worry_solution_bl {
    margin-right: 2rem;
  }
}

.bl_front_worry_solution_bl:after {
  position: absolute;
  content: "";
  background-color: #95D0DE;
  width: 5px;
  height: 20px;
  left: 50%;
}

@media screen and (min-width: 375px) {
  .bl_front_worry_solution_bl:last-of-type {
    margin-right: 0;
  }
}

.bl_front_worry_solution_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(100px, 20vw, 200px);
  height: clamp(100px, 20vw, 200px);
  border-radius: 50%;
  background-color: #95D0DE;
}

.bl_front_worry_solution_point_inner {
  width: clamp(92px, 18vw, 182px);
  height: clamp(92px, 18vw, 182px);
  border-radius: 50%;
  border: 1px dashed white;
  text-align: center;
}

.bl_front_worry_solution_point_inner_txt {
  position: absolute;
  width: clamp(92px, 18vw, 182px);
  top: clamp(24%, 6vw, 28%);
  letter-spacing: -.05rem;
  line-height: clamp(2.2rem, 4vw, 3.4rem);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
}

.bl_front_worry_result {
  width: 100%;
  padding: 1rem 0;
  border-bottom: 2px solid #CEBB89;
  border-top: 2px solid #CEBB89;
  margin: 2rem 0;
  text-align: center;
  font-family: serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #CEBB89;
}

.bl_front_instructor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.bl_front_instructor_img {
  width: clamp(172px, 30vw, 258px);
}

.bl_front_instructor_img2 {
  margin-bottom: 1rem;
}

.bl_front_instructor_img3{
margin-bottom: 2rem;
width: 100%;
}

@media screen and (min-width: 768px) {
  .bl_front_instructor_img2 {
    height: 248px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .bl_front_instructor_media {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}

.bl_front_instructor_video {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bl_front_instructor_video {
    height: 248px;
  }
}

.bl_front_instructor_introduction {
  text-align: center;
  margin-bottom: 2rem;
}

.bl_front_instructor_introduction_txt {
  border-bottom: 1px solid #9C9C9C;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .bl_front_instructor_introduction_txt {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

.bl_front_instructor_introduction_ttl {
  font-weight: 600;
}

.bl_front_instructor_introduction_more {
  margin-top: 2rem;
}

.bl_front_instructor h2 {
  font-family: unset;
  font-weight: 600;
  font-size: 2rem;
}

.bl_front_instructor h2 span {
  font-size: 1.6rem;
}

.bl_front_instructor_link {
  color: #69adbe;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1rem;
}

.bl_front_success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_front_success h2 {
  margin-bottom: 0;
}

.bl_front_success_subTtl {
  font-weight: 300;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .bl_front_success_eg {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
  }
}

.bl_front_success_eg_inner {
  margin-bottom: 2rem;
}

.bl_front_success_eg_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_front_success_eg_item_ttl {
  position: relative;
  width: 108%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2rem;
  padding: 1rem 0;
  color: white;
  background-color: #95D0DE;
}

.bl_front_success_eg_item_ttl::before, .bl_front_success_eg_item_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.bl_front_success_eg_item_ttl::before {
  left: 0;
  border-width: 30px 0 30px 15px;
  border-color: transparent transparent transparent #f8f8f8;
}

.bl_front_success_eg_item_ttl::after {
  right: 0;
  border-width: 30px 15px 30px 0;
  border-color: transparent #f8f8f8 transparent transparent;
}

.bl_front_voice_evaluation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_front_voice_evaluation_txt {
  margin-bottom: 2rem;
}

.bl_front_price {
  background-color: white;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: 2rem;
  -webkit-box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.18);
}

@media screen and (min-width: 768px) {
  .bl_front_price_img {
    padding: 0 4rem;
  }
}

.bl_front_flow {
  width: 88%;
  max-width: 880px;
  padding: 4rem;
  margin: auto;
  margin-bottom: clamp(4rem, 12vw, 8rem);
  background: #E2F2F6;
}

@media screen and (min-width: 960px) {
  .bl_front_flow {
    width: 100%;
  }
}

.bl_front_flow h2 {
  padding-top: clamp(1rem, 4vw, 4rem);
  padding-bottom: 2rem;
}

.bl_front_flow_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.bl_front_flow_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .bl_front_flow_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 640px;
    margin: auto;
  }
}

.bl_front_flow_item h3 {
  font-family: serif;
  text-align: center;
  font-size: clamp(16px, 20vw, 18px);
}

.bl_front_flow_img {
  width: clamp(115px, 20vw, 150px);
}

.bl_front_flow_content {
  padding: 0.5rem 0;
}

@media screen and (min-width: 768px) {
  .bl_front_flow_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-left: 1rem;
  }
}

.bl_front_case {
  width: 100%;
  max-width: 880px;
  margin: auto;
  margin-bottom: clamp(4rem, 12vw, 8rem);
}

.bl_front_case_ttl {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_front_case_ttl h2 {
  font-family: unset;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: unset;
}

@media screen and (min-width: 768px) {
  .bl_front_case_ttl h2 {
    padding: 2rem 0;
  }
}

.bl_front_case_inner {
  width: 88%;
  padding: 1.5rem 0;
  margin: auto;
  margin-bottom: 1rem;
  border: 1px solid #9a9a9a;
}

@media screen and (min-width: 960px) {
  .bl_front_case_inner {
    width: 100%;
  }
}

.bl_front_case_inner_item {
  margin-bottom: 1rem;
}

.bl_front_case_inner_item_flow {
  font-weight: 600;
}

.bl_front_case_inner_ttl {
  width: 100%;
  background-color: #F0F0F0;
  text-align: center;
  padding: .5rem 0;
  margin: 1rem 0;
}

.bl_front_case_inner_number {
  font-size: 1.8rem;
}

.bl_front_case_content {
  width: 88%;
  margin: auto;
}

.bl_front_case_content_gl {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .bl_front_case_content_gl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bl_front_case_content_gl img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .bl_front_case_content_gl img {
    width: 368px;
  }
}

@media screen and (min-width: 1024px) {
  .bl_front_case_content_gl_txt {
    padding: 0 6rem;
  }
}

.bl_front_case_result {
  position: relative;
  padding: 4rem;
  background-color: #F0F0F0;
}

.bl_front_case_result img {
  position: absolute;
  top: -16px;
  right: 0;
}

.bl_front_video {
  width: 88%;
  max-width: 880px;
  margin: auto;
  margin-bottom: clamp(1rem, 4vw, 8rem);
}

@media screen and (min-width: 960px) {
  .bl_front_video {
    width: 100%;
  }
}

.bl_front_video iframe {
  width: 100%;
  height: clamp(188px, 45vw, 380px);
}

.bl_front_access {
  padding: 4rem 0;
}

.bl_front_access_inner {
  width: 88%;
  max-width: 880px;
  margin: auto;
}

@media screen and (min-width: 960px) {
  .bl_front_access_inner {
    width: 100%;
  }
}

.bl_front_access_map {
  width: 100%;
  height: clamp(240px, 52vw, 400px);
}

.bl_front_access_distance {
  font-family: 600;
}

.bl_front_access_direction {
  margin-top: 2rem;
}

.bl_front_access_direction h3 {
  font-family: serif;
  text-align: center;
  font-size: clamp(16px, 20vw, 18px);
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .bl_front_access_direction_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .bl_front_access_direction_base {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding: 0 4rem;
    background: #F0F0F0;
  }
}

.bl_front_access_direction_img {
  width: 100%;
}

.bl_front_blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 88%;
  max-width: 880px;
  margin: auto;
  margin-bottom: clamp(4rem, 16vw, 8rem);
}

@media screen and (min-width: 960px) {
  .bl_front_blog {
    width: 100%;
  }
}

.bl_front_blog_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 880px;
}

.bl_front_blog_inner h2 {
  margin: auto;
  margin-bottom: 2rem;
}

.bl_front_insta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 88%;
  margin: auto;
  margin-bottom: 4rem;
}

@media screen and (min-width: 960px) {
  .bl_front_insta {
    width: 60%;
  }
}

.bl_front_insta_img {
  position: absolute;
  top: -48px;
  left: clamp(1px, 1vw, 160px);
}

@media screen and (min-width: 768px) {
  .bl_front_insta_img {
    left: 14%;
  }
}

@media screen and (min-width: 768px) {
  .bl_front_cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}

.bl_front_cta_inner {
  margin-bottom: 2rem;
}

.bl_accordion {
  display: none;
}

.bl_accordion_content {
  visibility: hidden;
  padding: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

.bl_accordion_ttlBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_accordion_labelBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_accordion:checked ~ .bl_accordion_content {
  visibility: visible;
  padding: 10px 0;
  line-height: normal;
  height: auto;
  opacity: 1;
}

.bl_accordion:checked ~ .bl_front_notice_heading > .bl_front_notice_date ~ .bl_front_notice_ttlBox > .el_plus::before {
  display: none;
}

.bl_accordion:checked ~ .bl_front_notice_heading > .bl_front_notice_date ~ .bl_front_notice_ttlBox > .el_plus::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.bl_accordion:checked ~ .bl_accordion_label > .bl_accordion_labelBox > .el_plus::before {
  display: none;
}

.bl_accordion:checked ~ .bl_accordion_label > .bl_accordion_labelBox > .el_plus::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.bl_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  font-size: 1.4rem;
}

.bl_link a {
  position: relative;
  color: #69adbe;
}

.bl_link a::after {
  position: absolute;
  bottom: -.5px;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #69adbe;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bl_link a:hover::after {
  width: 100%;
}

.el_plus {
  position: relative;
  width: 18px;
  height: 20px;
}

.el_plus::before, .el_plus::after {
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #69adbe;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.el_plus::after {
  top: 4px;
  left: 8px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.el_card {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .el_card {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.el_card_item_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

.el_card_item_img_cover {
  overflow: hidden;
  position: relative;
}

.el_card_item_img_cover::before {
  content: '';
  display: block;
  padding-top: 75%;
}

.el_card_item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

.el_card_item_ttl {
  font-weight: 400;
}

.el_card_item_txt {
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.el_link {
  margin-right: 1rem;
}

.color_link {
  color: #69adbe;
}

.el_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  min-width: 248px;
  max-width: 320px;
  margin: auto;
  padding: 0 1rem;
  border-radius: 2px;
  border: 1.5px solid #A1998F;
  text-align: center;
  color: #442f17;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  -webkit-transition: .3s;
  transition: .3s;
}

.el_btn:hover {
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0), 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.el_btn_txt {
  font-size: 1.6rem;
  font-weight: 400;
  color: #442f17;
}

.el_btn_lineReserve {
  background-color: #00B900;
  border: unset;
}

.el_btn_lineReserve_icon {
  margin-right: 1rem;
}

.el_btn_lineReserve_txt {
  color: white;
}

.el_btn_lineReserve:hover .el_btn_lineReserve_icon {
  -webkit-animation: movetext 1.2s forwards;
          animation: movetext 1.2s forwards;
}

.el_btn_application {
  background-color: #CEBB89;
  border: unset;
}

.el_btn_application_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1rem;
}

.el_btn_application_icon_1 {
  margin-bottom: .1rem;
}

.el_btn_application_txt {
  color: white;
}

.el_btn_application:hover .el_btn_application_icon {
  -webkit-animation: movetext 1.2s forwards;
          animation: movetext 1.2s forwards;
}

@-webkit-keyframes movetext {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}

@keyframes movetext {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}

@media screen and (min-width: 768px) {
  .bl_accordion_content.bl_front_instructor_content {
    visibility: visible;
    padding: 10px 0;
    line-height: normal;
    height: auto;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .bl_accordion_labelBox.bl_front_instructor_link {
    display: none;
  }
}

.footer.bl_footer {
  background-color: #95D0DE;
  padding-bottom: 88px;
}

@media screen and (min-width: 425px) {
  .footer.bl_footer {
    padding-bottom: 24px;
  }
}

.footer.bl_footer a, .footer.bl_footer .fa {
  color: white;
}

.bl_footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_footer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0 .5rem 0;
}

.bl_footer_item {
  padding-right: 1rem;
  font-size: 1.5rem;
}

.bl_footer_item a span {
  color: white;
}

.bl_footer_item:last-of-type {
  margin-right: 0;
}

.bl_footer_name {
  color: white;
  font-size: 1rem;
}

.footerFixed {
  position: fixed;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 72px;
  background-color: #f6f5f6;
  -webkit-box-shadow: 0px -10px 7px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -10px 7px -6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media screen and (min-width: 425px) {
  .footerFixed {
    display: none;
  }
}

.footerFixed_inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 2fr 1fr;
      grid-template-columns: 2fr 2fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  width: 88%;
}

.footerFixed_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerFixed_item:hover .footerFixed_icon {
  -webkit-animation: movetext 1.2s forwards;
          animation: movetext 1.2s forwards;
}

.footerFixed li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: .5rem;
  height: 48px;
  border-radius: .2rem;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
}

.footerFixed li:nth-of-type(1) {
  background-color: #CEBB89;
}

.footerFixed li:nth-of-type(2) {
  background-color: #00B900;
}

.footerFixed li:nth-of-type(3) {
  background-color: #95D0DE;
  margin-right: unset;
}

.footerFixed_txt {
  color: white;
  font-size: 1.4rem;
}

.footerFixed_icon {
  width: 20px;
  margin-right: .5rem;
}

.footerFixed_iconTel {
  width: 36px;
  height: 36px;
  background-color: #95D0DE;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
}

#back_to_topIcon, #back_to_list {
  position: fixed;
  z-index: 4;
  width: 51px;
  height: 51px;
  right: 5%;
  bottom: 11%;
  background-color: #69adbe;
  opacity: 0;
  border-radius: 50%;
}

#back_to_topIcon.fadein, #back_to_list.fadein {
  opacity: 0.6;
  -webkit-animation: SlideIn 0.4s;
          animation: SlideIn 0.4s;
}

@media screen and (min-width: 425px) {
  #back_to_topIcon, #back_to_list {
    bottom: 4%;
  }
}

@-webkit-keyframes SlideIn {
  0% {
    opacity: 0;
    /*初期状態では透明に*/
    -webkit-transform: translateX(64px);
            transform: translateX(64px);
  }
  100% {
    opacity: 0.6;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes SlideIn {
  0% {
    opacity: 0;
    /*初期状態では透明に*/
    -webkit-transform: translateX(64px);
            transform: translateX(64px);
  }
  100% {
    opacity: 0.6;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#back_to_topIcon a, #back_to_list a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
}

#back_to_topIcon a:hover, #back_to_list a:hover {
  opacity: 1;
}

.back_to_topIcon {
  position: absolute;
  top: 33%;
  left: 35%;
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-color: white white transparent transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.back_to_topTxt {
  position: absolute;
  top: 45%;
  left: 21%;
  font-size: 1.4rem;
  color: white;
  letter-spacing: .1rem;
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(12%);
          transform: translateY(12%);
}

.is-fadeup {
  -webkit-animation: fadeUpAnimation 1s forwards;
          animation: fadeUpAnimation 1s forwards;
}

@-webkit-keyframes fadeUpAnimation {
  from {
    opacity: 0;
    -webkit-transform: scale(0.3) translateY(40%);
            transform: scale(0.3) translateY(40%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

@keyframes fadeUpAnimation {
  from {
    opacity: 0;
    -webkit-transform: scale(0.3) translateY(40%);
            transform: scale(0.3) translateY(40%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

.delay-time02 {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.delay-time04 {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.js_accordion_icon {
  position: relative;
  min-width: 18px;
  width: 18px;
  height: 20px;
}

.js_accordion_icon::before, .js_accordion_icon::after {
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #95D0DE;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.js_accordion_icon::after {
  top: 4px;
  left: 8px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.js_accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.js_accordion_body {
  padding: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

.js_accordion.is_accordion ~ .js_accordion_body {
  padding: 10px 0;
  line-height: normal;
  height: auto;
  opacity: 1;
}

.js_accordion.is_accordion .js_accordion_icon::before {
  display: none;
}

.js_accordion.is_accordion .js_accordion_icon::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0px);
            transform: scale(1, 1) translateY(0px);
  }
  100% {
    -webkit-transform: scale(1, 0.9) translateY(-10px);
            transform: scale(1, 0.9) translateY(-10px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0px);
            transform: scale(1, 1) translateY(0px);
  }
  100% {
    -webkit-transform: scale(1, 0.9) translateY(-10px);
            transform: scale(1, 0.9) translateY(-10px);
  }
}
/*# sourceMappingURL=front-page2022.css.map */


/* 2026.03.23 */

/*　特典
---------------------------------------------------*/

/* バナー全体のコンテナ */
.banner-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    font-family: "Sawarabi Mincho", "Yu Mincho", "MS PMincho", serif;
    color: #333;
    box-sizing: border-box;
}

/* 金色の飾り枠 */
.banner-inner {
    border: 2px solid #d4b476;
    background-color: #fff;    /* 枠内の背景色を白に設定 */
    padding: 70px 20px 50px;   /* タイトルが下にずれる分、上の余白を確保 */
    position: relative;
    text-align: center;
    margin-bottom: 6rem;
}

/* ＼ 今だけのお得な来店特典！ ／ */
.banner-title {
    position: absolute;
    top: 30px;                /* 枠線の少し下に配置 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;    /* タイトルの背景色を白に設定 */
    padding: 0 10px;
    margin: 0;
    color: #c5a464;           /* ご指定の文字色 */
    font-size: 28px;
    white-space: nowrap;
    font-weight: bold;
}

/* 60 分の初回体験トレーニング */
.session-text {
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0 15px 0;
    letter-spacing: 0.05em;
}

/* 中央の区切り線 */
.separator-line {
    border: none;
    border-top: 1px solid #dcdcdc;
    width: 85%;
    margin: 0 auto 30px;
}

/* 価格表示エリア（上下中央揃えの核） */
.price-wrapper {
    display: flex;
    align-items: center;      /* すべての要素を垂直方向の中央に配置 */
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 通常価格 */
.old-price {
    font-size: 24px;
    line-height: 1;
}

/* 三角矢印 ▶ */
.arrow-icon {
    color: #d4b476;
    font-size: 20px;
    display: flex;
    align-items: center;
}

/* 特別価格（数字と円） */
.new-price-group {
    display: flex;
    align-items: center;      /* 数字と「円」を上下中央に配置 */
    color: #b02b2b;
    font-weight: bold;
}

.new-price {
    font-size: 72px;
    line-height: 1;
    margin: 0;
}

.price-unit {
    font-size: 32px;
    margin-left: 5px;
    line-height: 1;
}

/* --- レスポンシブ（スマホ対応） --- */
@media (max-width: 650px) {
    .banner-inner {
        padding: 50px 15px 30px;
    }
    .banner-title {
        font-size: 18px;
        top: 20px;
    }
    .session-text {
        font-size: 18px;
        margin-top: 5px;
    }
    .old-price {
        font-size: 16px;
    }
    .new-price {
        font-size: 48px;
    }
    .price-unit {
        font-size: 20px;
    }
    .arrow-icon {
        font-size: 14px;
    }
}
/*　お悩みリスト
---------------------------------------------------*/

/* リスト全体を囲む水色の枠線コンテナ */
        .check-list-container {
            border: 4px solid #e1f1f8; /* 画像のような水色の太い枠線 */
            padding: 30px 40px;        /* 枠内の余白 */
            background-color: #fff;    /* コンテナ内の背景色 */
            box-sizing: border-box;    /* サイズ計算の適正化 */
            margin: 20px 0;            /* 上下の外側余白 */
        }

        /* リスト本体のスタイルリセット */
        .check-list-custom {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* 各行（リストアイテム）のレイアウト */
        .check-list-custom li {
            display: flex;
            align-items: flex-start;  /* アイコンを上揃えにする */
            margin-bottom: 20px;      /* 行間の余白 */
            color: #333;              /* 文字色 */
            font-size: 18px;          /* 文字サイズ */
            font-weight: 500;         /* 文字の太さ */
            line-height: 1.6;         /* 行間 */
        }

        /* 最後の行の余白を消去 */
        .check-list-custom li:last-child {
            margin-bottom: 0;
        }

        /* 青いチェックマークアイコン（擬似要素） */
        .check-list-custom li::before {
            content: '✔';            /* チェックマーク */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;           /* アイコンが潰れないように固定 */
            
            width: 22px;
            height: 22px;
            margin-right: 14px;       /* アイコンとテキストの間隔 */
            margin-top: 3px;          /* テキストの高さに合わせる微調整 */
            
            border: 1px solid #74a0ba; /* アイコンの枠線 */
            background-color: #f7fbff; /* アイコンの背景色 */
            color: #4b80a1;            /* チェックマークの色 */
            
            font-size: 14px;
            font-weight: bold;
            border-radius: 1px;        /* 角を少しだけ丸く */
        }

/*　お客様のビフォーアフター
---------------------------------------------------*/

/* 他のパーツに影響を与えないよう ba- プレフィックスを維持 */
        .ba-wrapper {
            max-width: 900px;
            margin: 40px auto;
            padding: 20px;
            color: #333;
            line-height: 1.6;
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            background-color: #fff;
        }

        /* メイン見出し専用クラス：明朝系 */
        .ba-main-title {
            text-align: center;
            color: #3e8196;
            font-size: 26px;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
            border: none;
            font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
            font-weight: 500;
            letter-spacing: 0.1em;
        }

        .ba-main-title::after {
            content: "";
            display: block;
            width: 100%;
            height: 1px;
            background: #eee;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        /* 各事例のグループ */
        .ba-case-item {
            margin-bottom: 60px;
        }

        .ba-header {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 10px;
        }

        .ba-header span {
            display: block;
            font-size: 15px;
            margin-top: 5px;
            font-weight: normal;
        }

        .ba-header .ba-highlight {
            font-weight: bold;
        }

        /* レイアウト */
        .ba-flex-row {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }

        .ba-image-group {
            display: flex;
            align-items: center;
            flex: 2;
            gap: 8px;
            min-width: 0;
        }

        .ba-box {
            position: relative;
            flex: 1;
        }

        .ba-box img {
            width: 100%;
            height: auto;
            display: block;
            border: none;
        }

        .ba-label {
            width: 100%;
            color: white;
            text-align: center;
            font-size: 14px;
            font-weight: bold;
            padding: 4px 0;
            z-index: 1;
        }

        .ba-label.before {
            background-color: #79b5c9;
        }

        .ba-label.after {
            background-color: #3e8196;
        }

        .ba-arrow {
            color: #d10000;
            font-size: 18px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .ba-review-area {
            flex: 1;
        }

        .ba-review-area img {
            width: 100%;
            height: auto;
            display: block;
        }

        .ba-points {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .ba-points li {
            position: relative;
            padding-left: 20px;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .ba-points li::before {
            content: "●";
            position: absolute;
            left: 0;
            color: #3e8196;
        }

        .ba-info-box {
            background-color: #e6f7fa;
            border-radius: 4px;
            padding: 15px;
            color: #2c5d6b;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .ba-info-box p {
            margin: 0;
        }

        /* 最後の要素の余白調整 */
        .ba-case-item:last-child {
            margin-bottom: 0;
        }

        .ba-case-item:last-child .ba-info-box {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .ba-flex-row {
                flex-direction: column;
                align-items: center;
            }

            .ba-image-group,
            .ba-review-area {
                width: 100%;
            }

            .ba-review-area {
                margin-top: 10px;
            }
        }

/*　『 結果に近道 』できる理由
---------------------------------------------------*/

.bl_front_reason {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.bl_front_banner_img {
    margin-bottom: 20px;
}

.bl_front_reason_h2 span {
  margin-left: -.8rem;
}

.bl_front_reason_inner {
  position: relative;
  margin-bottom: 2rem;
}

.bl_front_reason_pointLeft, .bl_front_reason_pointRight {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: clamp(100px, 16vw, 160px);
}

.bl_front_reason_pointRight {
  left: unset;
  right: -1rem;
}

.bl_front_reason_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.bl_front_reason_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  background-color: #CEE9F0;
}

.bl_front_reason_ttl {
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  line-height: clamp(2.2rem, 5vw, 2.6rem);
  text-align: center;
}

.bl_front_reason_ttl span {
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(64%, transparent), color-stop(0, #95d0de));
  background: linear-gradient(transparent 64%, #95d0de 0);
}

.bl_front_reason_txt_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .bl_front_reason_txt_pc {
    display: block;
    padding: 2rem 3rem 0 3rem;
    line-height: 2.2rem;
  }
}

.bl_front_reason_txt_sp {
  margin-top: .5rem;
  line-height: 2.2rem;
}

@media screen and (min-width: 768px) {
  .bl_front_reason_txt_sp {
    display: none;
  }
}

/*スマホ開業
-------------------------------------------------*/

/* PC時は非表示 */
.sp_only {
    display: none;
}

/* 767px以下の時だけ有効化 */
@media screen and (max-width: 767px) {
    .sp_only {
        display: block;
        content: ""; /* 念のための空コンテンツ */
    }
}