@charset "UTF-8";
body {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: #0A2540;
  overflow-x: hidden;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
}

.site-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .site-inner {
    padding: 0;
    width: 90%;
  }
}

.heading-large {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .heading-large {
    font-size: 1.5rem;
  }
}

.heading-medium {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .heading-medium {
    font-size: 1.25rem;
  }
}

.heading-small {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .heading-small {
    font-size: 1rem;
  }
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

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

[class^=material-symbols-] {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  font-family: "Material Symbols Outlined";
  color: inherit;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
[class^=material-symbols-].is-fill {
  font-variation-settings: "FILL" 1;
}

.button-primary {
  background-color: #007ED1;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 16px 22px 16px 61px;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.button-primary:hover {
  opacity: 0.8;
}
.button-primary:active {
  opacity: 0.6;
}
.button-primary::after {
  content: "arrow_circle_right";
  font-family: "Material Symbols Outlined";
  color: #FFFFFF;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.button-primary:hover::after {
  transform: translateX(8px);
}
@media (max-width: 768px) {
  .button-primary {
    font-size: 14px;
    padding: 14px 20px 14px 40px;
    gap: 20px;
    letter-spacing: 0.7px;
  }
}
@media (max-width: 480px) {
  .button-primary {
    font-size: 13px;
    padding: 12px 16px 12px 32px;
    gap: 16px;
    letter-spacing: 0.65px;
    white-space: normal;
  }
}

.button-secondary {
  background-color: #FFFFFF;
  border: 2px solid #007ED1;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 14px 20px 14px 59px;
  color: #007ED1;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.button-secondary:hover {
  opacity: 0.8;
}
.button-secondary:active {
  opacity: 0.6;
}
.button-secondary::after {
  content: "arrow_circle_right";
  font-family: "Material Symbols Outlined";
  color: #007ED1;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.button-secondary:hover::after {
  transform: translateX(8px);
}
@media (max-width: 768px) {
  .button-secondary {
    font-size: 14px;
    padding: 12px 18px 12px 38px;
    gap: 20px;
    letter-spacing: 0.7px;
  }
}
@media (max-width: 480px) {
  .button-secondary {
    font-size: 13px;
    padding: 10px 14px 10px 30px;
    gap: 16px;
    letter-spacing: 0.65px;
    white-space: normal;
  }
}

.breadcrumbs {
  position: absolute;
  max-width: 1200px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px;
  letter-spacing: 0.15rem;
  z-index: 999;
  font-size: 0.75rem;
  color: #666;
  box-sizing: border-box;
  line-height: 1.5rem;
}
.breadcrumbs a {
  text-decoration: underline;
}
.breadcrumbs a:hover {
  color: #007ED1;
}
.breadcrumbs .home-icon {
  color: #666 !important;
  font-size: 0.8rem !important;
  padding: 0 16px 0 5px !important;
}
.breadcrumbs .arrow {
  color: #666 !important;
  font-size: 0.9rem !important;
}
@media (max-width: 767px) {
  .breadcrumbs {
    top: 60px !important;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* 768px〜1279px */
@media (max-width: 1279px) and (min-width: 768px) {
  html {
    font-size: 0.78125vw;
  }
}
/* 767px以下（SP） */
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

img, picture, video, canvas, svg {
  height: auto;
  max-width: 100%;
  display: block;
}

img {
  image-rendering: -webkit-optimize-contrast;
}
.safari img {
  image-rendering: inherit;
}

ul {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #007ED1;
  outline-offset: 2px;
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

body {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: #0A2540;
  overflow-x: hidden;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
}

.f-main {
  overflow: hidden;
}

.f-wrap {
  width: 108rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .f-wrap {
    width: auto;
  }
}

.btn_p_search {
  max-width: 280px;
  padding: 16px 22px 16px 26px;
  gap: 4px;
}
.btn_p_search::after {
  content: "download";
  font-family: "Material Symbols Outlined";
  color: #FFFFFF;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.btn_p_search:hover::after {
  transform: translateY(8px);
}

.btn_s_search {
  max-width: 260px;
  padding: 14px 20px 14px 32px;
  gap: 4px;
}
@media (max-width: 1200px) {
  .btn_s_search {
    display: none;
  }
}

.breadcrumbs {
  position: absolute;
  max-width: 1200px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px;
  letter-spacing: 2.4px;
  z-index: 999;
  font-size: 12px;
  color: #666;
  box-sizing: border-box;
  line-height: 24px;
}
.breadcrumbs a {
  text-decoration: underline;
}
.breadcrumbs a:hover {
  color: #007ED1;
}
.breadcrumbs .home-icon {
  color: #666 !important;
  font-size: 12.8px !important;
  padding: 0 16px 0 5px !important;
}
.breadcrumbs .arrow {
  color: #666 !important;
  font-size: 14.4px !important;
}
@media (max-width: 767px) {
  .breadcrumbs {
    top: 60px !important;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
}

.copy {
  color: #FFFFFF;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  .copy {
    margin-top: 35px;
    display: block;
  }
}

.blank-icon {
  width: 10px;
  vertical-align: baseline;
  margin-left: 3px;
}

@media (max-width: 900px) {
  .list-sp-link {
    padding-left: 12%;
  }
}

.c-cta {
  position: relative;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 249, 255) 100%);
  padding: 16rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .c-cta {
    background: #FFFFFF;
    padding: 5.5rem 0 4rem;
  }
}
.c-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../ai-search/img/bg_cta.png) 0 0/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .c-cta__bg {
    width: calc(100% - 3.2rem);
    background: #FFFFFF;
    border-radius: 0.8rem;
    padding: 2.8rem 2rem 2.4rem;
    margin: 0 auto;
  }
}
.c-cta__wrap {
  position: relative;
}
.c-cta__balloon {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -4.8rem;
  left: -6.4rem;
  width: 8.8rem;
  height: 8.3rem;
  color: #FFFFFF;
  line-height: 1.3;
  text-align: center;
  background: url(../ai-search/img/bg_cta_balloon.png) 0 0/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .c-cta__balloon {
    background: none;
    position: relative;
    top: auto;
    left: auto;
    width: 10.4rem;
    height: auto;
    border: 1px solid #007ED1;
    color: #007ED1;
    font-size: 1.3rem;
    line-height: 1;
    margin: 0 0 1.8rem;
    padding: 0.8rem 0;
    border-radius: 3rem;
  }
}
.c-cta__ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-cta__ttl {
    font-size: 2.3rem;
    padding: 0;
  }
}
.c-cta__txt {
  font-size: 2.4rem;
  line-height: 1;
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 2.4rem 0 0;
  padding: 0 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-cta__txt {
    font-size: 1.6rem;
    padding: 0;
    margin-top: 1.8rem;
  }
}
.c-cta-btns {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 65.4rem;
  background: #FFFFFF;
  border-radius: 0.5rem;
  margin: 4rem 0 0;
  padding: 3.2rem 4rem;
}
@media (max-width: 1200px) {
  .c-cta-btns {
    display: block;
    width: calc(100% - 3.2rem);
    margin: 1.6rem auto 0;
    padding: 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta-btns__item.u-dl {
    margin-top: 2.4rem;
  }
}
.c-cta-btns__comments {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-cta-btns__comments {
    font-size: 1.2rem;
    margin: 0 0 1em;
  }
}
.c-cta-btns__btn {
  width: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 3%;
}
@media screen and (max-width: 767px) {
  .c-cta-btns__btn {
    width: 100%;
  }
}
.u-dl .c-cta-btns__btn {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .u-dl .c-cta-btns__btn {
    width: 100%;
  }
}
.u-dl .c-cta-btns__btn a {
  background: #007ED1;
  color: #FFFFFF;
}
.u-dl .c-cta-btns__btn a span {
  position: relative;
}
.c-cta-btns__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  height: 100%;
  color: #007ED1;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}
.u-margin.-middle {
  margin-bottom: 32px;
}
.u-margin.-large {
  margin-bottom: 64px;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* ==========================================================================
ヘッダー
========================================================================== */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.dropdown-overlay {
  display: none;
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dropdown-overlay.active {
  display: block;
  opacity: 1;
}

.sub-nav {
  background-color: #F9FAFB;
}
@media (max-width: 768px) {
  .sub-nav {
    display: none;
  }
}

.sub-nav-list {
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.sub-nav-left {
  font-size: 12px;
}
@media (max-width: 768px) {
  .sub-nav-left {
    font-size: 10px;
  }
}

.sub-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sub-nav-link {
  font-size: 12px;
  transition: opacity 0.3s ease;
}
.sub-nav-link:hover {
  text-decoration-line: underline;
}
@media (max-width: 768px) {
  .sub-nav-link {
    font-size: 10px;
  }
}

.main-nav {
  background-color: #FFFFFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.main-nav-content {
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-height: 68px;
}
@media (max-width: 768px) {
  .main-nav-content {
    padding: 16px 24px;
  }
}

.nav-logo {
  width: 18rem;
  height: auto;
}
@media (max-width: 768px) {
  .nav-logo {
    width: 110px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #0A2540;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.nav-item {
  position: static;
}
.nav-item.has-dropdown {
  position: relative;
}
.nav-item.has-dropdown.active .nav-link {
  color: #007ED1;
}
.nav-item.has-dropdown.active::after {
  content: "";
  position: absolute;
  bottom: -12.8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #007ED1;
  z-index: 1000;
}
.nav-item.has-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-item.has-dropdown.active .dropdown-arrow path {
  stroke: #007ED1;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  position: relative;
  padding: 12px 16px;
}
@media (min-width: 1700px) {
  .nav-link {
    font-size: 16px;
  }
}
.nav-link:hover {
  color: #007ED1;
}

.dropdown-arrow {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #F9FAFB;
  border: 1px solid #E0E0E0;
  padding: 40px 0;
  z-index: 999;
}

.dropdown-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .dropdown-content {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.dropdown-left {
  min-width: 200px;
}

.dropdown-right {
  flex: 1;
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dropdown-section-title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
}

.dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropdown-item {
  list-style: none;
}

.dropdown-link {
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.dropdown-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L1 9" stroke="%23007ED1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.dropdown-link:hover {
  color: #007ED1;
}

.dropdown-divider {
  width: 1px;
  height: 100%;
  background-color: #E0E0E0;
  align-self: stretch;
}

.dropdown-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropdown-column-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}

.mobile-cta, .nav-cta {
  background-color: #007ED1;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 70px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
}
.mobile-cta:hover, .nav-cta:hover {
  opacity: 0.8;
  cursor: pointer;
}

.nav-cta {
  font-size: 14px;
  padding: 10px 26px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  height: calc(100dvh - 68px);
  background-color: #FFFFFF;
  z-index: 1020;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-content {
  padding: 0;
  min-height: 100%;
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #E0E0E0;
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.mobile-has-dropdown {
  position: relative;
}
.mobile-has-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-arrow {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #F9FAFB;
}
.mobile-dropdown.active {
  max-height: 2000px;
}

.mobile-dropdown-section {
  padding: 16px 24px;
}
.mobile-dropdown-section:first-child {
  border-bottom: 1px solid #E0E0E0;
}
.mobile-dropdown-section:not(:first-child) p:last-of-type {
  padding-bottom: 20px;
  font-weight: bold;
  text-decoration-line: underline;
}
.mobile-dropdown-section p {
  padding-bottom: 20px;
  font-weight: bold;
}

.mobile-dropdown-title {
  font-size: 14px;
  padding-bottom: 12px;
  text-align: left;
}

.mobile-dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-dropdown-link {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  text-align: left;
}
.mobile-dropdown-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L1 9" stroke="%23007ED1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.mobile-cta {
  font-size: 16px;
  padding: 16px 32px;
  display: block;
  margin: 24px 24px;
}

.mobile-sub-nav-list {
  padding: 16px 24px;
}

.mobile-sub-nav-link {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding: 10px;
  transition: opacity 0.3s ease;
  border-bottom: none;
  display: inline-block;
}
.mobile-sub-nav-link:hover {
  opacity: 0.7;
  background-color: transparent;
}

@media (min-width: 769px) {
  body.menu-open {
    overflow: visible;
    position: static;
    width: auto;
    height: auto;
  }
}
.footer {
  margin-top: 100px;
  background-color: #0A2540;
  color: #FFFFFF;
}
.footer a {
  color: #FFFFFF;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 14px;
}
.footer a:hover {
  opacity: 0.8;
}

.footer__wrapper {
  padding: 80px 0 40px;
}
@media (max-width: 900px) {
  .footer__wrapper {
    padding: 60px 0 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__main {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer__main {
    flex-direction: column-reverse;
    padding: 0 5px;
  }
}

.footer-info {
  margin-right: 128px;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .footer-info {
    margin-right: 48px;
  }
}
@media (max-width: 900px) {
  .footer-info {
    margin-right: 0;
  }
}

.footer-info__name {
  margin-bottom: 5px;
  font-weight: bold;
}
@media (max-width: 900px) {
  .footer-info__name {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.footer-link-group {
  display: flex;
}
@media (max-width: 900px) {
  .footer-link-group {
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .footer-link_list {
    width: 50%;
  }
}
@media (max-width: 900px) {
  .footer-link_list:not(:nth-last-child(2)) {
    margin-bottom: 20px;
  }
}
.footer-link_list:not(:last-of-type) {
  margin-right: 60px;
}
@media (max-width: 900px) {
  .footer-link_list:not(:last-of-type) {
    margin-right: 0;
  }
}
@media (max-width: 900px) {
  .footer-link_list:last-of-type {
    margin-bottom: 0;
  }
}
.footer-link_list dt {
  margin-bottom: 16px;
  font-weight: bold;
  text-decoration-line: none;
  font-size: 16px;
}
.footer-link_list dd {
  position: relative;
  margin-bottom: 5px;
}
.footer-link_list dd:not(:last-of-type) {
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .footer-link_list dd {
    font-size: 20.8px;
  }
}

.list-lg-link a {
  font-size: 16px;
}

.footer-info__sub {
  margin-bottom: 20px;
  display: flex;
}
.footer-info__sub .image {
  width: 9%;
  margin-right: 2%;
}
@media (max-width: 900px) {
  .footer-info__sub .image {
    width: 18%;
    max-width: 45px;
  }
}

.footer-info__address {
  margin-bottom: 10px;
}

.footer-mark {
  background-color: #FFFFFF;
  padding: 10px 6%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  width: 360px;
  justify-content: center;
}
@media (max-width: 900px) {
  .footer-mark {
    padding: 2% 5%;
    width: 100%;
    max-width: 320px;
  }
}

.footer-sub {
  border-top: 1px solid #37404D;
  padding-top: 20px;
}

.footer-sub-link {
  display: flex;
}
.footer-sub-link a {
  font-size: 12px;
}
.footer-sub-link img {
  display: inline-block;
}
@media (max-width: 900px) {
  .footer-sub-link {
    flex-wrap: wrap;
  }
}
.footer-sub-link li {
  margin-right: 20px;
  position: relative;
}
@media (max-width: 900px) {
  .footer-sub-link li {
    margin-bottom: 5px;
  }
}
.footer-sub-link li:last-of-type {
  margin-left: auto;
}

.copy {
  color: #FFFFFF;
  font-size: 19.2px;
  font-size: 12px;
}
@media (max-width: 900px) {
  .copy {
    margin-top: 35px;
    display: block;
  }
}

.blank-icon {
  width: 10px;
  vertical-align: baseline;
  margin-left: 3px;
}

@media (max-width: 900px) {
  .list-sp-link {
    padding-left: 12%;
  }
}

.p-mv {
  background: linear-gradient(180deg, #FFF 8.23%, #F1F5F6 74.15%);
  padding: 6.4rem 0 6.4rem;
  max-height: 500px;
}
@media (max-width: 1200px) {
  .p-mv {
    max-height: none;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: auto;
    padding: 4rem 0 0;
  }
}
.p-mv__wrap {
  max-width: 121.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .p-mv__wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__wrap {
    padding: 0 1.6rem;
  }
}
.p-mv__pre {
  line-height: 1;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__pre {
    font-size: 1.4rem;
    margin: 0 0 2rem;
  }
}
.p-mv-ttl__txt {
  display: block;
  font-size: 4.4rem;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .p-mv-ttl__txt {
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  .p-mv-ttl__txt {
    font-size: 3.2rem;
    line-height: 1.45;
  }
}
.p-mv-ttl__txt + .p-mv-ttl__txt {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-mv-ttl__txt + .p-mv-ttl__txt {
    margin-top: 0;
  }
}
.p-mv-ttl__color {
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-mv-btns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 4rem auto 0;
  gap: 2%;
}
@media screen and (max-width: 767px) {
  .p-mv-btns {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
  }
}
.p-mv-btns__comment {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-mv-btns__comment {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    text-align: center;
    margin: 0 0 1rem;
  }
}
.p-mv-btns__btn {
  width: 24rem;
  height: 7.3rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv-btns__btn {
    display: none;
    width: 100%;
    height: 6rem;
    font-size: 1.4rem;
    margin: 0;
  }
}
.p-mv-btns__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #E4F7E9;
  color: #007ED1;
}
.p-mv-btns__btn.u-dl {
  width: 31.8rem;
  margin-left: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-mv-btns__btn.u-dl {
    display: block;
    width: calc(100% - 3.2rem);
    margin: 0 auto;
  }
}
.p-mv-btns__btn.u-dl a {
  background: #007ED1;
  color: #E4F7E9;
}
.p-mv-btns__btn.u-dl a span {
  position: relative;
  padding: 0 2.6rem 0 0;
}
.p-mv-btns__btn.u-dl a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1em;
  height: 1em;
  background: url(../ai-search/img/icon_dl.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-mv picture {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .p-mv picture {
    padding-bottom: 4rem;
  }
}
.p-mv picture::before {
  content: "";
  background: url(../ai-search/img/mv_circle2.png) center/contain no-repeat;
  position: absolute;
  width: 36%;
  height: 36%;
  z-index: 1000;
  left: -3%;
  top: 18%;
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}
.p-mv picture::after {
  content: "";
  background: url(../ai-search/img/mv_circle1.png) center/contain no-repeat;
  position: absolute;
  width: 40%;
  height: 40%;
  z-index: 1000;
  left: 64%;
  top: 0;
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.p-intro {
  padding: 12rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-intro {
    padding: 7rem 0 4rem;
  }
}
.p-intro-ttl {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-intro-ttl {
    font-size: 2.4rem;
    line-height: 1.7;
    margin-bottom: 3rem;
  }
}
.p-intro-ttl__tegaki {
  position: relative;
  display: inline-block;
}
.p-intro-ttl__tegaki::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 20.1rem;
  height: 1.5rem;
  background: url(../ai-search/img/img_intro_01.svg) 0 0/100% auto no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-intro-ttl__tegaki::before {
    width: 12.8rem;
    height: 0.8rem;
    bottom: 0.3rem;
  }
}
.p-intro-ttl__tegaki span {
  position: relative;
  z-index: 2;
}
.p-intro-ttl__zukei {
  position: relative;
  display: inline-block;
}
.p-intro-ttl__zukei::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12.6rem;
  height: 6.5rem;
  background: url(../ai-search/img/img_intro_02.svg) 0 0/100% auto no-repeat;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-intro-ttl__zukei::before {
    width: 6.3rem;
    height: 3.3rem;
  }
}
.p-intro-ttl__zukei span {
  position: relative;
  z-index: 2;
}
.p-intro-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-intro-content {
    flex-wrap: wrap;
    padding: 0 1.6rem;
  }
}
.p-intro-content__item {
  width: 24.8rem;
}
@media screen and (max-width: 767px) {
  .p-intro-content__item {
    width: 49%;
    margin-top: 1.8rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-intro-content__item:nth-child(-n+2) {
    margin-top: 0;
  }
}
.p-intro-content__ttl {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  /*color: $color-primary;*/
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0 0 3.2rem;
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-intro-content__ttl {
    font-size: 1.5rem;
    line-height: 1;
    padding: 0 0 0 2rem;
    margin: 0 0 1.6rem;
  }
}
.p-intro-content__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.4rem;
  height: 2.6rem;
  background: url(../ai-search/img/icon_intro.svg) center center/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-intro-content__ttl::before {
    width: 1.2rem;
    height: 1.5rem;
  }
}
.p-intro-content-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 6rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: #FFFFFF;
  margin-top: 0.4rem;
  padding: 0 1.5rem 0 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-intro-content-list__item {
    height: 5.8rem;
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 0 1.5rem 0 2.6rem;
  }
}
.p-intro-content-list__item:first-child {
  margin-top: 0;
}
.p-intro-content-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 0.6rem;
  height: 0.6rem;
  background: #007ED1;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-intro-content-list__item::before {
    left: 1.1rem;
  }
}

.p-problem {
  padding: 12rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding: 4rem 1.6rem;
  }
}
.p-problem__wrap {
  position: relative;
}
.p-problem__en {
  position: absolute;
  top: -6rem;
  right: -20rem;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 20rem;
  color: rgba(34, 34, 34, 0.03);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-problem__en {
    font-size: 6.4rem;
    top: 2.4rem;
    left: 0;
    text-align: center;
    width: 100%;
    font-size: 6.4rem;
  }
}
.p-problem__pre {
  position: relative;
  color: #007ED1;
  font-weight: 700;
  padding: 0 0 0 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-problem__pre {
    font-size: 1.4rem;
  }
}
.p-problem__ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 2rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-problem__ttl {
    font-size: 2.4rem;
    line-height: 2;
    margin: 1rem 0 2rem;
  }
}
.p-problem__img {
  position: absolute;
  top: 4.4rem;
  right: -2rem;
  width: 58rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-problem__img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
  .p-problem__img img {
    width: 98vw;
    margin: -0.5rem -1.2rem 0 -1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__txt {
    margin: 1rem 0 0;
  }
}
.p-problem-list {
  max-width: 60rem;
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-problem-list {
    margin: 2.4rem 0 0;
  }
}
.p-problem-list__item {
  position: relative;
  display: inline-block;
  background: #f6f6f8;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 0.8rem;
  padding: 1.6rem 2.4rem 1.6rem 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-problem-list__item {
    display: block;
    min-height: 4.4rem;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 1.2rem 2.4rem 1.2rem 4.8rem;
  }
}
.p-problem-list__item::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 2rem;
  transform: translateY(-50%);
  content: "\e5cd";
  font-family: "Material Symbols Outlined";
  font-size: 2.2rem;
  color: #007ED1;
}

.p-about {
  padding: 12rem 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 4rem 1.6rem;
  }
}
.p-about-ttl {
  position: relative;
  width: 96rem;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  background: #007ED1;
  margin: 0 auto 8rem;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .p-about-ttl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 0 0 0.4rem;
    margin: 0 0 5.6rem;
  }
}
.p-about-ttl::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.6rem 1.1rem 0 1.6rem;
  border-color: #007ED1 transparent transparent transparent;
  transform: translateX(-50%);
}
.p-about-ttl__txt {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-about-ttl__txt {
    line-height: 1.5;
  }
}
.p-about-ttl__core {
  position: relative;
  z-index: 1;
}
.p-about-intro {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro {
    display: block;
    margin: 0 0 5rem;
  }
}
.p-about-intro__head {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro__head {
    width: auto;
  }
}
.p-about-intro__pre {
  position: relative;
  color: #007ED1;
  line-height: 1;
  padding: 0 0 0 0.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about-intro__pre {
    font-size: 1.4rem;
    padding: 0 0 0 1.4rem;
  }
}
.p-about-intro__ttl {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-about-intro__ttl {
    font-size: 2.8rem;
  }
}
.p-about-intro__txt {
  width: calc(100% - 30rem);
  line-height: 2;
  padding: 0 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro__txt {
    width: auto;
    padding: 0;
    font-size: 1.4rem;
    line-height: 2;
    margin: 3rem 0 0;
  }
}
.p-about-feature {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-about-feature {
    display: block;
    margin: 6.4rem 0 0;
  }
}
.p-about-feature:first-child {
  margin-top: 0;
}
.p-about-feature.u-reverse {
  flex-flow: row-reverse;
}
.p-about-feature-content {
  width: 50rem;
  padding: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-about-feature-content {
    width: 100%;
    padding: 0;
  }
}
.p-about-feature-content__head {
  position: relative;
  border-bottom: 2px solid rgba(34, 34, 34, 0.05);
  padding: 0 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-feature-content__head {
    border-top: 2px solid rgba(34, 34, 34, 0.05);
    border-bottom: 0;
    padding: 3.2rem 0 0 0;
  }
}
.p-about-feature-content__head::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 6.4rem;
  height: 2px;
  background: #007ED1;
}
@media screen and (max-width: 767px) {
  .p-about-feature-content__head::before {
    top: -2px;
    bottom: auto;
  }
}
.p-about-feature-content__pre {
  position: relative;
  font-size: 2rem;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding: 0 0 0 2.2rem;
  margin: 0 0 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-about-feature-content__pre {
    font-size: 1.4rem;
    margin: 0 0 2.4rem;
    padding: 0 0 0 1.4rem;
  }
}
.p-about-feature-content__pre::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: #007ED1;
  transform: translateY(-50%);
}
.p-about-feature-content__pre span {
  font-size: 2.2rem;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  margin-left: 0.8rem;
  color: #007ED1;
}
@media screen and (max-width: 767px) {
  .p-about-feature-content__pre span {
    font-size: 1.6rem;
  }
}
.p-about-feature-content__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-about-feature-content__ttl {
    font-size: 2rem;
  }
}
.p-about-feature-content__txt {
  line-height: 2;
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-about-feature-content__txt {
    margin: 2rem 0 0;
  }
}
.p-about-feature__img {
  width: 52rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-about-feature__img {
    width: 100%;
    margin: 2.4rem 0 0;
  }
}
.u-about-01 .p-about-feature__img img {
  width: 63.1rem;
  margin: -5.4rem 0 -6.6rem 0;
}
@media screen and (max-width: 767px) {
  .u-about-01 .p-about-feature__img img {
    width: 104vw;
    margin: 0 auto !important;
  }
}
.u-about-02 .p-about-feature__img img, .u-about-04 .p-about-feature__img img {
  width: 62rem;
  margin: -3.4rem 0 -6.6rem -5rem;
}
@media screen and (max-width: 767px) {
  .u-about-02 .p-about-feature__img img, .u-about-04 .p-about-feature__img img {
    width: 109vw;
    margin: 0 auto !important;
  }
}
.u-about-03 .p-about-feature__img img, .u-about-05 .p-about-feature__img img {
  width: 63.7rem;
  margin: -3.7rem 0 -6.6rem 0;
}
@media screen and (max-width: 767px) {
  .u-about-03 .p-about-feature__img img, .u-about-05 .p-about-feature__img img {
    width: 104vw;
    margin: 0 auto !important;
  }
}
.u-reverse.u-about-01 .p-about-feature__img img {
  margin: -5.4rem 0 -6.6rem 0;
}
.u-reverse.u-about-02 .p-about-feature__img img, .u-reverse.u-about-04 .p-about-feature__img img {
  margin: -3.4rem -5rem -6.6rem 0;
}
.u-reverse.u-about-03 .p-about-feature__img img {
  margin: -3.7rem 0 -6.6rem 0;
}
.p-about-table {
  margin: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-about-table {
    margin: 6.4rem 0 0;
  }
}
.p-about-table__wrap {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0 4rem 5rem rgba(0, 0, 0, 0.05);
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  padding: 2.4rem 6rem 4rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about-table__wrap {
    padding: 1.6rem 0 4rem;
    box-shadow: none;
    overflow-x: scroll;
  }
}
.p-about-table__wrap .scroll-hint {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-about-table__wrap .scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    display: none;
    animation: scroll-hint-animation 2s infinite ease;
  }
}
@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
.p-about-table__wrap .scroll-hint--show {
  display: block;
}
.p-about-table__scroll {
  font-size: 1.1rem;
  margin: 0.5rem 0 0;
}
.p-about-table-content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-table-content {
    width: 49.6rem;
  }
}
.p-about-table-content thead th {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  padding: 0 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-table-content thead th {
    width: 8rem;
    font-size: 1.3rem;
    padding: 0 0 1.7rem;
  }
}
.p-about-table-content thead th:nth-child(2) {
  position: relative;
  background: #eef6fa;
}
@media screen and (max-width: 767px) {
  .p-about-table-content thead th:nth-child(2) {
    width: 13.6rem;
  }
}
.p-about-table-content thead th:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 1.6rem;
  background: #eef6fa;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
}
.p-about-table-content tbody td:first-of-type {
  background: #eef6fa;
}
.p-about-table-content tbody tr:last-child td:first-of-type {
  position: relative;
}
.p-about-table-content tbody tr:last-child td:first-of-type::after {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  height: 2.4rem;
  background: #eef6fa;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.p-about-table-content th {
  width: 20rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
@media screen and (max-width: 767px) {
  .p-about-table-content th {
    width: 18.4rem;
  }
}
.p-about-table-content td {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
.p-about-table-content td img {
  width: 3.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-about-table-content td img {
    width: 2rem;
  }
}
.p-about-table-content__th {
  width: 36rem;
}
@media screen and (max-width: 767px) {
  .p-about-table-content__th {
    width: 13.6rem;
  }
}
.p-about-table-content__ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 28rem;
  height: 5.3rem;
  font-size: 1.8rem;
  background: #007ED1;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-about-table-content__ttl {
    width: 12rem;
    height: 4.4rem;
    font-size: 1.6rem;
  }
}
.p-about-table-content__logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 7rem;
  margin: 0 auto;
}
.p-about-table-content-icon {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-table-content-icon {
    padding: 0 1rem 0 0;
  }
}
.p-about-table-content-icon .img {
  font-size: 2.25em;
  color: #007ED1;
  font-weight: 500;
}
.p-about-table-content-icon__txt {
  font-weight: 500;
  margin-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-about-table-content-icon__txt {
    font-size: 1.3rem;
    margin-left: 1.2rem;
    line-height: 1.5;
  }
}
.p-about-table-content__notes {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #007ED1;
  text-align: center;
  margin: 0.5em 0 0;
}

.p-tec {
  background: #F6FAFF;
  padding: 4.8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-tec {
    padding: 4rem 0 4rem 0.8rem;
  }
}
.p-tec__inner {
  background: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 1.6rem 5rem rgba(0, 0, 0, 0.1);
  padding: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-tec__inner {
    padding: 4rem 1.6rem;
  }
}
.p-tec-head {
  position: relative;
}
.p-tec-head__en {
  position: relative;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  border-top: 2px solid #F4F4F4;
  line-height: 1;
  padding: 1.2rem 0 0;
  margin: 0 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-tec-head__en {
    font-size: 1.2rem;
    margin: 0 0 3.2rem;
  }
}
.p-tec-head__en::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 10.4rem;
  height: 2px;
  background: #007ED1;
}
.p-tec-head__ttl {
  font-weight: 700;
  line-height: 1;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-tec-head__ttl {
    font-size: 2rem;
    margin: 0 0 2.4rem;
  }
}
.p-tec-head__img {
  position: absolute;
  top: 6.4rem;
  right: 4rem;
  width: 33rem;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 0.4rem;
  padding: 3.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-tec-head__img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 10.4rem;
  }
}
.p-tec-head__txt {
  width: 50rem;
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-tec-head__txt {
    width: auto;
    font-size: 1.4rem;
    margin: 1.8rem 0 0;
  }
}
.p-tec-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-tec-list {
    margin: 2.4rem 0 0;
  }
}
.p-tec-list__item {
  width: 25%;
  text-align: center;
  padding: 1.6rem 0;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-tec-list__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    min-height: 5.8rem;
    padding: 0.6rem 0;
  }
}
.p-tec-list__item:nth-child(-n+4) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-tec-list__item:nth-child(-n+4) {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tec-list__item:nth-child(-n+2) {
    margin-top: 0;
  }
}
.p-tec-list__item img {
  max-width: 19.5rem;
}
@media screen and (max-width: 767px) {
  .p-tec-list__item img {
    max-width: 14.6rem;
  }
}
.p-tec__notes {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1;
  margin: 1.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-tec__notes {
    font-size: 1.1rem;
  }
}

.p-realize {
  padding: 16rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-realize {
    padding: 8rem 1.6rem 4rem;
  }
}
.p-realize__pre {
  text-align: center;
  color: #007ED1;
  line-height: 1;
  margin: 0 0 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-realize__pre {
    text-align: left;
    font-size: 1.4rem;
    margin: 0 0 2.4rem;
  }
}
.p-realize__ttl {
  font-weight: 700;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-realize__ttl {
    text-align: left;
    font-size: 2.8rem;
  }
}
.p-realize-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 9rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-realize-list {
    display: block;
    margin: 4.8rem 0 0;
  }
}
.p-realize-list-head {
  position: relative;
  padding: 0 0 0 10.8rem;
  margin: 0 0 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-realize-list-head {
    padding: 0 0 0 6rem;
    margin: 0 0 2rem;
  }
}
.p-realize-list-head__num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 7.2rem;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  color: #007ED1;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-realize-list-head__num {
    font-size: 4rem;
  }
}
.p-realize-list-head__pre {
  color: #007ED1;
  margin: 0 0 0.2em;
}
@media screen and (max-width: 767px) {
  .p-realize-list-head__pre {
    font-size: 1.4rem;
  }
}
.p-realize-list-head__ttl {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-realize-list-head__ttl {
    font-size: 2rem;
  }
}
.p-realize-list__item {
  width: 34.4rem;
}
@media screen and (max-width: 767px) {
  .p-realize-list__item {
    width: 100%;
    margin-top: 4.2rem;
  }
  .p-realize-list__item:first-child {
    margin-top: 0;
  }
}
.p-realize-list__img {
  overflow: hidden;
  border-radius: 0.4rem;
}
.p-realize-list__txt {
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-realize-list__txt {
    font-size: 1.4rem;
    margin: 2rem 0 0;
  }
}

.p-case {
  background: #F5F7FA;
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-case {
    padding: 8rem 1.6rem 4rem;
  }
}
.p-case__pre {
  text-align: center;
  line-height: 1;
  color: #007ED1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-case__pre {
    text-align: left;
    font-size: 1.4rem;
    margin: 0 0 2.4rem;
  }
}
.p-case__ttl {
  font-weight: 700;
  font-size: 3.6rem;
  text-align: center;
  line-height: 1;
  margin: 2rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-case__ttl {
    text-align: left;
    font-size: 2.8rem;
    margin: 2.4rem 0 4rem;
  }
}
.p-case-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-flow: row-reverse;
  box-shadow: 0 16px 50px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  background: #FFFFFF;
  padding: 5.6rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-case-block {
    display: block;
    padding: 2.4rem 1.6rem;
    margin-top: 1.6rem;
  }
}
.p-case-block:first-child {
  margin-top: 0;
}
.p-case-block.u-reverse {
  flex-flow: row;
}
.p-case-block__content {
  width: calc(100% - 36rem);
}
@media screen and (max-width: 767px) {
  .p-case-block__content {
    width: auto;
  }
}
.p-case-block__en {
  position: relative;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding: 0 0 0 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-case-block__en {
    font-size: 1.4rem;
  }
}
.p-case-block__en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: #007ED1;
  transform: translateY(-50%);
}
.p-case-block__en span {
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  font-size: 1.8rem;
  margin-left: 0.4rem;
  color: #007ED1;
}
@media screen and (max-width: 767px) {
  .p-case-block__en span {
    font-size: 1.6rem;
  }
}
.p-case-block__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #007ED1;
  margin: 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-case-block__ttl {
    font-size: 2rem;
    margin: 2rem 0;
  }
}
.p-case-block-define {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #eef6fa;
  flex-wrap: wrap;
  padding: 2.8rem 3.2rem;
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-case-block-define {
    padding: 2rem 2.2rem;
  }
}
.p-case-block-define__ttl {
  width: 5.2rem;
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-case-block-define__ttl {
    font-size: 1.4rem;
  }
}
.p-case-block-define__txt {
  width: calc(100% - 5.2rem);
}
@media screen and (max-width: 767px) {
  .p-case-block-define__txt {
    font-size: 1.4rem;
  }
}
.p-case-block__txt {
  line-height: 2;
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case-block__txt {
    font-size: 1.4rem;
    margin: 1.8rem 0 0;
  }
}
.p-case-block__txt span {
  background: linear-gradient(transparent 0%, #FFEA7A 0%);
}
.p-case-block__img {
  width: 32rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-case-block__img {
    width: 100%;
    margin: 1.6rem 0 0;
  }
}

.p-price {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-price {
    padding: 8rem 0 4rem;
  }
}
.p-price__wrap {
  width: 112.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-price__wrap {
    width: auto;
    padding: 0 1.6rem;
  }
}
.p-price__en {
  text-align: center;
  line-height: 1;
  color: #007ED1;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-price__en {
    font-size: 1.4rem;
  }
}
.p-price__ttl {
  font-weight: 700;
  font-size: 3.6rem;
  text-align: center;
  line-height: 1;
  margin: 1rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-price__ttl {
    font-size: 2.4rem;
    margin: 1.4rem 0 4rem;
  }
}
.p-price-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-price-list {
    display: block;
  }
}
.p-price-list__item {
  width: 36rem;
  box-shadow: 0 16px 50px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
  padding: 5.6rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-price-list__item {
    width: auto;
    padding: 3.2rem 2.4rem;
    margin-top: 1.6rem;
    box-shadow: 0 1.2rem 3rem rgba(10, 37, 64, 0.04);
  }
  .p-price-list__item:first-child {
    margin-top: 0;
  }
}
.p-price-list__item.u-trial {
  background: #eef6fa;
}
.p-price-list__ttl {
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-price-list__ttl {
    font-size: 2rem;
  }
}
.p-price-list__price {
  line-height: 1;
  text-align: center;
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 8rem;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  margin-top: 3.2rem;
}
.p-price-list__price span {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.p-price-list-trial {
  margin: 3.2rem 0 0;
}
.p-price-list-trial__item {
  position: relative;
  padding: 0 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-price-list-trial__item {
    font-size: 1.4rem;
  }
}
.p-price-list-trial__item::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: #0A2540;
  transform: translateY(-50%);
  border-radius: 100%;
}
.p-price-list__btn {
  width: 17.6rem;
  height: 5.2rem;
  border-radius: 0.4rem;
  margin: 5rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-price-list__btn {
    margin: 3.2rem auto 0;
  }
}
.p-price-list__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
  background: #007ED1;
  width: 100%;
  height: 100%;
}
.p-price-list-plan {
  margin: 4.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-price-list-plan {
    margin: 3.2rem 0 0;
  }
}
.p-price-list-plan + .p-price-list-plan {
  margin-top: 3.2rem;
}
.p-price-list-plan__ttl {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
}
.p-price-list-plan__price {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  background: #007ED1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1.2rem 0 1rem;
}
.p-price-list-plan__txt {
  line-height: 1.7;
  font-size: 1.3rem;
  color: rgba(34, 34, 34, 0.8);
}
.p-price-list__balloon {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7;
  border: 1px solid #007ED1;
  border-radius: 0.4rem;
  padding: 1.8rem 1.7rem;
  margin: 3.3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-price-list__balloon {
    margin: 2.4rem 0 0;
  }
}
.p-price-list__balloon::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1px);
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.5rem 1rem 0.5rem;
  border-color: transparent transparent #007ED1 transparent;
}
.p-price-list__balloon::after {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.5rem 1rem 0.5rem;
  border-color: transparent transparent #FFFFFF transparent;
}

.faq-bg {
  background: #F9FAFB;
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .faq-bg {
    padding: 40px 0 50px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-list {
    gap: 20px;
  }
}

.faq-item {
  background-color: #FFFFFF;
  border-block: 2px solid #F1F4F8;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 90px;
  background: none;
  border: none;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 20px 40px 20px 20px;
    gap: 10px;
  }
}
.faq-question::after {
  content: "\e313";
  position: absolute;
  right: 90px;
  font-family: "Material Symbols Outlined";
  font-size: 2.4rem;
  color: #0A2540;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faq-question::after {
    right: 20px;
    font-size: 2rem;
  }
}
.faq-question[aria-expanded=true]::after {
  transform: rotate(180deg);
}

.faq-icon {
  width: 1.2em;
  height: 1.3em;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 768px) {
  .faq-icon {
    width: 18px;
    height: 22px;
  }
}

.faq-text {
  flex: 1;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #0A2540;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .faq-text {
    font-size: 1.6rem;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 90px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .faq-answer {
    padding: 0 20px;
    gap: 10px;
  }
}
.faq-answer.active {
  max-height: 500px;
  padding: 20px 90px 26px;
}
@media (max-width: 768px) {
  .faq-answer.active {
    padding: 10px 20px 20px;
  }
}
.faq-answer .faq-icon {
  flex-shrink: 0;
  margin-top: 3px;
}
.faq-answer p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #0A2540;
  flex: 1;
}
@media (max-width: 768px) {
  .faq-answer p {
    font-size: 1.4rem;
  }
}

.p-contact {
  position: relative;
  background: linear-gradient(45deg, #0F8AB4 0%, #015A80 100%);
  padding: 12rem 0 14.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 8rem 0;
  }
}
.p-contact::before {
  pointer-events: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../ai-search/img/bg_contact.png) 0 bottom/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact::before {
    background: url(../ai-search/img/bg_contact_sp.png) 0 bottom/100% auto no-repeat;
  }
}
.p-contact__en {
  position: absolute;
  top: 4rem;
  left: 50%;
  font-size: 20rem;
  color: #FFFFFF;
  line-height: 1;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 400;
  transform: translateX(-50%);
  opacity: 0.15;
}
@media screen and (max-width: 767px) {
  .p-contact__en {
    font-size: 7.2rem;
  }
}
.p-contact-block {
  position: relative;
  width: 108rem;
  background: #FFFFFF;
  padding: 8rem 11rem;
  border-radius: 2rem;
  box-shadow: 0 1.6rem 7rem rgba(0, 60, 151, 0.3);
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-contact-block {
    width: calc(100% - 3.2rem);
    padding: 4.6rem 1.6rem;
  }
}
.p-contact-block__pre {
  color: #007ED1;
  line-height: 1;
  text-align: center;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-block__pre {
    font-size: 1.4rem;
    margin: 0 0 2.4rem;
  }
}
.p-contact-block__ttl {
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-block__ttl {
    font-size: 2.4rem;
  }
}
.p-contact-block__txt {
  line-height: 1.8;
  text-align: center;
  margin: 3.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact-block__txt {
    text-align: left;
    font-size: 1.4rem;
    margin: 2.4rem 0 0;
  }
}
.p-contact-block__btn {
  width: 24rem;
  height: 6rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-contact-block__btn {
    width: 100%;
  }
}
.p-contact-block__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  background: #007ED1;
  color: #FFFFFF;
}
.p-contact-table {
  margin: 7rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact-table {
    margin: 5rem 0 0;
  }
}
.p-contact-table__txt {
  font-size: 1.4rem;
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact-table__txt {
    font-size: 1.2rem;
  }
}
.p-contact-table__ttl {
  position: relative;
  width: 25rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 1.4rem 0 2rem 6.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-table__ttl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 1.4rem;
    padding: 0 0 1.2rem;
  }
}
.p-contact-table__required {
  position: absolute;
  top: 1.6rem;
  left: 0;
  color: #FF419C;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-contact-table__required {
    position: relative;
    top: auto;
    left: auto;
    font-size: 1.2rem;
    margin-right: 0.5em;
  }
}
.p-contact-table__any {
  position: absolute;
  top: 1.6rem;
  left: 0;
  color: rgba(10, 37, 64, 0.2);
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-contact-table__any {
    position: relative;
    top: auto;
    left: auto;
    font-size: 1.2rem;
    margin-right: 0.5em;
  }
}
.p-contact-table__content {
  width: calc(100% - 25rem);
  padding: 0 0 2rem;
}
.u-confirm .p-contact-table__content {
  padding: 1.4rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-table__content {
    display: block;
    width: 100%;
  }
}
.p-contact-table__content input[type=text],
.p-contact-table__content input[type=email],
.p-contact-table__content input[type=tel] {
  width: 100%;
  height: 5.2rem;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 0.4rem;
  padding: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-table__content input[type=text],
  .p-contact-table__content input[type=email],
  .p-contact-table__content input[type=tel] {
    height: 5rem;
    font-size: 1.4rem;
    padding: 0 1.6rem;
  }
}
.p-contact-table__content input[type=text]::placeholder,
.p-contact-table__content input[type=email]::placeholder,
.p-contact-table__content input[type=tel]::placeholder {
  color: rgba(10, 37, 64, 0.3);
}
.p-contact-table__content textarea {
  width: 100%;
  height: 22.4rem;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 0.4rem;
  padding: 1.2rem 2.4rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-contact-table__content textarea {
    height: 18rem;
    font-size: 1.4rem;
    padding: 1rem 1.6rem;
  }
}
.p-contact-table__content textarea::placeholder {
  color: rgba(10, 37, 64, 0.3);
}
.p-contact-table__radio {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact-table__radio {
    display: block;
  }
}
.p-contact-table__radio .error {
  display: block;
  width: 100%;
}
.p-contact-table__radio .mwform-radio-field {
  display: block;
  min-width: 18.4rem;
  height: 5.2rem;
  margin-left: 1.6rem !important;
}
@media screen and (max-width: 767px) {
  .p-contact-table__radio .mwform-radio-field {
    width: 22.4rem;
    font-size: 1.4rem;
    min-width: inherit;
    margin: 0.8rem 0 0 !important;
  }
}
.p-contact-table__radio .mwform-radio-field:first-child {
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-contact-table__radio .mwform-radio-field:first-child {
    margin: 0 !important;
  }
}
.p-contact-table__radio .mwform-radio-field label {
  position: relative;
}
.p-contact-table__radio .mwform-radio-field label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-contact-table__radio .mwform-radio-field label input:checked + span {
  background: #E2F5F8;
  color: #007ED1;
  border: 1px solid #007ED1;
}
.p-contact-table__radio .mwform-radio-field label input:checked + span::before {
  border: 1px solid #007ED1;
  background: #007ED1;
}
.p-contact-table__radio .mwform-radio-field .mwform-radio-field-text {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 0.4rem;
  padding: 0 3rem 0 4.5rem;
}
.p-contact-table__radio .mwform-radio-field .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.4rem;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 100%;
  transform: translateY(-50%);
}
.p-contact-table-policy {
  height: 12rem;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: rgba(10, 37, 64, 0.05);
  border-radius: 0.4rem;
  overflow-y: scroll;
  padding: 1.2rem 2.4rem;
  margin: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact-table-policy {
    margin: 2.4rem 0 0;
    padding: 1rem 1.6rem;
  }
}
.p-contact-table-policy__txt {
  color: rgba(10, 37, 64, 0.3);
}
@media screen and (max-width: 767px) {
  .p-contact-table-policy__txt {
    font-size: 1.4rem;
  }
}
.p-contact__submit {
  background: #007ED1;
  color: #FFFFFF;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30.4rem;
  height: 7.6rem;
  border-radius: 0.4rem;
  margin-left: 25rem;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    width: 100%;
    height: 7.4rem;
    margin: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__submit:hover {
    opacity: 0.5;
  }
}
.p-contact__back {
  background: rgba(10, 37, 64, 0.2);
  color: #FFFFFF;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30.4rem;
  height: 5rem;
  border-radius: 0.4rem;
  margin: 5rem 0 2rem 25rem;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact__back {
    width: 100%;
    margin: 3rem 0 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__back:hover {
    opacity: 0.5;
  }
}/*# sourceMappingURL=ai-search.css.map */