/*---------------------------------------------

	ヘッダー

---------------------------------------------*/

.header {
  width: 100%;
  height: 60px;
  background-color: #FFFFFF;
  z-index: 20;
}

@media screen and (max-width: 540px) {
  .header {
    height: 70px;
  }
}



.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 93.577311%;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 540px) {
  .headerInner {

    width: 85%;
  }
}

.header__logo {
  display: block;
  width: 7.79638rem;
}

header .header__logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 540px) {
  header .header__logo {
    width: 7.39638rem;
  }
}

.header__ctaButton {
  display: flex;
  flex-direction: column;
}

.header__ctaButton--link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  color: #1981FC;

  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .header__ctaButton--link {
    font-size: 1rem;
  }
}

.header__ctaButton .icon {
  left: -1.8rem;
  width: 1.4375rem;
}

@media screen and (max-width: 540px) {
  .header__ctaButton .icon {
    width: 1.0625rem;
  }
}

.reception {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.reception__label {
  padding: 0.25rem 0.35rem;
  color: #1981FC;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 0.125rem;
  background: #E1ECFE;
}

@media screen and (max-width: 540px) {
  .reception__label {
    padding: 0.3rem;
  }
}


.reception__time {
  color: #000;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


/*---------------------------------------------

	サイドバー用

---------------------------------------------*/
.mainBlock {
  display: flex;
  height: auto !important;
}

.body {
  width: calc(100% - 250px);
  overflow: hidden;
}

@media screen and (max-width:900px) {
  .body {
    width: 100%;
  }
}


.side {
  width: 250px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100dvh;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 900px) {
  .side {
    display: none;
  }
}

.sideCtaBlock {
  position: relative;
  display: flex;
  flex-direction: column;
}

.sideCtaBlock {
  position: absolute;
  bottom: 39.333333333333%;
}

.ctaButtonBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sideCtaBlock__image {
  width: 92%;
  margin: 0 auto;
}

.ctaButton {
  width: 90.8%;
  padding: 0.69rem;
  color: #FFF;

  text-align: center;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 0.375rem;
  background: #FF6200;
}

.ctaButton.ctaButton__trial {
  color: #003894;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 0.375rem;
  border: 2px solid #003894;
  background: #FFF;
}


.ctaBlockSp {
  /* display: none; */
}

@media screen and (max-width: 900px) {
  .ctaBlockSp {
    display: block;
  }
}

.ctaButtonBlockSp {
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16%;
  padding: 0.8rem 0;
  width: 94%;
  border-radius: 0.4375rem;
  background: #EDF4FF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* 表示用のクラス（JavaScriptで付与） */
.ctaButtonBlockSp.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
}


.ctaButtonBlockSp .ctaButton {
  padding: 0.4rem 0;
  color: #FFF;
  font-size: 0.93813rem;
  font-style: normal;
  font-weight: 700;
}

.ctaButtonBlockSp .ctaButton__trial {
  color: #003894;
  font-size: 0.9375rem;
  border-radius: 0.28706rem;
  border: 1.531px solid #003894;
  background: #FFF;
}

.ctaButtonBlockSp__text {
  margin-bottom: 0.5rem;
  color: #003894;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.125rem;
}

.cta_sp {
  display: none;
}

@media screen and (max-width: 900px) {
  .cta_sp {
    display: block;
    position: fixed;
    right: 3%;
    bottom: 3%;
    width: 6.5rem;
    z-index: 10;
  }
}

.cta_sp img {
  width: 100%;
}


/*---------------------------------------------

	サイドバー用

---------------------------------------------*/
.section {
  position: relative;
  width: 100%;
}


.sectionContent {
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  justify-content: center;

}



.sectionContent img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 540px) {
  .sectionContent img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }
}

.toTop {
  display: flex;
  align-items: center;
  padding: 0.7rem 3.5rem;
  color: #FFF;
  text-align: center;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  border-radius: 1.25rem;
  border: 2px solid #FFF;
}

@media screen and (max-width: 540px) {
  .toTop {}
}

.toTop .icon {
  width: 0.53125rem;
  height: 0.4375rem;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}


/*---------------------------------------------

	FV

---------------------------------------------*/
.secFv {
  height: auto;
  overflow-y: auto;
}


.sectionContent.secFv {
  height: auto;
  flex-direction: column;
  justify-content: flex-start;

}

@media screen and (max-width: 540px) {
  .sectionContent.secFv {}
}

.secFv__mv {
  width: 100%;
  height: auto;
}

.secFv__mv img {
  width: 100%;
  height: auto;
}

.logoSlide {
  overflow: hidden;
  padding: 1rem 0 2rem 0;
}


@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logoSlide__slideInner {
  display: flex;
  overflow: hidden;
}

.logoSlide__slide {
  display: flex;
  list-style: none;
  padding: 0;
  animation: infinity-scroll-left 70s infinite linear 0.5s both;
}

.logoSlide__image {
  width: calc(100vw / 7.2);
  margin-right: 36px;
}

@media screen and (max-width: 540px) {
  .logoSlide__image {
    width: calc(100vw / 3);
    margin-right: 16px;
  }
}

.logoSlide__image>img {
  width: 100%;
}

.logoSlide__title {
  margin-bottom: 1.17rem;
  text-align: center;
  color: #003894;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .logoSlide__title {
    margin-bottom: 0.7rem;
    font-size: 0.8125rem;
  }
}

.logoSlide__title span {
  color: #003894;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .logoSlide__title span {
    font-size: 1.375rem;
  }
}

.slick-slider div {
  transition: none;
}

.slick-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}


/*---------------------------------------------

	FV

---------------------------------------------*/
.secMovie {
  position: relative;
  padding: 8rem 0 5rem 0;
}

@media screen and (max-width: 540px) {
  .secMovie {
    position: relative;
    padding: 5rem 0;
  }
}

.secMovie .sectionContent {
  display: flex;
  align-items: center;
  height: auto;
}

.movieBlock {
  position: relative;
  width: 100%;
}

.secMovie__titleBlock {
  position: absolute;
  bottom: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.secMovie__titleDeco {
  width: 9.75rem;
}

@media screen and (max-width: 540px) {
  .secMovie__titleDeco {
    width: 4.99844rem;
  }
}

.secMovie__titleDeco img {
  width: 100%;
}

.secMovie__title {
  padding-bottom: 0.8rem;
  color: #003894;
  font-size: 2.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.125rem;
}

@media screen and (max-width: 540px) {
  .secMovie__title {
    padding-bottom: 0rem;
    font-size: 1.375rem;
  }
}

.movie {
  position: relative;
  margin: 0 auto;
  aspect-ratio: 640 / 340;
  width: 44.5vw;
  min-width: 400px;
  position: relative;
}

@media screen and (max-width: 600px) {
  .movie {
    width: 92vw;
    min-width: auto;
    max-width: 95%;
  }
}

.video-open {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.movie-inner {
  width: 100%;
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

.movie-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.thumb {
  width: 100%;
  max-width: 100%;
}

.close-button {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: rgba(30, 30, 30, 0.8);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  z-index: 1010;
}

img.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
  opacity: 0.9;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: opacity 0.25s ease-in-out, visibility 0s linear 0.25s, transform 0.25s ease-in-out;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}


.modal-content {
  position: relative;
  background-color: #000;
  padding: 0;
  border: none;
  width: 90%;
  max-width: 853px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}


.youtube-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*---------------------------------------------

	現場の負担になっていませんか？

---------------------------------------------*/

.secHredderproblem {
  background-image: linear-gradient(to bottom, #EEE, #CCC);
}

/*---------------------------------------------

	こんなお悩みありませんか？

---------------------------------------------*/
.secCommonIssues .sectionContent {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/bg_commonIssues.jpg);
}

@media screen and (max-width: 540px) {
  .secCommonIssues .sectionContent {
    background-image: url(../img/bg_commonIssues_sp.jpg);
  }
}


/*---------------------------------------------

	投げて入れるだけ！

---------------------------------------------*/
.secSolution .sectionContent {
  background-image: linear-gradient(to bottom, #e0efff, #c6dcf8);
}

/*---------------------------------------------

	保護くんとは

---------------------------------------------*/

.sectionAboutMain {
  width: 75.63025210084%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 540px) {
  .sectionAboutMain {
    width: 89%;
    flex-direction: column;
    justify-content: center;
  }
}

.sectionAboutImageBlock {

  display: contents;
}

@media screen and (max-width: 540px) {
  .sectionAboutImageBlock {
    display: flex;
    justify-content: space-between;
  }
}

.sectionAboutTextBlock {
  width: 53.1%;
}

.sectionAboutTextBlock__title {
  color: #003894;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 3.125rem;
}

@media screen and (max-width: 540px) {
  .sectionAboutTextBlock__title {
    font-size: 1.375rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
  }
}

.sectionAboutTextBlock__text {
  color: #000;

  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
}

@media screen and (max-width: 540px) {
  .sectionAboutTextBlock__text {
    font-size: 0.875rem;
  }
}

.sectionTextBlock__image {
  width: 100%;
}

@media screen and (max-width: 540px) {
  .sectionTextBlock__image {
    width: 50%;
  }
}

.sectionTextBlock__image img {
  width: 100%;
  height: auto;
}


.sectionImageBlock {
  width: 44.5375%;
}

@media screen and (max-width: 540px) {
  .sectionImageBlock {
    width: 44.5375%;
  }
}

.sectionImageBlock img {
  width: 100%;
  height: auto;
}

/*---------------------------------------------

	3つの特徴

---------------------------------------------*/
.sectionFeatures {
  background-image: linear-gradient(to bottom, #e0efff, #c6dcf8);
}

/*---------------------------------------------

	3つの特徴01-1

---------------------------------------------*/
.sectionFeatures {
  background-color: #c6dcf8;
}

.sectionFeatures.sectionFeatures1col .sectionContent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sectionFeaturesWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 75.63025210084%;
  max-width: 1000px;
  min-height: 400px;
  padding: 0 5%;
  border-radius: 2.8125rem;
  background: #FFF;
}

@media screen and (max-width: 830px) {
  .sectionFeaturesWrapper {
    min-height: 500px;
  }
}


.sectionFeatures2col .sectionFeaturesWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 15vh auto 0 auto;
  max-width: 1000px;
  background: #FFF;
}

.section6 .sectionFeaturesWrapper {
  padding-top: 12vh;
  justify-content: flex-start;
  border-radius: 2.8125rem 2.8125rem 0rem 0rem;
}

@media screen and (max-width: 820px) {
  .section6 .sectionFeaturesWrapper {
    padding-top: 15vh;
  }
}

@media screen and (max-width: 540px) {
  .section6 .sectionFeaturesWrapper {
    margin: 15vh auto 0 auto;
  }
}

.section7 .sectionFeaturesWrapper {
  margin: 0 auto 20vh auto;
  padding-top: 7vh;
  border-radius: 0rem 0rem 2.8125rem 2.8125rem;
}


@media screen and (max-width: 820px) {
  .sectionFeaturesWrapper {
    width: 86.630252%;
    border-radius: 1.375rem;
  }
}

@media screen and (max-width: 540px) {
  .sectionFeaturesWrapper {
    width: 91.430252%;
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .section7 .sectionFeaturesWrapper {
    margin: 0 auto 15vh auto;
  }
}

.sectionFeatures__titleBlock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: -3%;
  left: 5.8888888888889%;
  color: #003894;
  font-size: clamp(48px, 4.722vw, 68px);
  font-style: normal;
  font-weight: 900;
  line-height: 2.125rem;
}

.section7 .sectionFeatures__titleBlock {
  top: 13%;
}


@media screen and (max-width: 540px) {
  .sectionFeatures__titleBlock {
    top: -4%;
    left: 0%;
    font-size: clamp(20px, 8.695vw, 30px);
  }
}

.sectionFeatures__title {
  color: #003894;
  font-size: clamp(39px, 3.402vw, 49px);
  font-style: normal;
  font-weight: 900;
  line-height: 2.625rem;
}

@media screen and (max-width: 540px) {
  .sectionFeatures__title {
    font-size: clamp(17px, 7.8260vw, 27px);
  }
}

.sectionFeatures__text {
  display: inline-block;
  text-align: center;
  color: #003894;
  font-size: clamp(21px, 2.15278vw, 31px);
  font-style: normal;
  font-weight: 900;
  line-height: 2.625rem;
  background: linear-gradient(transparent 60%, #FFE100 60%);
}

@media screen and (max-width: 820px) {
  .sectionFeatures__text {
    font-size: 1.9375rem;
  }

}


@media screen and (max-width: 540px) {
  .sectionFeatures__text {
    font-size: clamp(16px, 5.21739130vw, 18px);
  }

  .sectionFeatures__text.sectionFeatures__text--large {
    font-size: clamp(18px, 6.37681vw, 22px);
  }
}

.sectionFeatures .movie {
  width: 82%;
}

@media screen and (max-width: 540px) {
  .sectionFeatures .movie {
    width: 86.4vw;
  }
}

/*---------------------------------------------

	3つの特徴01-2

---------------------------------------------*/


.sectionFeatures__image {
  width: 69.5%;
}

@media screen and (max-width: 540px) {
  .sectionFeatures__image {
    width: 88.3%;
  }
}

.section7 .sectionFeatures__image {
  width: 88.3%;
}


@media screen and (max-width: 540px) {
  .section7 .sectionFeatures__image {
    width: 90%;
  }
}

.sectionFeatures__image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 820px) {
  .sectionFeatures__image .pc {
    display: none;
  }

  .sectionFeatures__image .sp {
    display: block;
  }

}

.sectionFeatures__text--small {
  color: #000;
  text-align: center;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8125rem;
}

@media screen and (max-width: 540px) {
  .sectionFeatures__text--small {
    font-size: 0.8125rem;
    line-height: 1.3125rem;
    text-align: left;
  }
}



/*---------------------------------------------

	保護くんとは-02

---------------------------------------------*/

.section8 .sectionFeaturesWrapper,
.section9 .sectionFeaturesWrapper {
  justify-content: center;
  margin: auto;
  padding: 10vh 0;
}

@media screen and (max-width: 540px) {

  .section8 .sectionFeaturesWrapper,
  .section9 .sectionFeaturesWrapper {
    padding: 3vh 1rem;
  }
}

/*---------------------------------------------

	導入事例

---------------------------------------------*/

.sectionCase__titleBlock {
  position: absolute;
  bottom: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sectionCase__titleDeco {
  width: 15%;
  max-width: 178px;
}

@media screen and (max-width: 540px) {
  .sectionCase__titleDeco {
    width: 4.75rem;
  }
}

.sectionCase__titleDeco img {
  width: 100%;
}

.sectionCase__title {
  padding-bottom: 0.2rem;
  color: #003894;
  font-size: 2.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 540px) {
  .sectionCase__title {
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.sectionCase__title span {
  display: block;
  color: #000;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 540px) {

  .sectionCase__title span {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

.sectionCase__detailWrapper {
  position: relative;
  width: 100%;
  margin: 24vh auto auto auto;
}

@media screen and (max-width: 1000px) {
  .sectionCase__detailWrapper {
    margin: 20vh auto auto auto;
  }
}

@media screen and (max-width: 540px) {
  .sectionCase__detailWrapper {
    margin: 20vh auto auto auto;
  }
}

.sectionCase__item {
    display: flex !important;
    flex-direction: column;
    margin: 0 20px;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #FFF;
    border: solid 1px;
    border-color: #CCC;
}

@media screen and (max-width: 540px) {
  .sectionCase__item {
    margin: 0 24px;
    padding: 0.8rem 0.5rem 0.8rem 0.5rem;
  }
}

.caseBlock .slick-slide {
  opacity: 0.5;
}

.caseBlock .slick-slide.slick-active {
  opacity: 1;
}

.slick-list,
.caseBlock .slick-track {
  overflow: visible !important;
}

.sectionCase__companyBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 540px) {
  .sectionCase__companyBlock {
    gap: 0.5rem;

  }
}


.sectionCase__category {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0.7rem;
}

@media screen and (max-width: 820px) {
  .sectionCase__category {
    margin-bottom: 0.5rem;

  }
}

.sectionCase__tag {
  display: flex;
  padding: 0 0.5rem;
  color: #003894;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  border-radius: 0.1875rem;
  background: #c6dcf8;
}

@media screen and (max-width: 540px) {
  .sectionCase__tag {
    font-size: 0.6875rem;
  }
}

.sectionCase__mediaBlock {
  display: contents;
}

@media screen and (max-width: 540px) {
  .sectionCase__mediaBlock {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}

.sectionCase__image {
  width: 47.3%;
  border-radius: 0.9375rem;
  overflow: hidden;
}

@media screen and (max-width: 540px) {

  .sectionCase__image {
    width: 45%;
    border-radius: 0.5rem;
  }
}

.sectionCase__image img {
  width: 100%;
  height: auto;
}

.sectionCase__company {
  margin-top: 0.3rem;
  color: #424242;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: normal;
}

@media screen and (max-width: 540px) {
  .sectionCase__company {
    font-size: 0.6875rem;
    letter-spacing: -0.01rem;
    line-height: 1.5;
  }
}


.sectionCase__comment {
  margin-bottom: 0.5rem;
  color: #003894;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (max-width: 540px) {
  .sectionCase__comment {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.sectionCase__beforeAfterBlock {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}


@media screen and (max-width: 540px) {
  .sectionCase__beforeAfterBlock {
    gap: 0.3rem;
    margin-bottom: 0.5rem;
  }
}

.sectionCase__beforeAfterItem {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

@media screen and (max-width: 540px) {
  .sectionCase__beforeAfterItem {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.sectionCase__beforeAfterTitle {
  width: 4.75rem;
  padding: 0.3rem 0rem;
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.125rem;
  background: #424242;
  border-radius: 100px;
}

.sectionCase__beforeAfterTitle.after {
  background: #003894;
}

@media screen and (max-width: 540px) {
  .sectionCase__beforeAfterTitle {
    width: 2.74369rem;
    padding: 0 0.3rem;
    font-size: 0.625rem;

  }
}

.sectionCase__beforeAfterTitle img {
  width: 100%;
  height: auto;
}

.sectionCase__beforeAfterText {
  flex: 1;
  color: #444;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}


@media screen and (max-width: 820px) {
  .sectionCase__beforeAfterText {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 540px) {
  .sectionCase__beforeAfterText {
    font-size: 0.75rem;
  }
}

.sectionCase__readMoreButton {
  margin-top: auto;
  display: block;
  padding: 0.8rem 0;
  width: 100%;
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1rem;
  border-radius: 0.3rem;
  background: #003894;
}

@media screen and (max-width: 540px) {
  .sectionCase__readMoreButton {
    padding: 0.4rem 0;
    font-size: 0.8125rem;
  }
}


.caseBlock .slick-track {
  display: flex;
}

.caseBlock .slick-slide {
  height: auto !important;
}

.slick-arrow {
  width: 3.5rem !important;
  height: auto !important;
  padding: 0 !important;
}

@media screen and (max-width: 540px) {
  .slick-arrow {
    width: 2.5rem !important;
  }
}

.slick-arrow.slick-next {
  right: 18.5vw;
}

.slick-arrow.slick-prev {
  left: 18.5vw;
}

@media screen and (max-width: 1100px) {
  .slick-arrow.slick-next {
    right: 10vw;
  }

  .slick-arrow.slick-prev {
    left: 10vw;
  }
}

@media screen and (max-width: 820px) {
  .slick-arrow.slick-next {
    right: 1vw;
  }

  .slick-arrow.slick-prev {
    left: 1vw;
  }
}

.dots-class button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-class {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dots-class li {
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color .5s ease;
}

.dots-class li.slick-active {
  background-color: #003894;
}

.dots-class li:hover {
  background-color: #003894;
}

.dots-class li:last-child {
  margin-right: 0;
}

/*---------------------------------------------

	FAQ

---------------------------------------------*/
.secFaq {
  padding-bottom: 60px;
}

.sectionFaq .sectionContent {
  height: 100dvh;
}

@media screen and (max-width: 900px) {
  .sectionFaq .sectionContent {
    height: 100dvh;
  }
}

.sectionFaqBlockWrapper {
  position: relative;
  margin: 30vh auto auto auto;
  width: 75.63025210084%;
  max-width: 1000px;
}

@media screen and (max-width: 540px) {
  .sectionFaqBlockWrapper {
    width: 89.630252%;
    margin: 20vh auto auto auto;
  }
}

.sectionFaq1col .sectionFaqBlockWrapper {
  margin: 25vh auto auto auto;
}

@media screen and (max-width: 540px) {
  .sectionFaq1col .sectionFaqBlockWrapper {
    margin: auto;
  }
}

.sectionFaq__titleBlock {
  position: absolute;
  bottom: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sectionFaq__titleDeco {
  width: 15.6125%;
  max-width: 140px;
}


@media screen and (max-width: 540px) {
  .sectionFaq__titleDeco {
    width: 3.8775rem;
  }

}

.sectionFaq__titleDeco img {
  width: 100%;
}

.sectionFaq__title {
  padding-bottom: 1.8rem;
  color: #003894;
  font-size: 2.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.125rem;
}

@media screen and (max-width: 540px) {
  .sectionFaq__title {
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
  }
}

.secFaq__items {
  display: flex;
  flex-direction: column;
  gap: 20px
}


.secFaq__item {
  position: relative;
  border: 2px solid #003894;
  background: #FFF;
}

.secFaq__textLinkBlock {
  text-align: center;
}

.secFaq__textLink {
  color: #111986;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.75rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;

}


/* よくある質問|質問
-------------------------*/
.secFaq__questionItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 1.19rem 2rem 1.3rem 1rem;
  cursor: pointer;
  background: #003894;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 540px) {
  .secFaq__questionItem {
    padding: 0.5rem 2.4rem 0.5rem 1.3rem;
  }
}

.secFaq__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
}

@media screen and (max-width: 540px) {
  .secFaq__icon {
    width: 1.12981rem;
  }
}


.secFaq__questionText {
  flex: 1;
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}


@media screen and (max-width: 1000px) {
  .secFaq__questionText {
    font-size: 1rem;
    line-height: 1.5;
  }
}


@media screen and (max-width: 540px) {
  .secFaq__questionText {
    font-size: 0.875rem;
    line-height: 1.1875rem
  }
}


/* よくある質問|回答
-------------------------*/
.secFaq__answer {
  display: none;
  padding: 1rem;
  border-top: 1px solid #CCCCCC;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media screen and (max-width: 540px) {
  .secFaq__answer {
    padding: 0.8rem 2.4rem 0.8rem 1.3rem;
  }
}

.secFaq__item.active .secFaq__answer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  opacity: 1;
  transform: translateY(0);
}


.secFaq__answerText {
  flex: 1;
  color: #1E1E1E;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

@media screen and (max-width: 540px) {
  .secFaq__answerText {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}




/* よくある質問|ボタン
-------------------------*/

.secFaq__toggle {
  position: absolute;
  top: 50%;
  right: 3.33%;
  width: 17px;
  height: 17px;
  margin-top: -10px;
}


.secFaq__toggle::before {
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  position: absolute;
  content: "";
  border-top: 2px solid #fff;
  width: 17px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}


.secFaq__item.active .secFaq__toggle::after {
  height: 0;
}

.secFaq__toggle::after {
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  content: "";
  border-left: 2px solid #fff;
  width: 0;
  height: 17px;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: 0.3s;
}

/*---------------------------------------------

	CTA

---------------------------------------------*/

.sectionCta {
  background-image: linear-gradient(to bottom, #e0efff, #c6dcf8);
}

.sectionCtaBlockWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (max-width: 540px) {
  .sectionCtaBlockWrapper {
    flex-direction: column;
  }
}

.sectionCtaBlock__image {
  margin-top: auto;
  width: 32.712739%;
  min-width: 340px;
}

@media screen and (max-width: 540px) {
  .sectionCtaBlock__image {
    min-width: auto;
  }
}

.sectionCtaBlock__image img {
  width: 100%;
  height: auto;
}

.sectionCtaBlock__textBlock {
  display: flex;
  flex-direction: column;
  width: 41.6%;
}

@media screen and (max-width: 540px) {
  .sectionCtaBlock__textBlock {
    width: 93%;

  }
}

.sectionCtaBlock__textBlock--sp {
  display: contents;
}

@media screen and (max-width: 540px) {
  .sectionCtaBlock__textBlock--sp {
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

.sectionCtaBlock__text {
  color: #003894;
  font-size: 1.8125rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.75rem;
}

@media screen and (max-width: 540px) {
  .sectionCtaBlock__text {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}

.sectionCta .ctaButton {
  padding: 1.3rem 0;
  width: 100%;
}

.sectionCta .ctaButton__trial {
  border-radius: 0.375rem;
  border: 3px solid #003894;
  background: #FFF;
}


/*---------------------------------------------

	会社概要

---------------------------------------------*/

.sectionCompanyBlockWrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  align-items: center;
  gap: 1rem;
}

@media screen and (max-width: 540px) {
  .sectionCompanyBlockWrapper {
    flex-direction: column;
    justify-content: center;
    width: 90%;
    gap: 1rem;
  }
}


.sectionCompany__left {
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

@media screen and (max-width: 540px) {
  .sectionCompany__left {
    display: flex;
    flex: inherit;
    flex-direction: column;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 540px) {
  .sectionCompany__logoBlock {
    display: flex;
    justify-content: space-between;
  }
}

.sectionCompany__title {
  color: #003894;
  text-align: left;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .sectionCompany__title {
    font-size: 1.125rem;
  }
}

.sectionCompany__logo {
  width: 100%;
}

@media screen and (max-width: 540px) {
  .sectionCompany__logo {
    width: 11.05188rem;
  }
}

.sectionCompany__image {
  width: 9.393rem;
}

@media screen and (max-width: 540px) {
  .sectionCompany__image {
    width: 10rem;
  }
}

.sectionCompany__image img {
  width: 100%;
  height: auto;
}

.sectionCompany__right {
  width: 59.3%;
}

@media screen and (max-width: 540px) {
  .sectionCompany__right {
    width: 100%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #003894;
}

th,
td {
  vertical-align: top;
  border: 1px solid #003894;
  letter-spacing: normal;
}

th {
  width: 64px;
  background-color: #f0f5ff;
  color: #003894;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8125rem;
  text-align: center;
}

td {
  padding: 0.5rem;
  color: #003894;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}


/*---------------------------------------------

	フッター

---------------------------------------------*/
.secFooter {
  padding-top: 2.2rem;
  padding-bottom: 14rem;
  background-color: #003894;
}

@media screen and (max-width: 900px) {
  .secFooter {
    padding-top: 1.6rem;
    padding-bottom: 10rem;
  }
}

.secFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.secFooter__content {
  display: contents;
}

@media screen and (min-width: 1024px) {
  .secFooter__content {
    display: flex;
    margin-bottom: 33px;
    width: 100%;
  }
}

.secFooterLinkBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.secFooterLinkBlock__text {
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.secFooterLinkBlock__link {
  color: #fff;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.secFooter__copyright {
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/*  */


.nav-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  opacity: 0.8;
  z-index: 20;
  color: #003894;
  font-family: serif;
  text-shadow: 4px 0px 0px #FFF;
}

.nav-arrow.up {
  top: 0px;
  opacity: 0.1;
}

.nav-arrow.down {
  bottom: 0px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}


/* アニメーション前のスタイル */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  /* 少し下に配置 */
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 要素が画面内に入った時に適用するスタイル */
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 少し遅れて表示される要素のデモ */
.fade-in-up.delay-1 {
  transition-delay: 0.2s;
}

.fade-in-up.delay-2 {
  transition-delay: 0.4s;
}

.fade-in-up.delay-3 {
  transition-delay: 0.6s;
}