@charset "UTF-8";
/**************************************************
ブレイクポイント
**************************************************/
/**************************************************
settings
**************************************************/
/**************************************************
common
**************************************************/
body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #464646;
  position: relative;
}

section .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.8rem;
    min-width: auto;
  }
  section {
    overflow: hidden;
  }
  section .inner {
    max-width: none;
    padding: 0 25px;
  }
}
img {
  width: 100%;
  height: auto;
}

figure {
  line-height: 1;
}

ul {
  list-style: none;
}

a {
  transition: 0.3s;
  text-decoration: none;
}

/* cta block
ーーーーーーーーーーーーーーー---- */
.btn {
  /* ::before, ::afterで2種類のグラデーションを用意 */
  /* グラデーション1 */
  /* ::before, ::afterで2種類のグラデーションを用意 */
  /* グラデーション1 */
  /* グラデーション2 */
  /* ホバー時にグラデーション1を透明にする */
}
.btn .example-button {
  position: relative;
  /* static以外を指定 */
  z-index: 0;
  /* グラデーションよりも上に配置 */
  display: inline-block;
  /* inline以外にする */
  width: 180px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  /* 背景を透明にする */
  border-radius: 100px;
  /* 角の丸み */
  overflow: hidden;
  /* はみ出した部分を非表示(角丸を付ける場合は必須) */
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn .example-button::before,
.btn .example-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.btn .example-button::before {
  transition: all 0.3s;
  z-index: -1;
  background: linear-gradient(100deg, #26C9F2 6.84%, #219DDA 17.2%, #1954B1 93.16%);
}
.btn .example-button::after {
  z-index: -2;
  background: linear-gradient(100deg, #02E1BA 6.84%, #26C9F2 73.3%);
}
.btn .example-button:hover::before {
  opacity: 0;
}
.btn .contact-guidance-button {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 400px;
  height: 70px;
  line-height: 50px;
  background: transparent;
  border-radius: 100px;
  overflow: hidden;
  /* はみ出した部分を非表示(角丸を付ける場合は必須) */
  cursor: pointer;
  color: #1954B1;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 8px 14.3px 0px rgba(7, 12, 51, 0.34);
}
.btn .contact-guidance-button:hover {
  color: #fff;
}
.btn .contact-guidance-button::before,
.btn .contact-guidance-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.btn .contact-guidance-button::before {
  transition: all 0.3s;
  /* アニメーション実行時間 */
  z-index: -1;
  background: white;
}
.btn .contact-guidance-button::after {
  z-index: -2;
  background: linear-gradient(100deg, #02E1BA 6.84%, #26C9F2 73.3%);
}
.btn .contact-guidance-button:hover::before {
  opacity: 0;
}

/* title
ーーーーーーーーーーーーーーー---- */
.title {
  position: relative;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .title {
    padding-top: 30px;
  }
}

.title::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../../../../../img/lp/ai/title_deco.svg");
  width: 82px;
  height: 16px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .title::before {
    width: 51px;
    height: 10px;
    background-size: cover;
  }
}

.title_move {
  overflow: hidden;
  display: inline-block;
}

.title_move span {
  display: inline-block;
  transform: translateX(100%);
  animation: slide-in 1s forwards;
}

@keyframes slide-in {
  to {
    transform: translateX(0%);
  }
}
/* PC&SP setting*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/**************************************************
header
**************************************************/
header {
  padding: 40px 100px 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1163px) {
  header {
    padding: 40px 20px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 10px 25px;
  }
}
header .logo {
  width: 146px;
  height: 27px;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 124px;
    height: 23px;
  }
}
header .hd_area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  background-color: white;
  padding: 20px 28px 20px 55px;
  border-radius: 20px;
  filter: drop-shadow(1px 1px 46.2px rgba(42, 98, 199, 0.23));
  position: fixed;
  right: 7%;
  top: 20px;
  z-index: 9;
}
@media only screen and (max-width: 1163px) {
  header .hd_area {
    right: 20px;
  }
}
header .hd_area .hd_glnavi ul {
  display: flex;
  gap: 10px;
}
header .hd_area .hd_glnavi ul li a {
  font-weight: 600;
  color: #1954B1;
  transition: 0.3s;
}
header .hd_area .hd_glnavi ul li a:hover {
  opacity: 0.7;
}
header .hd_area .btn a {
  height: 48px;
  padding: 16px 32px;
}

@media only screen and (max-width: 980px) {
  header {
    height: 70px;
  }
  header .hd_area {
    display: none;
  }
}
/************************************************
ハンバーガーメニュー
************************************************/
/* ハンバーガーボタン */
.hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  width: 70px;
  height: 70px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 42px;
  height: 4px;
  left: 14px;
  background: linear-gradient(100deg, #26C9F2 6.84%, #219DDA 17.2%, #1954B1 93.16%);
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 32px;
}
.hamburger span:nth-child(3) {
  top: 44px;
}
.hamburger.fixed {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 30px;
  left: 14px;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 30px;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  color: #1954B1;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
nav.globalMenuSp .toggle-nav-open {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 15px;
}
nav.globalMenuSp .toggle-nav-open .toggle_area {
  margin: 0 auto;
  max-width: 1480px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 980px) {
  .hamburger {
    display: block;
  }
  nav.globalMenuSp .toggle-nav-open {
    flex-direction: column;
    height: auto;
    padding: 70px 16px;
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area .ft_menu_wrap {
    padding: 0;
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area .ft_menu_wrap .footer-navigation {
    display: block;
    width: 100%;
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area .ft_menu_wrap .footer-navigation ul.footer-menu {
    height: auto;
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area .ft_menu_wrap .footer-navigation ul.footer-menu li {
    margin: 0;
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area .ft_menu_wrap .footer-navigation ul.footer-menu li a {
    display: block;
    font-weight: bold;
    color: #1954B1;
    padding: 20px;
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area .ft_menu_wrap .footer-navigation ul.footer-menu li a:hover {
    color: #1954B1;
    background: linear-gradient(100deg, #D1F6FF 6.84%, #E7FFFB 93.16%);
  }
  nav.globalMenuSp .toggle-nav-open .toggle_area .ft_menu_wrap ul.sub_menu_list a {
    display: block;
    padding: 12px 20px;
    color: #fff;
  }
  nav.globalMenuSp .toggle-nav-open .info_box {
    padding-top: 25px;
  }
  nav.globalMenuSp .toggle-nav-open .info_box .logo,
  nav.globalMenuSp .toggle-nav-open .info_box .add_box,
  nav.globalMenuSp .toggle-nav-open .info_box .copyright {
    display: none;
  }
  nav.globalMenuSp .toggle-nav-open .info_box .sns_box {
    justify-content: flex-start;
    padding-left: 20px;
  }
}
/**************************************************
sec_mv
**************************************************/
.sec_mv {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .sec_mv {
    margin-top: 0;
  }
}
.sec_mv .mv-bg-01 {
  width: 377px;
  height: 377px;
  flex-shrink: 0;
  fill: var(linear-gradient(100deg, #02E1BA 6.84%, #26C9F2 73.3%));
  position: absolute;
  z-index: -9;
  top: -390px;
  left: 30%;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-bg-01 {
    top: -350px;
    left: -30%;
  }
}
.sec_mv .mv-bg-02 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 771px;
  max-height: 552px;
  width: 40%;
  height: auto;
  flex-shrink: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-bg-02 {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
}
.sec_mv .mv-bg-03 {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  position: absolute;
  z-index: -9;
  top: 100px;
  right: 2%;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-bg-03 {
    top: 0;
    right: 10px;
  }
}
.sec_mv .mv-bg-04 {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: absolute;
  z-index: -9;
  top: 200px;
  right: 4%;
}
.sec_mv .mv-bg-05 {
  width: 69px;
  height: 170px;
  flex-shrink: 0;
  position: absolute;
  z-index: -9;
  top: 300px;
  right: 0;
}
.sec_mv .mv-bg-06 {
  width: 53px;
  height: 53px;
  flex-shrink: 0;
  position: absolute;
  z-index: -9;
  bottom: 0px;
  left: 2%;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-bg-06 {
    top: 250px;
    left: -25px;
  }
}
.sec_mv .mv-bg-07 {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
  z-index: -9;
  bottom: 60px;
  left: 6%;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-bg-07 {
    bottom: 40px;
    left: 6%;
  }
}
.sec_mv .mv-inner {
  display: flex;
  width: 95%;
  margin: 30px auto;
  padding-left: 100px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-inner {
    flex-wrap: wrap;
    padding-left: inherit;
  }
}
.sec_mv .mv-inner .mv-content {
  text-align: left;
  width: auto;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-inner .mv-content {
    width: auto;
    padding: 0 20px;
  }
}
.sec_mv .mv-inner .mv-content__subcatch {
  margin-bottom: 40px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-inner .mv-content__subcatch {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.sec_mv .mv-catch {
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
  line-height: 1.2;
  font-size: 48px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial", "Meiryo", sans-serif;
  color: #464646;
  letter-spacing: 2.4px;
  font-weight: 700;
}
@media only screen and (max-width: 975px) {
  .sec_mv .mv-catch {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .sec_mv .mv-catch {
    font-size: 30px;
  }
  h1:has(.mv-catch),
  h2:has(.mv-catch) {
    max-width: 400px;
  }
}
.sec_mv .mv-catch::after {
  background: linear-gradient(100deg, #D1F6FF 6.84%, #E7FFFB 93.16%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  transform: translateY(100%);
  z-index: -1;
}
.sec_mv .mv-catch.is-animated {

}
.sec_mv .mv-catch.is-animated::after {
  animation: mv-catch 1.2s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}

@keyframes mv-catch {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}


/* h1 .mv-catch.is-animated:last-of-type::after {
  animation-delay: .25s;
}
h2 .mv-catch.is-animated::after {
  animation-delay: .5s!important;
} */

/**************************************************
sec_about
**************************************************/
.about {
  margin-top: 70px;
}
.about__wrap h2 {
  color: #1954B1;
  text-align: center;
  font-size: 53px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.65px;
}
@media screen and (max-width: 768px) {
  .about__wrap h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.1;
  }
}
.about__wrap h2 b {
  letter-spacing: 18px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .about__wrap h2 b {
    letter-spacing: 10px;
  }
}
.about__wrap .title_small {
  color: #1954B1;
  font-size: 40px;
  letter-spacing: 2px;
  margin-right: 6px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .about__wrap .title_small {
    font-size: 24px;
  }
}
.about__wrap .title_small:nth-child(3) {
  margin-left: 8px;
}
.about__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    margin-top: 40px;
  }
}
.about__inner figure {
  max-width: 50%;
  max-height: 364px;
}
@media screen and (max-width: 768px) {
  .about__inner figure {
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
  }
}
.about__inner .about__desc {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .about__inner .about__desc {
    width: 100%;
    width: 95%;
    margin: 40px auto 0;
  }
}
.about__inner .about__desc p {
  font-size: 17px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.85px;
}
.about__btn {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .about__btn {
    display: flex;
    justify-content: center;
  }
}

/**************************************************
sec_case
**************************************************/
.case {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .case {
    padding-top: 100px;
    overflow: visible;
  }
}
@media screen and (max-width: 375px) {
  .case {
    padding-top: 100px;
  }
}
.case .case__title-wrap {
  position: relative;
}
@media screen and (max-width: 768px) {
  .case .case__title-wrap {
    margin-top: 70px;
  }
}
.case .case__title {
  position: absolute;
  color: #1954B1;
  font-size: 28px;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 1.4px;
  display: flex;
  align-items: center;
  margin-left: 50px;
  top: -20px;
}
@media only screen and (max-width: 442px) {
  .case .case__title {
    margin-left: 20px;
    font-size: 24px;
  }
}
.case .case__title b {
  font-size: 38px;
  font-style: normal;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 1.9px;
}
@media only screen and (max-width: 442px) {
  .case .case__title b {
    font-size: 34px;
  }
}
.case h2 {
  color: #1954B1;
  text-align: center;
  font-size: 53px;
  font-weight: 300;
  letter-spacing: 2.65px;
}
@media screen and (max-width: 768px) {
  .case h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.6;
  }
}
.case h2 b {
  letter-spacing: 18px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .case h2 b {
    letter-spacing: 10px;
  }
}
.case .case__title-wrap-a {
  position: relative;
  max-width: 1080px;
  margin: 80px auto 0;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .case .case__title-wrap-a {
    margin: 70px auto 0 0;
    max-width: 100%;
    padding: 0 25px;
  }
}
.case .case__title-a {
  position: absolute;
  color: #1954B1;
  font-size: 28px;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 1.4px;
  display: flex;
  align-items: center;
  top: -80px;
}
@media only screen and (max-width: 442px) {
  .case .case__title-a {
    margin-left: 20px;
    font-size: 24px;
  }
}
.case .case__title-a h2 {
  color: #1954B1;
  text-align: center;
  font-size: 53px;
  font-weight: 300;
  letter-spacing: 2.65px;
}
@media screen and (max-width: 768px) {
  .case .case__title-a h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.6;
  }
}
.case .case__title-a b {
  font-size: 38px;
  font-style: normal;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 1.9px;
}
@media only screen and (max-width: 442px) {
  .case .case__title-a b {
    font-size: 34px;
  }
}
.case .title_small {
  color: #1954B1;
  font-size: 40px;
  letter-spacing: 2px;
  margin-right: 6px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .case .title_small {
    font-size: 24px;
  }
}
.case .title_small:nth-child(3) {
  margin-left: 8px;
}
.case__inner {
  display: flex;
  position: relative;
  align-items: flex-start;
  width: 100%;
  flex-direction: column;
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .case__inner {
    padding-left: 25px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 375px) {
  .case__inner {
    margin-bottom: -100px;
    bottom: 100px;
  }
}
.case__inner .case__feature-wrap {
  max-width: 1080px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .case__inner .case__feature-wrap {
    max-width: inherit;
    align-items: normal;
    max-width: fit-content;
    width: fit-content;
    justify-content: inherit;
    margin: 60px auto 0 0;
  }
}
.case__inner .case__feature {
  max-width: 472px;
  max-height: 315px;
  width: 100%;
}
@media only screen and (max-width: 1025px) {
  .case__inner .case__feature {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .case__inner .case__feature {
    width: 200px;
    height: 0;
    padding-top: 8%;
    position: relative;
    max-width: auto;
    max-height: auto;
  }
}
@media only screen and (max-width: 400px) {
  .case__inner .case__feature {
    max-width: fit-content;
    max-width: auto;
    width: 100px;
    bottom: -60px;
  }
}
.case__inner.mt-92 {
  margin-top: 92px;
}
@media screen and (max-width: 768px) {
  .case__inner.mt-92 {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 400px) {
  .case__inner.mt-92 {
    margin-top: -90px;
  }
}
.case__inner.mt-90 {
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .case__inner.mt-90 {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 400px) {
  .case__inner.mt-90 {
    margin-top: 90px;
  }
}
.case__desc-bg {
  background: linear-gradient(100deg, #26C9F2 6.84%, #219DDA 17.2%, #1954B1 93.16%);
  color: white;
  position: absolute;
  right: 0;
  top: 50px;
  width: 60%;
  z-index: -1;
  padding: 52px 5% 77px 10%;
  border-radius: 20px 0px 0 20px;
}
@media screen and (max-width: 768px) {
  .case__desc-bg {
    position: absolute;
    width: 90%;
    top: 180px;
    right: 0;
    height: auto;
    padding: 60px 25px 72px 63px;
  }
}
.case__desc-bg h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 768px) {
  .case__desc-bg h3 {
    line-height: 1.5;
  }
}
.case__desc-bg p {
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.8px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .case__desc-bg p {
    margin-top: 16px;
  }
}
.case__line-wrap {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .case__line-wrap {
    max-width: 100%;
  }
}
.case__line {
  width: 315px;
  height: auto;
  display: block;
  margin: 60px 0 10px 122px;
}
@media only screen and (max-width: 1490px) {
  .case__line {
    margin: 90px 0 10px 180px;
  }
}
@media only screen and (max-width: 1256px) {
  .case__line {
    margin: 90px 0 10px 238px;
  }
}
@media only screen and (max-width: 1110px) {
  .case__line {
    margin: 90px 0 10px 280px;
  }
}
@media only screen and (max-width: 1000px) {
  .case__line {
    margin: 150px 0 10px 290px;
  }
}
@media only screen and (max-width: 860px) {
  .case__line {
    margin: 200px 0 10px 290px;
  }
}
@media only screen and (max-width: 790px) {
  .case__line {
    margin: 250px 0 10px 290px;
  }
}
@media screen and (max-width: 768px) {
  .case__line {
    margin: 350px 0 10px 20%;
    width: 330px;
    height: auto;
  }
}
@media only screen and (max-width: 639px) {
  .case__line {
    margin: 350px 0 10px 20%;
  }
}
@media only screen and (max-width: 549px) {
  .case__line {
    margin: 450px 0 10px 20%;
  }
}
@media only screen and (max-width: 480px) {
  .case__line {
    width: 50%;
    margin: 500px 0 10px 20%;
  }
}
@media screen and (max-width: 375px) {
  .case__line {
    margin: 500px 0 10px 20%;
    width: 70%;
  }
}
@media only screen and (max-width: 337px) {
  .case__line {
    width: 50%;
    margin: 600px 0 10px 20%;
  }
}
.case__inner-answer {
  display: flex;
}
@media screen and (max-width: 768px) {
  .case__inner-answer {
    flex-wrap: wrap;
  }
}
.case__inner-answer-bg {
  background: linear-gradient(100deg, #D1F6FF 6.84%, #E7FFFB 93.16%);
  padding: 50px 0;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .case__inner-answer-bg {
    margin-right: 25px;
    padding: 50px 25px 50px 0;
  }
}
.case__inner-answer-bg-inner {
  width: 60%;
}
@media screen and (max-width: 1400px) {
  .case__inner-answer-bg-inner {
    width: 80%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .case__inner-answer-bg-inner {
    width: 100%;
  }
}
.case__answer-desc-title {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
}
.case__answer-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  /* 32px */
  letter-spacing: 0.8px;
  margin-top: 20px;
}
.case__answer-note {
  margin-top: 25px;
  color: #1954B1;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}
.case__answer-feature {
  max-width: 500px;
  width: 40vw;
  margin: -40px 0 0 -80px;
}
@media screen and (max-width: 768px) {
  .case__answer-feature {
    width: 90%;
    margin: -20px auto 0;
  }
}

/**************************************************
contact-guidance
**************************************************/
.contact-guidance {
  background-image: url(../../../../../img/lp/ai/contact_bg.webp);
  background-size: cover;
  height: 283px;
  width: 100%;
  margin-top: 80px;
}
.contact-guidance__inner {
  max-width: 1080px;
  margin: auto;
  text-align: center;
  padding: 62px 25px 69px;
  color: white;
  font-size: clamp(16px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact-guidance__inner {
    font-size: clamp(14px, 2.2vw, 24px);
  }
}
.contact-guidance__btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.contact-guidance .br-725 {
  display: none;
}
@media only screen and (max-width: 725px) {
  .contact-guidance .br-725 {
    display: block;
  }
}

.pickup {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .pickup {
    margin-top: 50px;
  }
}
.pickup__wrap h2 {
  color: #1954B1;
  text-align: center;
  font-size: 53px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.65px;
}
@media screen and (max-width: 768px) {
  .pickup__wrap h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.1;
  }
}
.pickup .services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .pickup .services {
    margin-top: 50px;
    justify-content: center;
  }
}
.pickup .services .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  gap: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pickup .services .service {
    flex-wrap: wrap;
    width: 90%;
    gap: 13px;
  }
  .pickup .services .service:nth-child(n+2) {
    margin-top: 25px;
  }
}
.pickup .services .service img {
  max-width: 261px;
  max-height: 198px;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .pickup .services .service img {
    width: 60%;
    height: auto;
    margin-bottom: 10px;
  }
}
.pickup .services .service h3 {
  margin-bottom: 15px;
  color: #1954B1;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .pickup .services .service h3 {
    margin-bottom: 5px;
  }
}
.pickup .services .service p {
  color: #464646;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.8px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .pickup .services .services .service {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 375px) {
  .pickup .services .services .service {
    width: 100%;
  }
}

/**************************************************
flow
**************************************************/
.flow {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .flow {
    margin-top: 50px;
  }
}
.flow__wrap h2 {
  color: #1954B1;
  text-align: center;
  font-size: 53px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.65px;
}
@media screen and (max-width: 768px) {
  .flow__wrap h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.1;
  }
}
.flow__list {
  width: 100%;
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .flow__list {
    margin-top: 50px;
  }
}
.flow__item {
  width: 100%;
  background: linear-gradient(100deg, #D1F6FF 6.84%, #E7FFFB 93.16%);
  border-radius: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 46px 60px 46px 80px;
}
.flow__item:nth-child(n+2) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .flow__item {
    flex-direction: column;
    padding: 36px 30px;
  }
}
.flow__item .flow__numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .flow__item .flow__numbers {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }
}
.flow__item .flow__numbers h3 {
  color: #1954B1;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.2px;
}
.flow__item .flow__number {
  width: 45px;
  height: 68px;
}
.flow__item .flow__border {
  width: 1px;
  height: 63px;
  margin-top: 10px;
}
.flow__item .flow__desc {
  width: 65%;
  margin-right: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .flow__item .flow__desc {
    width: 100%;
  }
}
.flow__item .flow__desc h3 {
  color: #1954B1;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.2px;
}
.flow__item .flow__desc p {
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.8px;
  margin-top: 5px;
}
.flow__item .flow__desc.sp-only {
  width: 70%;
}
.flow__item figure {
  max-width: 142px;
  max-height: 142px;
}
@media screen and (max-width: 768px) {
  .flow__item figure {
    margin-top: 20px;
  }
}

/**************************************************
faq
**************************************************/
.faq {
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .faq {
    margin-top: 50px;
  }
}
.faq h2 {
  color: #1954B1;
  text-align: center;
  font-size: 53px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.65px;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.1;
  }
}
.faq__list {
  margin: 60px auto 0;
}
.faq__item {
  display: flex;
  gap: 30px;
  justify-content: start;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  background: var(--white, #FFF);
  padding: 30px 50px 40px;
  margin-bottom: 20px;
  box-shadow: 1px 4px 21.6px 0px rgba(42, 98, 199, 0.17);
}
.faq__item figure {
  width: 46px;
  height: 46px;
}
@media screen and (max-width: 768px) {
  .faq__item {
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 30px 40px;
  }
}
.faq__desc h3 {
  color: #1954B1;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq__desc h3 {
    font-size: 22px;
  }
}
.faq__desc p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .faq__desc p {
    margin-top: 15px;
  }
}
.faq__desc p a {
  color: #1954B1;
  border-bottom: 1px #1954B1 solid;
}

/**************************************************
sec_contact
**************************************************/
.sec_contact {
  background: linear-gradient(100deg, #02E1BA 6.84%, #26C9F2 73.3%);
  padding: 250px 0 130px;
  position: relative;
}
.sec_contact::before {
  content: "";
  position: absolute;
  background: url(../../../../../img/lp/ai/contact_bg_top.webp);
  background-size: contain;
  background-repeat: no-repeat;
  height: 200px;
  display: block;
  width: 100%;
  top: 0;
}
.sec_contact h2 {
  color: #1954B1;
  text-align: center;
  font-size: 53px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2.65px;
}
@media screen and (max-width: 768px) {
  .sec_contact h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.1;
  }
}
.sec_contact .form_box {
  max-width: 1080px;
  padding: 62px 30px 80px;
  background: linear-gradient(100deg, #D1F6FF 6.84%, #E7FFFB 93.16%);
  border-radius: 20px;
}
.sec_contact .form_box h2 {
  color: #1954B1;
  text-align: center;
  font-size: clamp(28px, 4.9vw, 53px);
  font-weight: 600;
  letter-spacing: 2.65px;
}
.sec_contact .form_box .contact__info {
  color: #1954B1;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-top: 24px;
}
.sec_contact .form_box dl {
  max-width: 400px;
  margin: 30px auto;
}
.sec_contact .form_box dl dt {
  margin-bottom: 8px;
}
.sec_contact .form_box dl dt span {
  font-size: 10px;
  padding-left: 15px;
}
.sec_contact .form_box dl dd {
  margin-bottom: 24px;
}
.sec_contact .form_box .contact__tel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  background: linear-gradient(100deg, #26C9F2 6.84%, #219DDA 17.2%, #1954B1 93.16%);
  max-width: 487px;
  padding: 26px 55px;
  border-radius: 20px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .sec_contact .form_box .contact__tel-wrap {
    padding: 26px 15px;
    gap: 17px;
  }
}
@media only screen and (max-width: 363px) {
  .sec_contact .form_box .contact__tel-wrap {
    gap: 8px;
    padding: 26px 8px;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact .form_box .contact__tel-wrap figure {
    width: clamp(30px, 12vw, 60px);
  }
}
.sec_contact .form_box .contact__tel-wrap .contact__tel {
  color: white;
}
.sec_contact .form_box .contact__tel-wrap .contact__tel a {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: 1.9px;
  color: #fff;
}
.sec_contact .form_box .contact__tel-wrap .contact__tel p {
  font-size: 12px;
}

form input[type=text],
form input[type=email],
form input[type=tel],
form textarea {
  background: #fff;
  border: 1px solid #464646;
  padding: 15px;
  border-radius: 8px;
  width: 100%;
}
form ::placeholder {
  opacity: 0.4;
}
form .agree_box {
  text-align: center;
  margin-bottom: 24px;
}
form .agree_box a {
  text-decoration: underline;
  color: #464646;
}
form .agree_box a:hover {
  color: #464646;
  text-decoration: none;
}
form input[type=button] {
  width: 180px;
  margin: 0 auto;
  display: block;
  height: 48px;
  padding: 16px;
  color: #fff;
  background: #464646;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  border-radius: 48px;
  box-shadow: 0px 0px 32px 0px rgba(66, 66, 217, 0.24);
}
form input[type=submit] {
  width: 180px;
  margin: 0 auto;
  display: block;
  height: 48px;
  padding: 16px;
  color: #fff;
  background: #464646;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  border-radius: 48px;
  box-shadow: 0px 0px 32px 0px rgba(66, 66, 217, 0.24);
  margin-top: 30px;
}
form #submit {
  background: gray;
  /* 無効時の色 */
}
form #with-consent:checked ~ #submit {
  background: linear-gradient(100deg, #26C9F2 6.84%, #219DDA 17.2%, #1954B1 93.16%);
}

@media only screen and (max-width: 767px) {
  .sec_contact .inner {
    max-width: none;
  }
  .sec_contact .form_box {
    width: 100%;
    padding: 30px 20px 30px;
  }
  .sec_contact .form_box dl dt {
    margin-bottom: 5px;
  }
  .sec_contact .form_box dl dd {
    margin-bottom: 20px;
  }
}
/**************************************************
footer
**************************************************/
footer {
  background: #1954B1;
  color: #fff;
  padding: 34px 0;
}
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo {
  width: 125px;
  margin-left: 80px;
}
footer ul {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 45px;
}
footer ul li a {
  color: #fff;
  font-size: 15px;
  padding-right: 25px;
  position: relative;
}
footer ul li a::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../../../../../img/lp/ai/ico_blank.png) no-repeat center top/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
footer .copyright {
  font-size: 10px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  footer .inner {
    max-width: none;
    margin: 0 auto;
    flex-direction: column;
    gap: 35px;
  }
  footer .logo {
    margin: 0 auto;
  }
  footer ul {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 35px;
  }
  footer ul li a {
    font-size: 14px;
  }
  footer .copyright {
    font-size: 12px;
    text-align: center;
  }
}
/**************************************************
thanksページ
**************************************************/
.thanks-inner {
  padding-bottom: 200px;
}
.thanks-inner h2 {
  color: #1954B1;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}
.thanks-inner p {
  margin-bottom: 150px;
}
@media only screen and (max-width: 767px) {
  .thanks-inner {
    padding: 60px 20px;
  }
}
.thanks-inner p {
  text-align: center;
  margin-bottom: 100px;
}

.thanks_image {
  display: block;
  width: 200px;
  height: 146px;
  margin: 100px auto 100px;
}

.thanks-btn {
  margin: 40px auto;
}

/**************************************************
個人情報取り扱いについてページ
**************************************************/
.ppc-inner {
  padding-top: 100px;
  padding-bottom: 100px !important;
}
@media only screen and (max-width: 767px) {
  .ppc-inner {
    padding: 30px 20px;
  }
}
.ppc-inner h3 {
  margin-top: 30px;
}

/*# sourceMappingURL=style.css.map */
