@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  line-height: 1.6;
  background: #fff;
  font-size: 1.0625rem;
  font-weight: 400;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media screen and (min-width: 1200px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media screen and (max-width: 1199px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}

/*デバイスごとの表示切り替え*/
@media screen and (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media screen and (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/*************************************************************************************
共通インナー
**************************************************************************************/
.inner {
  max-width: 1000px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 89%;
  }
}

/*************************************************************************************
セクションタイトル
**************************************************************************************/
.section__title {
  font-size: 2.25rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 1.875rem;
  }
}

/*************************************************************************************
タイトル上吹き出し
**************************************************************************************/
.section__fukidashi img {
  display: block;
  height: 60px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .section__fukidashi img {
    height: 65px;
  }
}

.btn a {
  text-decoration: none;
  font-size: 1.25rem;
  color: #ffffff;
  display: block;
  text-align: center;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 -20px 20px -10px rgba(0, 0, 0, 0.18), 0 10px 10px -6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 -20px 20px -10px rgba(0, 0, 0, 0.18), 0 10px 10px -6px rgba(0, 0, 0, 0.3);
  border: 2px solid #000000;
  position: relative;
}
.btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../img/cta/btn-arrow.webp) no-repeat center/cover;
}
@media screen and (max-width: 1199px) {
  .btn a::after {
    width: 12px;
    height: 12px;
    right: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .btn a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .btn a:hover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #000000;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.btn-orange a {
  background: -webkit-gradient(linear, left top, right top, from(#f3971b), color-stop(85%, #f3971b), color-stop(85%, #000000), to(#000000));
  background: linear-gradient(90deg, #f3971b 0%, #f3971b 85%, #000000 85%, #000000 100%);
}
@media screen and (min-width: 1200px) {
  .btn-orange a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(85%, #ffffff), color-stop(85%, #f3971b), to(#f3971b));
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 85%, #f3971b 85%, #f3971b 100%);
    border: 2px solid #f3971b;
  }
}

.btn-blue a {
  background: -webkit-gradient(linear, left top, right top, from(#3965c3), color-stop(85%, #3965c3), color-stop(85%, #000000), to(#000000));
  background: linear-gradient(90deg, #3965c3 0%, #3965c3 85%, #000000 85%, #000000 100%);
}
@media screen and (min-width: 1200px) {
  .btn-blue a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(85%, #ffffff), color-stop(85%, #3965c3), to(#3965c3));
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 85%, #3965c3 85%, #3965c3 100%);
    border: 2px solid #3965c3;
  }
}

.btn-gray a {
  background: -webkit-gradient(linear, left top, right top, from(#5f5f5f), color-stop(85%, #5f5f5f), color-stop(85%, #000000), to(#000000));
  background: linear-gradient(90deg, #5f5f5f 0%, #5f5f5f 85%, #000000 85%, #000000 100%);
}
@media screen and (min-width: 1200px) {
  .btn-gray a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(85%, #ffffff), color-stop(85%, #5f5f5f), to(#5f5f5f));
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 85%, #5f5f5f 85%, #5f5f5f 100%);
    border: 2px solid #5f5f5f;
  }
}

.btn-large a {
  padding: 8px 40px;
  padding-right: 80px;
}
@media screen and (max-width: 1199px) {
  .btn-large a {
    font-size: 1rem;
    white-space: nowrap;
  }
}

.btn-middle a {
  font-size: 1.125rem;
  padding: 8px 25px;
  padding-right: 60px;
  white-space: nowrap;
}

.btn-small a {
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  font-size: 1rem;
  padding: 10px 25px;
  padding-right: 60px;
  white-space: nowrap;
}

.fv {
  padding-top: 60px;
  padding-bottom: 60px;
}

.fv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1100px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .fv__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.fv__contents {
  width: 600px;
}
@media screen and (max-width: 1199px) {
  .fv__contents {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .fv__contents {
    max-width: 680px;
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }
}

.fv__main {
  font-size: 1.75rem;
  font-weight: 500;
}
.fv__main span {
  color: #f3971b;
}
@media screen and (max-width: 1199px) {
  .fv__main {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .fv__main {
    font-size: 1.25rem;
  }
}

.fv__message {
  display: block;
  margin-top: 30px;
  width: 75%;
}
@media screen and (max-width: 1199px) {
  .fv__message {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .fv__message {
    margin-top: 15px;
    width: 89%;
  }
}
.fv__message img {
  display: block;
}

.fv__authority {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
@media screen and (max-width: 1199px) {
  .fv__authority {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.fv__authority li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .fv__authority li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.fv__authority li img {
  width: 55px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv__authority li img {
    width: 50px;
  }
}
.fv__authority li p {
  font-size: 0.9375rem;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .fv__authority li p {
    text-align: center;
    font-size: 1rem;
    line-height: 180%;
  }
}
.fv__authority li p span {
  font-size: 2.625rem;
  line-height: 0.5;
}
@media screen and (max-width: 767px) {
  .fv__authority li p span {
    font-size: 1.875rem;
  }
}

.fv__authority__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 28px;
}
@media screen and (max-width: 1199px) {
  .fv__authority__icons {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 767px) {
  .fv__authority__icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.fv__authority__icons li {
  display: block;
  width: 120px;
}
.fv__authority__icons li img {
  display: block;
}

.fv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 28px;
}
@media screen and (max-width: 1199px) {
  .fv__btns {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
@media screen and (max-width: 767px) {
  .fv__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}

.fv__btn a {
  width: 250px;
  font-size: 1.125rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv__btn a {
    width: 280px;
  }
}

.fv__img {
  max-width: 456px;
  width: calc(100% - 600px);
}
@media screen and (max-width: 1199px) {
  .fv__img {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 89%;
  }
}
@media screen and (max-width: 767px) {
  .fv__img {
    margin-top: 25px;
  }
}

/*************************************************************************************
フッター
**************************************************************************************/
.footer {
  background-color: #0154A7;
  color: #ffffff;
}

.footer__wrap {
  display: block;
  max-width: 1680px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 80px 0;
}

.footer__logo a {
  display: block;
  width: 280px;
}
@media (max-width: 767px) {
  .footer__logo a {
    width: 90%;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .footer__nav {
    display: block;
    margin-top: 40px;
  }
}
.footer__nav li a {
  font-size: 12px;
  color: #99bbdc;
  text-decoration: none;
}
.footer__nav li a span {
  font-size: 10px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .footer__nav li a {
    display: block;
    margin-bottom: 10px;
  }
}

.footer_copy {
  display: block;
  margin-top: 30px;
  color: #99bbdc;
}
@media (max-width: 767px) {
  .footer_copy {
    margin-top: 40px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

/*************************************************************************************
お悩み
**************************************************************************************/
.trouble {
  background-color: #ccecfa;
  padding-top: 100px;
  overflow-x: hidden;
}
@media screen and (max-width: 1199px) {
  .trouble {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .trouble {
    padding-top: 50px;
  }
}

.trouble__title {
  text-align: center;
  line-height: 150%;
}
.trouble__title span {
  color: #3965c3;
}
@media screen and (max-width: 767px) {
  .trouble__title {
    font-size: 1.625rem;
  }
}

.trouble__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .trouble__list {
    display: none;
  }
}

.trouble__item {
  width: 350px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 1199px) {
  .trouble__item {
    width: 89%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .trouble__item {
    font-size: 1rem;
  }
}

.trouble__image {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  padding-bottom: 200px;
}
@media screen and (max-width: 1199px) {
  .trouble__image {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 40px;
  }
}
.trouble__image li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .trouble__image li {
    max-width: 500px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.trouble__image li::after {
  position: absolute;
  content: "";
  bottom: -200px;
  width: 250px;
  height: 255px;
}
@media screen and (max-width: 1199px) {
  .trouble__image li::after {
    width: 180px;
    height: 150px;
    bottom: -120px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__image li::after {
    width: 140px;
    height: 120px;
    bottom: -20px;
  }
}
.trouble__image li img {
  display: block;
}

.trouble__img1::after {
  background: url(../img/trouble/trouble-illust1.webp) no-repeat center/cover;
}

.trouble__img2::after {
  background: url(../img/trouble/trouble-illust2.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .trouble__img2::after {
    right: 0;
  }
}

.trouble__img3::after {
  background: url(../img/trouble/trouble-illust3.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .trouble__img3::after {
    bottom: 0 !important;
  }
}

.trouble__img1,
.trouble__img2,
.trouble__img3 {
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.trouble__img1 {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}

.trouble__img2,
.trouble__img3 {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}

.trouble__img1.is-active,
.trouble__img2.is-active,
.trouble__img3.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.trouble__img2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.trouble__img3 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/*************************************************************************************
解決
**************************************************************************************/
.solution {
  background-color: #5f5f5f;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .solution {
    padding: 60px 0;
  }
}

.solution__title {
  color: #ffffff;
}
.solution__title span {
  color: #f3971b;
}
@media screen and (max-width: 767px) {
  .solution__title {
    font-size: 1.625rem;
  }
}

.solution__message {
  font-size: 1.75rem;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .solution__message {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .solution__message {
    font-size: 1rem;
  }
}

.solution__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .solution__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 20px;
  }
}

.solution__item {
  width: calc(33.3% - 6.6666666667px);
}
@media screen and (max-width: 767px) {
  .solution__item {
    max-width: 450px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.solution__item:nth-of-type(2) .solution__label img {
  height: 53px;
}
@media screen and (max-width: 1199px) {
  .solution__item:nth-of-type(2) .solution__label img {
    height: 42px;
  }
}

.solution__label img {
  display: block;
  width: 95%;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .solution__label img {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .solution__label img {
    max-width: 250px;
    margin-right: auto;
    margin-left: auto;
  }
}

.solution__item__box {
  background-color: #ffffff;
  padding: 25px;
  padding-bottom: 35px;
  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 (max-width: 1199px) {
  .solution__item__box {
    padding: 25px 10px;
  }
}
@media screen and (max-width: 767px) {
  .solution__item__box {
    padding: 20px 15px;
    padding-bottom: 40px;
  }
}

.solution__item__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  color: #3965c3;
  font-size: 1.5rem;
  text-align: center;
  line-height: 150%;
}
@media screen and (max-width: 1199px) {
  .solution__item__title {
    font-size: 1.25rem;
    white-space: nowrap;
  }
}

.solution__text {
  font-weight: 400;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  min-height: 133px;
}
@media screen and (max-width: 1199px) {
  .solution__text {
    font-size: 1rem;
  }
}

.solution__btn {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.solution__btn a {
  margin-top: 30px;
  width: 300px;
}
@media screen and (max-width: 1199px) {
  .solution__btn a {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .solution__btn a {
    width: 300px;
  }
}

.solution__item__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  height: 200px;
  margin: 30px auto;
}

.js-fadeup {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.js-fadeup.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*************************************************************************************
サービス
**************************************************************************************/
.service {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .service__title {
    font-size: 1.625rem;
  }
}
.service__title span {
  color: #3965c3;
}

.service__list {
  max-width: 900px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.service__item {
  margin-top: 60px;
}

.service__item__label {
  font-weight: 700;
  text-align: center;
}

.service__img {
  margin-top: 20px;
}

.service__item2__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .service__item2__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 30px;
    margin-top: 20px;
  }
}
.service__item2__wrap li {
  width: calc(33.3% - 6.6666666667px);
}
@media screen and (max-width: 767px) {
  .service__item2__wrap li {
    width: 89%;
    margin-right: auto;
    margin-left: auto;
  }
}

.service__item__btn a {
  font-size: 0.875rem;
}
@media screen and (max-width: 1199px) {
  .service__item__btn a {
    line-height: 140%;
  }
}

/*************************************************************************************
CTA1
**************************************************************************************/
.cta1 {
  background-color: #5f5f5f;
  padding: 100px 0;
}
@media screen and (max-width: 1199px) {
  .cta1 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .cta1 {
    padding: 40px 0;
  }
}

.cta1__message {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cta1__message {
    font-size: 1.5rem;
  }
}

.cta1__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .cta1__btns {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cta1__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 350px;
    width: 89%;
    margin-right: auto;
    margin-left: auto;
  }
}

.cta1__btn a {
  width: 320px;
}

/*************************************************************************************
選ばれる理由
**************************************************************************************/
.reason {
  background-color: #f2f2f2;
  padding: 100px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 60px 0;
  }
}

.reason__title span {
  color: #3965c3;
}
@media screen and (max-width: 1199px) {
  .reason__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .reason__title {
    font-size: 1.625rem;
  }
}

.reason__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .reason__wrap {
    margin-top: 30px;
  }
}

.reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.reason__item:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .reason__item:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.reason__contents {
  width: calc(100% - 450px);
}
@media screen and (max-width: 1199px) {
  .reason__contents {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 767px) {
  .reason__contents {
    width: 100%;
  }
}

.reason__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .reason__item__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.reason__item__title .reason__num {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  background-color: #3965c3;
  border: 1px solid #000000;
  padding: 3px 18px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .reason__item__title .reason__num {
    font-size: 1.5625rem;
    padding: 3px 10px;
  }
}
.reason__item__title h3 {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .reason__item__title h3 {
    font-size: 1.25rem;
  }
}
.reason__item__title h3 span {
  color: #3965c3;
}

.reason__item__list {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .reason__item__list {
    margin-top: 15px;
  }
}
.reason__item__list li {
  padding-left: 15px;
  font-weight: 400;
  position: relative;
  margin-bottom: 15px;
}
.reason__item__list li::before {
  position: absolute;
  content: "-";
  top: 5px;
  left: 0;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .reason__item__list li {
    font-size: 1rem;
  }
}

.reason__img {
  max-width: 332px;
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .reason__img {
    max-width: 250px;
  }
}

.js-fade-left {
  opacity: 0;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.js-fade-right {
  opacity: 0;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.js-fade-left.is-active,
.js-fade-right.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*************************************************************************************
ラインナップ
**************************************************************************************/
.lineup {
  background-color: #5f5f5f;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .lineup {
    padding: 60px 0;
  }
}

.lineup__title {
  color: #ffffff;
}
.lineup__title span {
  color: #f3971b;
}
@media screen and (max-width: 767px) {
  .lineup__title {
    font-size: 1.5625rem;
  }
}

.lineup__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .lineup__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 1199px) {
  .lineup__item {
    width: calc(33.3% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .lineup__item {
    max-width: 450px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.lineup__label img {
  display: block;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .lineup__label img {
    width: 80%;
  }
}

.lineup__item__box {
  background-color: #ffffff;
  padding: 25px 15px;
}

.lineup__item__title {
  font-weight: 400;
  font-size: 1.125rem;
}
@media screen and (max-width: 1199px) {
  .lineup__item__title {
    font-size: 1rem;
    min-height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__item__title {
    min-height: auto;
  }
}

.lineup__btn a {
  display: block;
  margin-top: 30px;
  font-size: 1.125rem;
}
@media screen and (max-width: 1199px) {
  .lineup__btn a {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__btn a {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
  }
}

/*************************************************************************************
CTA2
**************************************************************************************/
.cta2 {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .cta2 {
    padding: 60px 0;
  }
}

.cta2__title span {
  color: #3965c3;
}
@media screen and (max-width: 767px) {
  .cta2__title {
    font-size: 1.625rem;
  }
}

.cta2__text {
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
  line-height: 220%;
}
@media screen and (max-width: 1199px) {
  .cta2__text {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    line-height: 180%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cta2__text {
    font-size: 1rem;
    margin-top: 20px;
  }
}

.cta2__btn a {
  display: block;
  width: 350px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .cta2__btn a {
    width: 300px;
  }
}

/*************************************************************************************
導入事例
**************************************************************************************/
.case {
  background-color: #f2f2f2;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .case {
    padding: 60px 0;
  }
}

.case__title span {
  color: #3965c3;
}
@media screen and (max-width: 767px) {
  .case__title {
    font-size: 1.625rem;
  }
}

.case__item {
  margin-top: 40px;
}

.case__label img {
  display: block;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .case__label img {
    height: 35px;
  }
}

.case__item__box {
  border: 1px solid #000000;
  background-color: #ffffff;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .case__item__box {
    padding: 30px 15px;
  }
}

.case__item__title span {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(65%, transparent), color-stop(65%, #f3971b), color-stop(90%, orange), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(180deg, transparent 0%, transparent 65%, #f3971b 65%, orange 90%, transparent 90%, transparent 100%);
  font-size: 1.875rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .case__item__title span {
    font-size: 1.625rem;
    line-height: 160%;
  }
}
@media screen and (max-width: 767px) {
  .case__item__title span {
    font-size: 1.375rem;
  }
}

.case__detail {
  margin-top: 20px;
}
.case__detail dt {
  font-weight: 700;
  color: #3965c3;
  margin-left: -15px;
}
@media screen and (max-width: 1199px) {
  .case__detail dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .case__detail dt {
    font-size: 1.375rem;
  }
}
.case__detail dd {
  font-weight: 400;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .case__detail dd {
    font-size: 1rem;
  }
}

.case__img {
  display: block;
  margin-top: 40px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .case__img {
    width: 100%;
  }
}

.case2__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .case2__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.case2-1 {
  width: 350px;
}

.case2-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .case2-2 {
    gap: 20px;
  }
}
.case2-2 figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .case2-2 figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    font-size: 0.875rem;
  }
}
.case2-2 figure img {
  width: 300px;
}
.case2-2 figure:first-of-type img {
  border: 1px solid #D8D8D8;
}

/*************************************************************************************
よくある質問
**************************************************************************************/
.faq {
  padding: 100px 0;
}
@media screen and (max-width: 1199px) {
  .faq {
    padding: 60px 0;
  }
}

.faq__wrap {
  margin-top: 30px;
}

.faq__title {
  text-align: center;
}

.faq__box:last-of-type {
  border-bottom: 1px solid #000000;
}

.faq__box-q {
  padding: 18px 60px;
  position: relative;
  font-weight: 600;
  border-top: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .faq__box-q {
    padding: 12px 40px;
  }
}
.faq__box-q::before {
  position: absolute;
  content: "Q.";
  top: 0;
  left: 0;
  color: #000000;
  font-size: 2.375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__box-q::before {
    top: 5px;
    font-size: 1.75rem;
  }
}

.faq__box-icon img {
  width: 14px;
  height: 8px;
  position: absolute;
  right: 14px;
  top: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.faq__box-icon.is-open img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.faq__box-a {
  padding: 16px 30px 16px 60px;
  display: none;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .faq__box-a {
    padding: 12px 30px;
    padding-right: 0;
  }
}

.faq__box-content {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .faq__box-content {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__box-content {
    font-size: 1rem;
  }
}
.faq__box-content::before {
  position: absolute;
  content: "A.";
  top: 0;
  left: -58px;
  color: #f3971b;
  font-size: 2.375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__box-content::before {
    top: -5px;
    left: -30px;
    font-size: 1.75rem;
  }
}

.faq__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .faq__flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq__flow li {
  background-color: #f3971b;
  padding: 10px 30px;
  width: 200px;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 1199px) {
  .faq__flow li {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .faq__flow li {
    max-width: 350px;
    width: 100%;
  }
}
.faq__flow li:not(:last-of-type) {
  position: relative;
}
.faq__flow li:not(:last-of-type)::after {
  position: absolute;
  content: "→";
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .faq__flow li:not(:last-of-type)::after {
    top: auto;
    bottom: -15px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}