@charset "utf-8";
:root {
  --main-color: #bce2e8;
  --black: #393E46;
  --white: #ffffff;
  --gray: #CCCCCC;
  --blue: #0152EF;
  --sky-blue: #F0F7FC;
  --navy: #092987;
  --title-blue : #2D50CC;
  --pink : #FF386A;
  --bg-contact:  linear-gradient(90deg, #FF3264, #FF76A2);
}

html {
	height: 100%;
	font-size: 62.5%;
	overflow-x: hidden; 
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.6;
  font-feature-settings: "palt";
  color: var(--black);
  overflow: hidden;
}
@media (min-width: 992px) {
body{
  font-size: 1.6rem;
}
}

input,textarea {
  font-family: "Noto Sans JP", sans-serif!important;
  color: var(--black);
}

figure {
  overflow: hidden;
}

a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/*************************
/* coommon-parts
/*************************/
/* font */
.ff-min {
  font-family: "Shippori Mincho B1", serif;
}

.ff-ja {
  font-family: "Noto Sans JP", sans-serif!important;
}

.fc-color {
  color: var(--main-color)!important;
}

.fc-white {
  color: var(--white)!important;
} 

/* sp-pc */
.pc-none {
  display: block!important;
}
.sp-none {
  display: none!important;
}
@media (min-width: 992px) {
  .pc-none {
  display: none!important;
  }
  .sp-none {
    display: block!important;
  }

}

/* 大見出し */
.main-heading {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.4;
  color: var(--black);
  text-align: center;
  margin-bottom: 3rem;
}
.main-heading .main-heading_bg {
  display: block;
  font-size: 2.2rem;
  padding-top: 5px;
}
.main-heading .main-heading_bg .round {
  font-size: 2.8rem;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  background: var(--white);
  padding: 0 10px;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .main-heading {
  font-size: 2.4rem;
}
.main-heading .main-heading_bg {
  font-size: 2.8rem;
}
.main-heading .main-heading_bg .round {
  font-size: 3.6rem;
}
}
@media (min-width: 1024px) {
  .main-heading {
  font-size: 2.8rem;
  margin-bottom: 5rem;
}
.main-heading .main-heading_bg {
  font-size: 3.4rem;
}
.main-heading .main-heading_bg .round {
  font-size: 4.8rem;
}
}
@media (min-width: 1200px) {
  .main-heading {
  font-size: 3.2rem;
}
.main-heading .main-heading_bg {
  font-size: 4rem;
}
.main-heading .main-heading_bg .round {
  font-size: 5.6rem;
}
}

/* 中見出し */ 
.medium-heading {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.008em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
.medium-heading .ff-min {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--title-blue);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .medium-heading {
    font-size: 3.2rem;
    }
    .medium-heading .ff-min {
      font-size: 1.6rem;
    }
}
@media (min-width: 992px) {
  .medium-heading {
    font-size: 3.8rem;
    }
    .medium-heading .ff-min {
      font-size: 1.8rem;
    }
}
@media (min-width: 1200px) {
  .medium-heading {
    font-size: 4rem;
    }
    .medium-heading .ff-min {
      font-size: 2rem;
    }
}

/* btn */
/* common-btn */
.contact_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 260px;
  width: 260px;
  height: 60px;
  background: var(--bg-contact);
  border-radius: 5px;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
  padding: 20px;
  margin: 0 auto;
  transition: 0.3s;
  position: relative;
}
.contact_btn::after {
  content: "";
  display: inline-block;
  background: url(../images/icon-contact.svg);
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

/* margin */
.m-side-auto {
  margin: 0 auto;
}

/* img-wrap */
.img-wrap {
  position: relative;
  width: auto;
  overflow: hidden;
}

.img-wrap::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* anchor-link */
.anchor-link {
  padding-top: 65px;
  margin-top: -65px;
}

@media (min-width: 768px) {
  .anchor-link {
    padding-top: 90px;
    margin-top: -90px;
  }
}

/* section-padding */
[class^="sec-"] {
    padding: 50px 0;
}

@media (min-width: 768px) {
  [class^="sec-"] {
    padding: 80px 0;
  }
}

/* tel設定 */
/* 特定の画面幅（スマホなど）だけクリック有効にする場合 */
@media (min-width: 1024px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/*************************
/* header
/*************************/
.common-header {
  width: 100%;
  height: 65px;
  background: transparent;
  position: fixed;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
}

.common-header__inner {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-header__logo {
  display: block;
  max-width: 190px;
  width: 100%;
}
.common-header_link {
  display: none;
}
.common-header_tel {
  display: flex;
  align-items: center;
  width: max-content;
}
.common-header_tel img {
  max-width: 32px;
}
.common-header_tel .text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  margin-left: 10px;
}
.common-header_tel .text .fs-bg{
    display: block;
    font-size: 2.2rem;
    line-height: 1;
}

@media (min-width: 768px) {
  .common-header {
  height: 90px;
  }
   .common-header__inner {
    justify-content: space-between;
  }
  .common-header_link {
      display: flex;
      align-items: center;
      gap: 0 15px;
    }
}

@media (min-width: 992px) {
  .common-header_link {
      gap: 0 25px;
    }
    .common-header_tel {
      pointer-events: none;
    }
    .common-header_tel .text {
      font-size: 1.3rem;
    }
    .common-header_tel .text .fs-bg{
        font-size: 2.8rem;
  }
}

.common-main {
  padding-top: 65px;
}

@media (min-width: 768px) {
  .common-main {
  padding-top: 90px;
}
}


/*************************
/* footer
/*************************/
/* common-footer */
.common-footer {
  padding-bottom: 65px;
}
.copyright {
  padding: 25px 15px;
  text-align: center;
  background: #092987;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  line-height: 1.4;
  color: var(--white);
}

/* floating */
.floating {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  align-items: center;
  z-index: 50;
}
.floating.is-fixed {
  display: flex;
}
.floating-btn_contact {
      display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 65px;
    background: var(--bg-contact);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.8;
    padding: 0 15px;
    margin: 0 auto;
    transition: 0.3s;
    position: relative;
}
.floating-btn_contact::after {
    content: "";
    display: inline-block;
    background: url(../images/icon-contact.svg);
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
.floating-btn_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--pink);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--black);
  padding: 0 12px;
  transition: 0.3s;
  position: relative;
}
.floating-btn_tel .fs-sm {
    display: block;
    width: 100%;
    font-size: 0.87rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
}
.floating-btn_tel img {
    margin-right: 3.5px;
}
.floating-banner_pc{
  display: none;
    position: fixed;
    width: 250px;
    bottom: 80px;
    right: 20px;
  }
  .is-fixed .floating-banner_pc {
 display: block;
  }
  .floating-banner_pc .close {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
  }
@media (min-width: 992px) {
  .floating .floating-btn_contact,
  .floating .floating-btn_tel {
    display: none;
  }
  .floating-banner_pc {
    width: auto;
    bottom: 50px;
    right: 30px;
  }
  .common-footer {
    padding: 0;
  }
}


/*************************
/* Top
/*************************/
/* main-visual */
.top-mainvisual {
  position: relative;
  overflow: hidden;
}
.top-mainvisual::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  background: linear-gradient(#F9F9F9,#F0FAFF);
}
/* movie */
.top-mv_movie {
  position: relative;
  width: 185px;
  padding-top: 30px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}
.frame-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.video-content {
  position: absolute;
  top: 4%;
  left: 9%;
  width: 83%;
  height: 93%;
  object-fit: cover;
  border-radius: 35px;
  z-index: 1;
  padding-top: 30px;
}

/* img_slide */
.top-mv_slider {
  position: absolute;
  top: 0;
  right: -10%;
  z-index: -1;
  height: 350px;
  width: 75%;
}
.top-mv_slider_wrapper {
  display: flex;
  gap: 0 8px;
}
.top-mv_slider .slider {
  height: 350px;
  overflow: hidden;
  position: relative;
}
.slider_track {
  display: flex;
  flex-direction: column;
}
.slider_track img {
  margin-bottom: 8px;
  width: 156px;
  height: auto;
}
/* 下から上（マイナス方向へ） */
.up .slider_track {
  animation: scroll-up 20s linear infinite;
}
/* 上から下（初期位置をずらしてプラス方向へ） */
.down .slider_track {
  animation: scroll-down 20s linear infinite;
}

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-33.333%); } /* 半分動いたところで0%に戻る */
}

@keyframes scroll-down {
  0% { transform: translateY(-33.333%); }
  100% { transform: translateY(0); }
}

/* top-mv_text */
.top-mv_text {
  padding: 30px 0;
}
.top-mv_text_bubble {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  background: var(--blue);
  padding: 5px;
  border-radius: 15px;
  position: relative;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 10px;
}
.top-mv_text_bubble span {
  font-size: 1.4rem;
}
.top-mv_text_bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 12px solid transparent;
    border-right: 12px solid #0056e0;
}
.top-mv_text_title {
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 15px;
}
.top-mv_text_title .fc-blue {
  background: linear-gradient(90deg, rgba(48, 113, 239, 1) 0%, rgba(41, 161, 242, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-mv_text_point {
  display: flex;
      gap: 0 5px;
    margin-bottom: 30px;
}
.contact_btn.top-mv_contact {
  max-width: 310px;
  width: 100%;
}
@media (min-width: 576px) {
  /* movie */
  .top-mv_movie {
    width: 230px;
    padding-top: 0;
  }
  .video-content {
    padding-top: 0;
    height: 92%;
  }
  /* img_slide */
  .top-mv_slider {
    height: 400px;
  }
  .top-mv_slider .slider {
    height: 400px;
  }
}

@media (min-width: 768px) {
  /* movie */
  .top-mv_movie {
    width: 270px;
    padding-top: 0;
    margin-left: 35px;
  }
  .video-content {
    padding-top: 0;
    height: 92%;
  }
  /* img_slide */
  .top-mv_slider {
    height: 400px;
    width: 5%;

  }
  .top-mv_slider .slider {
    height: 500px;
  }
  /* top-mv_text */
  .top-mv_text_title {
    font-size: 5.5rem;
  }
}
@media (min-width: 992px) {
  /* movie */
  .top-mv_movie {
    margin-left: 60px;
  }
}
@media (min-width: 1024px) {
  .top-mainvisual::before {
    background: url(../images/bg-mv.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .top-mainvisual .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /* movie */
  .top-mv_movie {
    margin-left: 30px;
  }
  /* img_slide */
  .top-mv_slider {
    height: 550px;
    width: 45%;
    right: -10%;
  }
  .top-mv_slider .slider {
    height: 550px;
  }
  .slider_track img {
    width: 250px;
  }
  /* top-mv_text */
  .top-mv_text {
    max-width: 450px;
    padding: 30px 0 0;
  }
  .contact_btn.top-mv_contact {
    max-width: 435px;
  }
}
@media (min-width: 1200px) {
  .top-mainvisual .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* movie */
  .top-mv_movie {
    width: 300px;
  }
  /* img_slide */
  .top-mv_slider {
    height: 678px;
  }
  .top-mv_slider .slider {
    height: 678px;
  }
  .slider_track img {
    width: 400px;
  }
  /* top-mv_text */
  .top-mv_text {
    max-width: 530px;
  }
  .top-mv_text_title {
    font-size: 6rem;
  }
}
@media (min-width: 1600px) {
  .top-mainvisual .container {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  /* movie */
  .top-mv_movie {
    width: 300px;
    margin-left: 80px;
  }
  /* img_slide */
  .top-mv_slider {
    height: 865px;
  }
  .top-mv_slider .slider {
    height: 865px;
  }
  /* top-mv_text */
  .top-mv_text {
    max-width: 656px;
  }
  .top-mv_text_title {
    font-size: 6rem;
  }
  
.top-mv_text_bubble {
  max-width: 600px;
  margin: 0 auto 10px;
}
.top-mv_text_bubble span {
  font-size: 2.4rem;
}
.top-mv_text_bubble::after {
  border-bottom: 16px solid transparent;
    border-right: 16px solid #0056e0;
}
.top-mv_text_title {
  font-size: 8rem;
}
.contact_btn.top-mv_contact {
  font-size: 2.4rem;
}
}

/* trouble */
.sec-trouble {
  padding-bottom: 0;
}
.sec-trouble .trouble {
  position: relative;
  padding-bottom: 30px;
}
.sec-trouble .trouble::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/trouble-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  width: 48px;
  height: 48px;
}
.trouble-list_item p {
  position: relative;
   display: flex;
   align-items: center;
   height: 100%;
  background: var(--white);
  color: var(--black);
  padding: 20px;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 0 4.5px 6px rgba(0, 0, 0, 0.1);
}
.trouble-list_item + .trouble-list_item {
  margin-top: 18px;
}
.trouble-list_item p::before,
.trouble-list_item p::after {
  content: ""; 
  position: absolute;
  width: 18px;
  height: 14px;
}
.trouble-list_item p::before {
  background: url(../images/quote_top.svg);
  top: -8px;
  left: 18px;
}
.trouble-list_item p::after {
  background: url(../images/quote_bottom.svg);
  bottom: -7px;
  right: 18px;
}
.trouble-image {
  text-align: center;
    margin: 30px auto;
}
@media (min-width: 768px) {
  .trouble-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 20px;
  }
  .trouble-list_item {
    width: calc(100% / 2 - 10px);
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .sec-trouble .trouble {
  padding-bottom: 100px;
}
  .trouble-list {
    justify-content: space-between;
  }
  .trouble-list_item {
    width: 320px;
    height: 150px;
    }
  .trouble-list_item:first-child {
      width: 100%;
  }
  .trouble-list_item:first-child p {
      width: 320px;
    margin: auto;
  }
  .trouble-image {
    position: absolute;
            top: 130px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1200px) {
  .trouble-list_item {
    width: 400px;
    }
    .trouble-list_item p {
      font-size: 1.6rem;
    }
  .trouble-list_item:first-child p {
      width: 400px;
  }
}
/* trouble-solution */
.sec-trouble .solution {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.sec-trouble .solution::before {
  content: "";
    position: absolute;
    z-index: -2;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #F0F7FC;
}
.solution_heading {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
}
.solution_heading .bg-blue {
  color: var(--white);
  background: var(--blue);
  padding: 0 7.5px;
}

/* solution-case */
.solution-case {
  margin-bottom: 60px;
}
.solution-case_item + .solution-case_item {
  margin-top: 20px;
}
.solution-case_item_inner {
  padding: 20px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4.5px 6px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  height: 100%;
}
.solution-case_item_inner .textarea {
  width: 55%;
}
.solution-case_item_inner .solution-case__movie {
  width: 40%;
  max-width: 120px;
  margin-left: 20px;
}
.solution-case_item_inner .title {
  margin-bottom: 8px;
}
.solution-case_item_inner .text{
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
}
.solution-case_item_inner .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  margin: 8px 0 10px;
}
.solution-case_item_inner .tag-list li {
  font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    background: #F2F4F5;
    padding: 2px;
}
.solution-case__movie {
  position: relative;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}
.solution-case__frame-img {
      width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.solution-case__movie .video-content{
  padding: 0;
  top: 2%;
  height: 217px;
  border-radius: 20px;
}
.solution-case__movie .bg-cover {
  position: absolute;
    top: 2%;
    width: 83%;
    left: 9%;
    height: 217px;
    z-index: 1;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
}
.solution-case__movie .btn-movie {
  position: absolute;
    top: 35%;
    left: 40px;
    z-index: 1;
    width: 40px;
}
.solution-case__movie.movie-play .bg-cover,
.solution-case__movie.movie-play .btn-movie {
  display: none!important;
}
@media (min-width: 768px) {
.solution_heading {
  font-size: 3.2rem;
}
.solution-case {
  display: flex;
  gap: 0 30px;
}
.solution-case_item {
  width: 50%;
}
.solution-case_item + .solution-case_item {
  margin-top: 0;
}
.solution-case__movie .video-content {
    height: 78%;
  }
  .solution-case__movie .video-content {
    height: 78%;
  }
}
@media (min-width: 992px) {
  .solution-case__movie .video-content {
    height: 93%;
  }
  .solution-case__movie .video-content {
    height: 93%;
  }
}
@media (min-width: 1024px) {
  .solution_heading {
    font-size: 4.8rem;
  }
  .solution-case {
    gap: 0 70px;
  }
  .solution-case_item_inner .title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .solution-case_item_inner .text{
    font-size: 1.4rem;
  }
  .solution-case_item_inner .tag-list {
    margin: 15px 0 20px;
  }
  .solution-case_item_inner .solution-case__movie {
    max-width: 176px;
  }
  .solution-case__movie .video-content {
    height: 94%;
  }
  .solution-case__movie .bg-cover {
    height: 94%;
  }
  .solution-case__movie .btn-movie {
    width: 75px;
    left: 50px;
  }
}
/* solution-voice */
.solution-voice {
  position: relative;
  padding-bottom: 40px;
}
.solution-voice::before {
  content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 100%;
    background: url(../images/bg-voice.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.solution-voice_heading {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding-top: 40px;
  margin-bottom: 30px;
}
.slider-voice_inner {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.slider-voice_inner .title{
  margin-bottom: 8px;
}
.slider-voice_inner .text{
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 8px;
}
.slider-voice_inner .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  margin: 8px 0 10px;
}
.slider-voice_inner .tag-list li {
  font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    background: #F2F4F5;
    padding: 2px;
}
@media (min-width: 992px) {
  .solution-voice_heading {
  font-size: 4rem;
  padding-top: 60px;
  margin-bottom: 40px;
}
.slider-voice_inner {
  padding: 30px 40px;
}
.slider-voice_inner .title{
  font-size: 2rem;
  margin-bottom: 12px;
}
.slider-voice_inner .text{
  font-size: 1.4rem;
  margin-bottom: 12px;
}
}
@media (min-width: 2200px) {
  .solution-voice::before {
    background-size: contain;
  }
}
/* slider */
.slick-track {
  display: flex!important;
}

/* slider-boice */
.slider-voice {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.slider-voice .slider-slide {
  height: auto;
  margin: 0 10px;
}

.button-prev,
.button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.button-prev{
  left: 0;
}
.button-next {
  right: 0;
}
.solution-voice .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
    margin-top: 30px;
    padding: 0 15px;
}
.solution-voice .slick-dots li {
  flex: 1;
  max-width: 100px;
  height: 4px;
  border-radius: 0;
  opacity: 1;
  background: var(--white);
}
.solution-voice .slick-dots li.slick-active {
  background: var(--black);
}
.solution-voice .slick-dots li button{
  display: none;
}
@media (min-width: 768px) {
  .button-prev{
    left: 110px;
  }
  .button-next {
    right: 110px;
  }
}
@media (min-width: 992px) {
  .button-prev{
    left: 150px;
  }
  .button-next {
    right: 150px;
  }
}
@media (min-width: 1200px) {
  .button-prev{
    left: 17%;
  }
  .button-next {
    right: 17%;
  }
}

/* CTA */
.CTA-area {
  padding: 30px 0;
  background: url(../images/bg-grid.png);
}
.CTA_inner {
  background: url(../images/bg-CTA_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 20px;
}
.CTA-image {
  padding: 20px 40px;
  text-align: center;
  background: var(--white);
  border-radius: 6px;
   max-width: 500px;
    margin: 0 auto;
}
.CTA-image figure {
  max-width: 140px;
    margin: 0 auto 20px;
}
.CTA-image .fc-blue {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}
.CTA-checklist {
  max-width: 210px;
    margin: 0 auto;
}
.CTA-checklist_item {
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
  font-size: 1.2rem;
  font-weight: 400;
}
.CTA-checklist_item::before {
  content: "";
  background: url(../images/icon-CTA_check.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 13.5px;
  height: 9px;
  position: absolute;
  left: 0;
}
.CTA-text {
  padding: 30px 0;
  color: var(--white);
  text-align: center;
}
.CTA-text_title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.008em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.CTA-text_title .fs-bg {
  display: inline-block;
  font-size: 4.8rem;
}
.CTA-text p{
  margin-bottom: 20px;
}
.contact_btn.CTA_contact {
  max-width: 300px;
  width: 100%;
  margin-bottom: 12px;
}
.CTA-link .tel_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 300px;
  background: var(--white);
  border-radius: 3.75px;
  border: 1px solid #FF386A;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--black);
  padding: 20px;
  margin: 0 auto;
  transition: 0.3s;
  position: relative;
}
.CTA-link .tel_btn .fs-sm {
  display: block;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.CTA-link .tel_btn img {
  margin-right: 5px;
}
@media (min-width: 768px) {
  .CTA-link {
    display: flex;
    justify-content: center;
    gap: 0 15px;
  }
  .contact_btn.CTA_contact {
    margin: 0;
    height: auto;
  }
  .CTA-link .tel_btn {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .CTA-area {
    padding: 55px 0;
  }
  .CTA_inner {
    background: url(../images/bg-CTA.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 30px;
  }
  .CTA-image {
      max-width: 384px;
    margin: 0;
  }
  .CTA-image figure {
  max-width: 230px;
}
.CTA-image .fc-blue {
  font-size: 1.6rem;
}
.CTA-checklist {
  max-width: 240px;
}
.CTA-checklist_item {
  font-size: 1.4rem;
}
  .CTA-text {
    max-width: 565px;
    width: 100%;
  }
  .CTA-text_title {
  font-size: 3.2rem;
}
.CTA-text_title .fs-bg {
  font-size: 5rem;
}
  .contact_btn.CTA_contact {
    max-width: 275px;
  }
  .CTA-link .tel_btn {
    max-width: 275px;
  }
}

@media (min-width: 1200px) {
  .CTA_inner {
    justify-content: center;
    gap: 0 80px;
  }
  .CTA-image {
    width: 100%;
  }
  .CTA-text {
    max-width: 650px;
    width: 100%;
  }
  .CTA-text_title {
  font-size: 4rem;
}
.CTA-text_title .fs-bg {
  font-size: 5.6rem;
}
}
/* sec-problem */
.sec-problem {
  background: #E8EAEB;
}
.sec-problem .main-heading .main-heading_bg {
  font-size: 2.8rem;
}
.sec-problem .fw-bold{
  font-weight: bold;
}
.sec-problem .fc-blue{
  color: var(--blue);
  font-weight: bold;
  margin-top: 30px;
}
.sec-problem .sp-text {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.problem .text-area {
  font-size: 1.6rem;
}

@media (min-width: 992px) {
  .sec-problem .main-heading .main-heading_bg {
    font-size: 4rem;
  }
  .sec-problem .problem {
    display: flex;
    flex-direction: row-reverse;
  }
  .problem .text-area {
    font-size: 2rem;
  }
  .problem .text-area .fc-blue {
    font-size: 2.2rem;
  }
}
/* sec-reason */
.reason-heading {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  position: relative;
  margin-top: 30px;
  margin-bottom: 60px;
}
.reason-heading .main-heading_bg {
  font-size: 2.8rem;
  color: var(--blue);
}
.reason-heading::after {
  content: "";
  width: 345px;
  height: 65px;
  background: url(../images/bg-title_reason.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -26px;
  z-index: -1;
}
.reason-contents {
  margin-bottom: 30px;
}
.reason-item {
  position: relative;
}
.reason-item.bg-left::before {
  content: "";
  width: 100vw;
  height: 100%;
  border-radius: 0 24px 24px 0;
  background: var(--sky-blue);
  margin-left: calc(50% - 50vw);
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: -1;
}
.reason-item.bg-right::before {
  content: "";
  width: 100vw;
  height: 100%;
  border-radius: 24px 0 0 24px;
  background: var(--sky-blue);
  margin-left: calc(50% - 50vw);
  position: absolute;
  top: 15px;
  left: 30px;
  z-index: -1;
}
.reason-item_title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.reason-item_title .en {
  display: block;
  margin-bottom: 20px;
}
.reason-item_title .fc-grblue {
  background: linear-gradient(90deg, rgba(48, 113, 239, 1) 0%, rgba(41, 161, 242, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reason-item_text figure {
  margin-bottom: 20px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .reason-heading {
  font-size: 2.4rem;
}
.reason-heading .main-heading_bg {
  font-size: 3.2rem;
}

  .reason-item.bg-left::before {
  right: 150px;
}
.reason-item.bg-right::before {
  left: 150px;
}
}
@media (min-width: 992px) {
  .reason-heading {
  font-size: 3.2rem;
  margin-top: 50px;
  margin-bottom: 80px;
}
.reason-heading .main-heading_bg {
  font-size: 5.6rem;
}
  .reason-heading::after{
    width: 670px;
    height: 133px;
    top: -65px;
}
  .reason-contents {
  margin-bottom: 55px;
}
  .reason-item {
    display: flex;
    justify-content: center;
    gap: 0 30px;
  }
  .reason-item_img {
    width: 45%;
  }
  .reason-item_img figure {
    border-radius: 8px;
  }
  .reason-item_text {
    width: 50%;
  }
  .reason-item_title .fc-grblue {
    display: inline-block;
  }
  .reason-item.bg-right {
    flex-direction: row-reverse;
  }
}
/* reason-strategy */
.reason-strategy {
  margin: 40px 0;
}
.reason-strategy_contents {
  margin-top: 40px;
}
.strategy_list + .strategy_list {
    margin-top: 40px;
  }
.strategy_list_item {
  margin-bottom: 20px;
}
.strategy_list_item:last-child {
  margin-bottom: 0;
}
.strategy_list_title {
  display: flex;
  align-items: center;
  gap: 0 7.5px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 12px;
}
.strategy_list_title img {
  width: 42px;
}
@media (min-width: 768px) {
  .strategy_list {
    display: flex;
    flex-wrap: wrap;
      gap: 40px;
  }
  .strategy_list + .strategy_list {
    margin-top: 50px;
  }
  .strategy_list_item {
    width: calc(100% / 2 - 20px);
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .reason-strategy {
    display: flex;
      gap: 0 40px;
      margin: 80px 0;
  }
  .reason-strategy_img {
    width: calc(100% / 2 - 20px);
    position: relative;
  }
  .reason-strategy_contents {
    width: calc(100% / 2 - 20px);
  }
}
/* reason-support */
.reason-support_wrapper {
  margin: 40px auto;
    padding: 0 15px;
  }
.reason-support {
  background: url(../images/bg-reason-support_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 40px 20px;
}
.reason-support_title {
  width: fit-content;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  position: relative;
  padding: 0 40px;
  margin: 0 auto 30px;
}
.reason-support_title .fs-big {
  font-size: 2.8rem;
}
.reason-support_title::before {
  content: "";
  background: url(../images/reason-support_left.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 42px;
  height: 100px;
  top: 0;
  left: 0;
  position: absolute;
}
.reason-support_title::after {
  content: "";
  background: url(../images/reason-support_right.png);
  background-size: cover;
  background-repeat: no-repeat;
   width: 42px;
  height: 100px;
  top: 0;
  right: 0;
  position: absolute;
}
.reason-support figure {
  border-radius: 8px;
}
.reason-support_text {
  color: var(--white);
}
.reason-support_text figure {
  margin: 25px auto 0;
}
.reason-support_about {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px 28px;
  margin-top: 25px;
}
.reason-support_about .name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 500px) {
.reason-support_title::before,
.reason-support_title::after {
  top: -15px;
}

}
@media (min-width: 768px) {
  .reason-support_title {
  font-size: 2.4rem;
  }
  .reason-support_title .fs-big {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .reason-support_wrapper {
    margin: 80px auto;
  }
  .reason-support {
  background: url(../images/bg-reason-support.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 20px;
  
}
  .reason-support_inner {
    display: flex;
    gap: 0 20px;
  }
  .reason-support_title {
  font-size: 3.2rem;
  }
  .reason-support_title .fs-big {
    font-size: 4.8rem;
  }
  .reason-support_title::before,
  .reason-support_title::after {
    top: 19px;
  }
  .reason-support_img {
    width: 45%;
  }
  .reason-support_text {
    width: 55%;
  }
}
@media (min-width: 1024px) {
  .reason-support_wrapper {
    max-width: 1824px;
  }
  .reason-support_inner {
    display: flex;
    gap: 0 40px;
  }
}

/* sec-flow */
.sec-flow {
  background: url(../images/bg-grid.png);
  background-size: contain;
  background-repeat: repeat;
}
/* slider */
.slider-flow {
  position: relative;
  padding-bottom: 40px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.slider-flow .slick-slide {
  margin: 0 10px;
}
.slider-flow_inner .num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--white);
  margin: 0 auto 10px;
}
.slider-flow_inner .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.6;
  min-height: 58px;
  text-align: center;
  margin: 0 auto 20px;
}
.slider-flow_inner figure {
  border-radius: 9.5px;
  margin-bottom: 20px;
}
.slider-flow_inner .text {
  margin-bottom: 20px;
}
.slider-flow_inner ul {
  padding: 15px;
  background: #F2F4F5;
}
.slider-flow_inner li {
  position: relative;
  padding-left: 15px;
  display: flex;
  margin-bottom: 15px;
}
.slider-flow_inner li::before {
  content: "●";
  color: var(--blue);
  position: absolute;
  font-size: 1rem;
  top: 5px;
  left: 0;
}
.slider-flow_inner li:last-child {
  margin-bottom: 0;
}
.slider-flow_inner .tel_btn {
  padding: 15px 40px;
  border: 2px solid var(--pink);
  max-width: 295px;
  border-radius: 5px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 auto;
  position: relative;
}
.slider-flow_inner .tel_btn .fs-sm {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 3px;
}
.slider-flow_inner .tel_btn::after {
  content: "";
  background: url(../images/icon-contact_pink.svg);
   background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 18px;
}
.slider-flow .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
    margin-top: 30px;
    padding: 0 15px;
}
.slider-flow .slick-dots li {
  flex: 1;
  max-width: 100px;
  height: 4px;
  border-radius: 0;
  opacity: 1;
  background: var(--gray);
}
.slider-flow .slick-dots li.slick-active {
  background: var(--black);
}
.slider-flow .slick-dots li button{
  display: none;
}
 
@media (min-width: 1024px) {
  .slider-flow {
  width: 100%;
  margin: 0;
  display: flex;
  gap: 0 12px;
}
.slider-flow_inner .num {
  position: relative;
}
.slider-flow_inner .num::after {
      content: "";
    width: 250px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 0;
    z-index: 1;
}
.slider-flow_inner .num span {
  position: relative;
  z-index: 2;
}
.slider-flow .slide:last-of-type .slider-flow_inner .num::after {
  content: none;
}
.slider-flow_inner .tel_btn {
  padding: 15px;
  pointer-events: none;
}
.slider-flow_inner .tel_btn::after {
  right: 5px;
}
}

@media (min-width: 1200px) {
  .slider-flow {
  gap: 0 24px;
}
.slider-flow_inner .num::after {
    width: 320px;
}
.slider-flow_inner .tel_btn {
  padding: 15px 40px;
}
.slider-flow_inner .tel_btn::after {
  right: 18px;
}
}

/* sec-faq */
.sec-faq {
  background: #F2F4F5;
}
.sec-faq .medium-heading {
  text-align: left;
}
.list_faq__item {
  border-bottom: 1px solid var(--gray);
  padding: 0 10px;
}
.list_faq__item:first-child {
  border-top: 1px solid var(--gray);
}
.list_faq__title {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
}
.list_faq__title::before {
  content: "Q";
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--blue);
  position: absolute;
  left: 10px;
}
.list_faq__title::after {
  content: "";
  background: url(../images/icon-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 14px;
  height: 7px;
  position: absolute;
  right: 10px;
  transform: rotate(180deg);
  translate: 0.3s;
}
.is-open .list_faq__title::after {
  transform: rotate(0);
}
.list_faq__text {
  display: none;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .sec-faq .container {
    display: flex;
    gap: 0 40px;
  }
  .sec-faq .medium-heading {
    max-width: 280px;
    width: 100%;
  }
  .faq-contents {
    max-width: calc(100% - 280px - 40px);
    width: 100%;
  }
}
/* contact */
.form__row {
  padding: 25px 0 ;
  border-bottom: 1px solid var(--gray);
}
.form__row.-textarea,
.form__row.-privacy {
  border-bottom: none;
}
.form__row.-privacy {
  padding: 0;
  font-weight: 600;
  text-align: center;
}
.form__row.-privacy a {
  color: var(--blue);
  text-decoration: underline;
}
.form__row .form__label {
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.4;
  display: flex;
  margin-bottom: 15px;
}
.form__row .form__label .req,
.form__row .form__label .any {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 20px;
  margin-right: 8px;
}
.form__row .form__label .req {
  background: var(--pink);
  color: var(--white);
}
.form__row .form__label .any {
  border: 1px solid var(--pink);
  color: var(--pink);
}
input[type="text"],
input[type="email"],
textarea  {
  font-size: 1.4rem;
  padding: 12px 15px;
  width: 100%;
}

button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: none;
  background:var(--blue);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin: 40px auto 0;
 }
.form__control.flex {
  display: flex;
  gap: 0 15px;
 }
.form__control.flex input[type="text"] {
  width: calc(100% / 2 - 8px);
}
 @media (min-width: 1024px) {
  .sec-contact .container {
    max-width: 1016px;
  }
  .form__row {
    display: flex;
  }
  .form__row .form__label {
    width: 200px;
    margin-right: 30px;
  }
  .form__row .form__control {
    width: calc(100% - 230px);
  }
  .form__row.-privacy {
    justify-content: center;
  }
}