@charset "UTF-8";
/* ==========================================================================
    ナビゲーション
   ========================================================================== */
/* メニューオープン時のbody
   ========================================================================== */
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: 0.625rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.sub-nav-left {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .sub-nav-left {
    font-size: 0.625rem;
  }
}

.sub-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

/* ==========================================================================
メインナビゲーション
   ========================================================================== */
.main-nav {
  background-color: #FFFFFF;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1002;
}

.main-nav-content {
  padding: 1.125rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-height: 68px;
}
@media (max-width: 768px) {
  .main-nav-content {
    padding: 1rem 1.5rem;
  }
}

/* ロゴ
   ========================================================================== */
.nav-logo {
  width: 7rem;
  height: auto;
}
@media (max-width: 768px) {
  .nav-logo {
    width: 5rem;
  }
}

/* ==========================================================================
ハンバーガーボタン（モバイル用）
   ========================================================================== */
.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: 2rem;
  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: -0.8rem;
  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: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.75rem 1rem;
}
@media (min-width: 1700px) {
  .nav-link {
    font-size: 1rem;
  }
}
.nav-link:hover {
  color: #007ED1;
}

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

/* ==========================================================================
   ドロップダウンメニュー
   ========================================================================== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #F9FAFB;
  border: 1px solid #E0E0E0;
  padding: 2.5rem 0;
  z-index: 999;
}

.dropdown-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .dropdown-content {
    padding: 0 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

.dropdown-right {
  flex: 1;
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dropdown-section-title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
}

.dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.dropdown-link {
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  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-link-agent {
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  transition: color 0.3s ease;
  padding-left: 1em;
  padding-top: 0.5em;
}
.dropdown-link-agent::before {
  content: "–";
  display: inline-block;
  width: 6px;
  height: 10px;
  flex-shrink: 0;
}
.dropdown-link-agent: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: 3rem;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-column-title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}

/* ==========================================================================
   お問い合わせボタン（デスクトップ・モバイル共通スタイル）
   ========================================================================== */
.mobile-cta, .nav-cta {
  background-color: #007ED1;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 4.375rem;
  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: 0.875rem;
  padding: 0.625rem 1.625rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blank-icon-subnavi {
  width: 0.833em;
  height: 0.833em;
  background-color: #0A2540;
  mask-image: url(/img/blank-icon.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/img/blank-icon.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  display: inline-block;
  margin-left: 0.5em;
}

/* ==========================================================================
   モバイルメニュー
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  height: calc(100dvh - 68px);
  background-color: #FFFFFF;
  z-index: 1000;
  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: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  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: 1rem 1.5rem;
}
.mobile-dropdown-section:first-child {
  border-bottom: 1px solid #E0E0E0;
}
.mobile-dropdown-section:not(:first-child) p:last-of-type {
  padding-bottom: 1.25rem;
  font-weight: bold;
  text-decoration-line: underline;
}
.mobile-dropdown-section p {
  padding-bottom: 1.25rem;
  font-weight: bold;
}

.mobile-dropdown-title {
  font-size: 0.875rem;
  padding-bottom: 0.75rem;
  text-align: left;
}

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

.mobile-dropdown-link {
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 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: 1rem;
  padding: 1rem 2rem;
  display: block;
  margin: 1.5rem 1.5rem;
}

/* モバイルサブナビ（下部のリンク）
   ========================================================================== */
.mobile-sub-nav-list {
  padding: 1rem 1.5rem;
}

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

/* デスクトップでbody.menu-openを無効化
   ========================================================================== */
@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: 0.875rem;
}
.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: 8rem;
  font-size: 0.875rem;
}
@media (max-width: 1200px) {
  .footer-info {
    margin-right: 3rem;
  }
}
@media (max-width: 1060px) {
  .footer-info {
    margin-right: 2rem;
  }
}
@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: 1.5rem;
    margin-bottom: 5px;
  }
}

.footer-link-group {
  display: flex;
  flex: 1;
}
@media (max-width: 1060px) {
  .footer-link-group {
    flex-wrap: wrap;
    gap: 20px 30px;
  }
}
@media (max-width: 900px) {
  .footer-link-group {
    margin-bottom: 50px;
    gap: 40px 0;
  }
}

.footer-link_list {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 1060px) {
  .footer-link_list {
    white-space: normal;
  }
}
@media (max-width: 900px) {
  .footer-link_list {
    width: 50%;
    box-sizing: border-box;
  }
}
@media (max-width: 900px) {
  .footer-link_list:not(:nth-last-child(2)) {
    margin-bottom: 0;
  }
}
.footer-link_list:not(:last-of-type) {
  margin-right: 60px;
}
@media (max-width: 1060px) {
  .footer-link_list:not(:last-of-type) {
    margin-right: 30px;
  }
}
@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: 1rem;
}
.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: 1.3rem;
  }
}

.list-lg-link a {
  font-size: 1rem;
}

.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: 0.75rem;
}
.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: 1.2rem;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  .copy {
    margin-top: 35px;
    display: block;
  }
}

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

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

.footer-link-agent {
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  transition: color 0.3s ease;
  padding-left: 1em;
  padding-top: 0.5em;
  color: #FFFFFF;
}
.footer-link-agent::before {
  content: "–";
  display: inline-block;
  width: 6px;
  height: 10px;
  flex-shrink: 0;
}

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: 100%;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration-line: 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;
}

.hero {
  width: 100%;
  position: relative;
  background: url(../ai-agent/shoshin-ai/img/mv_bg.png) no-repeat center center, linear-gradient(180deg, #FFF 8.23%, #F1F5F6 74.15%);
  background-size: cover, auto;
  max-height: 500px;
}
@media (max-width: 1100px) {
  .hero {
    max-height: none;
    padding-bottom: 8%;
  }
}
.hero h1 {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-align: center;
  transform: skewX(-5deg);
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .hero h1 {
    font-size: 1.375rem;
  }
}
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 1.75rem;
    padding: 0 0 2rem;
    white-space: initial;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.25rem;
    padding: 0 0 1.5rem;
  }
}
.hero h1 span {
  color: #007ED1;
  font-size: 1.875rem;
}
.hero h1 .sp-br {
  display: none;
}
@media (max-width: 768px) {
  .hero h1 .sp-br {
    display: block;
  }
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 500px;
  padding: 20px;
}
@media (max-width: 1100px) {
  .hero-content {
    height: auto;
  }
}
@media (max-width: 1100px) {
  .hero-content {
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 80px 20px 20px;
    width: 100%;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
}

.hero-left {
  padding: 5% 0% 2%;
}
@media (max-width: 1400px) {
  .hero-left {
    padding: 10% 4% 2% 4%;
  }
}
@media (max-width: 1100px) {
  .hero-left {
    text-align: center;
    padding-top: 6rem;
  }
}
@media (max-width: 768px) {
  .hero-left {
    padding: 0;
  }
}

.hero-logo {
  position: relative;
  z-index: 2;
}
.hero-logo::before {
  content: "";
  background: url("../ai-agent/shoshin-ai/img/logo_right.png") no-repeat center/contain;
  position: absolute;
  width: 50%;
  height: 50%;
  left: 50%;
  z-index: -1;
}
.hero-logo img {
  width: 100%;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-logo img {
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero-logo img {
    max-width: 100%;
    padding-top: 7%;
    height: 294px;
    object-fit: cover;
    object-position: center center;
  }
}
@media (max-width: 768px) {
  .hero-logo {
    order: 1;
    text-align: center;
  }
}

.hero-right {
  margin: 0 auto;
  max-height: 100%;
}
@media (max-width: 768px) {
  .hero-right {
    align-self: center;
    margin: 0;
    width: 100%;
  }
}

.boxes-container {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 36px;
  justify-content: center;
  transform: scale(0.9);
}
@media (max-width: 1500px) {
  .boxes-container {
    gap: 30px;
  }
}
@media (max-width: 1100px) {
  .boxes-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto;
    max-width: 600px;
  }
}
@media (max-width: 768px) and (min-width: 501px) {
  .boxes-container {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: clamp(15px, 3vw, 20px);
    transform: none;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .boxes-container {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 10px;
    transform: none;
    width: 100%;
  }
}

.feature-box {
  position: relative;
  border-radius: 8px;
  padding: 20px;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  opacity: 1;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #007ED1 0%, #5BAFE6 50%, #B7DFFA 100%) border-box;
}
.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 6px;
  z-index: 0;
}
.feature-box::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.9), 0 0 12px 4px rgba(255, 255, 255, 0.6);
  top: -2px;
  left: -2px;
  z-index: 3;
}
.feature-box p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
@media (max-width: 1600px) {
  .feature-box {
    min-height: 102px;
  }
}
@media (max-width: 1500px) {
  .feature-box {
    padding: 12px;
    min-height: 110px;
  }
  .feature-box p {
    font-size: 1rem;
  }
}
@media (max-width: 1000px) {
  .feature-box {
    max-width: 100%;
  }
}
.feature-box:hover {
  background: linear-gradient(rgba(0, 60, 90, 0.95), rgba(0, 60, 90, 0.95)) padding-box, linear-gradient(180deg, #007ED1 0%, #5BAFE6 50%, #B7DFFA 100%) border-box;
}

.glow-effect {
  display: none;
}

.box1::after {
  animation: dotMove 4s linear infinite;
  animation-delay: 0s;
}

.box2::after {
  animation: dotMove 4s linear infinite;
  animation-delay: -0.8s;
}

.box3::after {
  animation: dotMove 4s linear infinite;
  animation-delay: -2.1s;
}

.box4::after {
  animation: dotMove 4s linear infinite;
  animation-delay: -1.3s;
}

.box5::after {
  animation: dotMove 4s linear infinite;
  animation-delay: -3.2s;
}

.box6::after {
  animation: dotMove 4s linear infinite;
  animation-delay: -1.7s;
}

.box1::after, .box2::after {
  --h: 160px;
}

.box3::after, .box4::after {
  --h: 180px;
}

.box5::after, .box6::after {
  --h: 160px;
}

@keyframes dotMove {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(var(--box-w), 0px);
  }
  50% {
    transform: translate(var(--box-w), var(--box-h));
  }
  75% {
    transform: translate(0px, var(--box-h));
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.pt-100 {
  padding-top: 6.25rem;
}
@media (max-width: 768px) {
  .pt-100 {
    padding-top: 2rem;
  }
}

.pt-100-first {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .pt-100-first {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.pt-100-solution {
  padding-top: 12rem;
}
@media (max-width: 768px) {
  .pt-100-solution {
    padding-top: 4rem;
  }
}

.heading-sub {
  color: #007ed1;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .heading-sub {
    font-size: 1rem;
  }
}

.heading-group-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .heading-group-title {
    padding-bottom: 1.375rem;
  }
}

.heading-line {
  width: 0;
  height: 18px;
  border: none;
  border-left: 2px solid #007ed1;
  border-radius: 10px;
  margin: 0 auto;
}

.description {
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  gap: 20px;
}
@media (max-width: 768px) {
  .description {
    flex-direction: column;
  }
}
.description h2 {
  white-space: nowrap;
}
.description p {
  line-height: 2;
  font-size: 1rem;
  text-align: left;
  padding-left: 6px;
}
@media (max-width: 1100px) {
  .description p {
    font-size: 0.9375rem;
    padding-left: 4px;
  }
}
.description p span {
  color: #007ED1;
  font-weight: bold;
}

.problem h2 {
  color: #007ED1;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .problem h2 {
    padding-bottom: 0;
  }
}
.problem h2 span {
  width: 15rem;
  border: none;
  border-bottom: 2px solid #007ED1;
  border-radius: 10px;
  display: inline-block;
  margin-left: 1rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .problem h2 span {
    width: 100%;
    margin-left: 0;
  }
}
.problem p {
  text-align: left;
  padding-left: 6px;
  color: #0A2540;
}
@media (max-width: 1100px) {
  .problem p {
    padding-left: 2px;
  }
}
.problem .problem-list-group {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .problem .problem-list-group {
    display: block;
  }
}
.problem .problem-list-group > div {
  flex: 1;
}
.problem .problem-list-group > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1100px) {
  .problem .problem-list-group > div:first-child {
    gap: 0;
  }
}
.problem .problem-list-group .problem-list {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}
@media (max-width: 1100px) {
  .problem .problem-list-group .problem-list {
    display: block;
  }
}
.problem .problem-list-group .problem-list__item {
  position: relative;
  display: inline-block;
  background: #f6f6f8;
  font-size: 1.125rem;
  line-height: 1;
  margin-top: 0.8rem;
  padding: 1rem 1.375rem 1rem 3.8rem;
  width: 18.5rem;
  max-width: 300px;
}
@media (max-width: 1100px) {
  .problem .problem-list-group .problem-list__item {
    font-size: 1rem;
    max-width: initial;
    width: 100%;
  }
}
.problem .problem-list-group .problem-list__item::before {
  position: absolute;
  top: 50%;
  left: 1.4rem;
  transform: translateY(-50%);
  content: "\e5cd";
  font-family: "Material Symbols Outlined";
  font-size: 1.375rem;
  color: #007ED1;
}
.problem .problem-list-group img {
  width: 100%;
}
@media (max-width: 1100px) {
  .problem .problem-list-group img {
    padding-top: 1.6rem;
  }
}

.solution {
  position: relative;
}
.solution h2 {
  position: relative;
  text-align: center;
  z-index: 1;
}
.solution h2::after {
  content: "SOLUTION";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(4.5rem, 15vw, 14rem);
  line-height: 1;
  white-space: nowrap;
  z-index: -1;
  color: rgba(39, 201, 244, 0.1);
}
.solution h2 span {
  color: #007ED1;
}
.solution .solution-intro {
  padding: 7.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .solution .solution-intro {
    padding: 3.75rem 0 1.5rem;
  }
}

.solution-group-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
@media (min-width: 769px) and (max-width: 1245px) {
  .solution-group-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .solution-group-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .solution-group-cards {
    gap: 1.375rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .solution-group-cards {
    row-gap: 86px;
  }
}
@media (min-width: 1025px) and (max-width: 1245px) {
  .solution-group-cards {
    row-gap: 90px;
  }
}

.solution-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.solution-card-header {
  background: #007ED1;
  color: #FFFFFF;
  padding: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 768px) {
  .solution-card-header {
    font-size: 0.9375rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .solution-card-header {
    padding: 12px 8px;
    font-size: 1rem;
  }
}

.solution-card-image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border-radius: 20px 20px 0 0;
  padding: 4% 0;
}
@media (max-width: 768px) {
  .solution-card-image {
    height: 240px;
  }
}
.solution-card-image img {
  width: 100%;
  max-width: 344px;
}
@media (max-width: 768px) {
  .solution-card-image img {
    width: 90%;
  }
}

.solution-card-body {
  min-height: 90px;
  display: flex;
  align-items: flex-start;
  padding: 0.625rem 1.5rem 0;
  text-align: left;
}
@media (max-width: 768px) {
  .solution-card-body {
    min-height: 0;
    padding: 0 1rem 1rem;
  }
}

.solution-card-text {
  color: #0A2540;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 768px) {
  .solution-card-text {
    font-size: 0.875rem;
  }
}

.features {
  color: #0A2540;
  overflow: hidden;
  padding: 11.25rem 20px;
}
@media (max-width: 768px) {
  .features {
    padding: 3.25rem 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .features {
    padding: 5.25rem 20px;
  }
}
.features .feature-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .features .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .features .feature-grid {
    row-gap: 114px;
  }
}
.features .feature-grid .feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  position: relative;
  overflow: visible;
}
@media (max-width: 1000px) {
  .features .feature-grid .feature-item {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
  }
  .features .feature-grid .feature-item .feature-text,
  .features .feature-grid .feature-item .feature-image {
    order: 0 !important;
  }
}
.features .feature-grid .feature-item:nth-child(odd) {
  margin-right: auto;
  padding-left: 80px;
}
.features .feature-grid .feature-item:nth-child(odd) .feature-text {
  padding-right: 60px;
}
@media (max-width: 768px) {
  .features .feature-grid .feature-item:nth-child(odd) .feature-text {
    padding-right: 2rem;
    padding-left: 0;
  }
}
.features .feature-grid .feature-item:nth-child(odd) .feature-text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: #F9FAFB;
  z-index: -1;
}
.features .feature-grid .feature-item:nth-child(odd) .feature-image {
  margin-right: -30%;
}
@media (max-width: 1000px) {
  .features .feature-grid .feature-item:nth-child(odd) .feature-image {
    margin: 0 auto;
  }
}
.features .feature-grid .feature-item:nth-child(odd) .feature-image3 {
  margin-right: 10%;
}
@media (max-width: 1000px) {
  .features .feature-grid .feature-item:nth-child(odd) .feature-image3 {
    margin: 0 auto;
  }
}
.features .feature-grid .feature-item:nth-child(even) {
  margin-left: auto;
  width: 90%;
  padding-right: 80px;
}
.features .feature-grid .feature-item:nth-child(even) .feature-text {
  order: 2;
  padding-left: 98px;
  border-radius: 100px 0 0 100px;
}
.features .feature-grid .feature-item:nth-child(even) .feature-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: #F9FAFB;
  z-index: -1;
}
@media (max-width: 768px) {
  .features .feature-grid .feature-item:nth-child(even) .feature-text {
    order: 0;
    padding: 40px;
    padding-right: 0;
  }
}
.features .feature-grid .feature-item:nth-child(even) .feature-image {
  order: 1;
  margin-left: -30%;
}
@media (max-width: 1000px) {
  .features .feature-grid .feature-item:nth-child(even) .feature-image {
    order: 0;
    margin: 0 auto;
  }
}
.features .feature-grid .feature-item .feature-text {
  text-align: left;
  z-index: 2;
  background-color: #F9FAFB;
  padding: 40px;
  position: relative;
  border-radius: 0 100px 100px 0;
}
.features .feature-grid .feature-item .feature-text h3 {
  margin-bottom: 25px;
  color: #0A2540;
}
@media (max-width: 768px) {
  .features .feature-grid .feature-item .feature-text h3 {
    font-size: 1.5rem;
  }
}
.features .feature-grid .feature-item .feature-text h3 .highlight {
  color: #007ED1;
}
.features .feature-grid .feature-item .feature-text p {
  font-size: 1rem;
  line-height: 2;
  color: #0A2540;
}
.features .feature-grid .feature-item .feature-image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.features .feature-grid .feature-item .feature-image img {
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .features .feature-grid .feature-item .feature-image img {
    max-width: 100%;
  }
}

.functions {
  padding: 5rem 20px 11.25rem;
  background: #F9FAFB;
}
@media (max-width: 768px) {
  .functions {
    padding: 0 20px 3.25rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .functions {
    padding: 5.25rem 20px;
  }
}
@media (max-width: 768px) {
  .functions > div {
    padding-top: 1.375rem;
  }
}
.functions h3 {
  padding-bottom: 14px;
}
.functions p {
  padding-top: 14px;
}

.functions-intro {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin: 20px auto;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .functions-intro {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .functions-intro {
    padding: 1rem;
  }
}
.functions-intro p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.system-diagram {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
.system-diagram img {
  width: 100%;
}
.system-diagram p {
  display: none;
}
@media (max-width: 768px) {
  .system-diagram p {
    display: block;
    font-size: 0.75rem;
  }
}

.use-cases-wrapper h3 {
  text-align: center;
  padding: 28px 0;
  color: #007ED1;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.375rem;
  justify-items: center;
}
@media (min-width: 769px) and (max-width: 1245px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.use-cases-grid {
  margin: 0 auto;
  padding: 5%;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .use-cases-grid {
    gap: 1.875rem;
  }
}
@media (max-width: 768px) {
  .use-cases-grid {
    gap: 1.375rem;
    padding: 0;
  }
}

.use-cases-card {
  background: #EEF6FA;
  border-radius: 10px;
  max-height: 700px;
}
@media (max-width: 1100px) {
  .use-cases-card {
    max-height: initial;
  }
}

.use-cases-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .use-cases-card-image {
    height: 240px;
    max-height: 240px;
  }
}
.use-cases-card-image img {
  width: auto !important;
  max-height: 230px;
}

.use-cases-card-body {
  margin: 1rem;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 1.375rem 1.25rem;
}
@media (max-width: 768px) {
  .use-cases-card-body {
    padding: 24px 20px 32px;
  }
}

.use-cases-card-subtitle {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .use-cases-card-subtitle {
    font-size: 0.9375rem;
    gap: 10px;
  }
}
.use-cases-card-subtitle .check-icon-shoshin {
  color: #007ED1;
}

.use-cases-card-text {
  color: #0A2540;
  font-size: 0.9375rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .use-cases-card-text {
    font-size: 0.875rem;
  }
}

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

.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: 24px;
  color: #0A2540;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faq-question::after {
    right: 20px;
    font-size: 20px;
  }
}
.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.125rem;
  line-height: 1.6;
  color: #0A2540;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .faq-text {
    font-size: 1rem;
  }
}

.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: 1rem;
  line-height: 1.8;
  color: #0A2540;
  flex: 1;
}
@media (max-width: 768px) {
  .faq-answer p {
    font-size: 0.875rem;
  }
}

.shoshin-cta-section {
  background: url(../ai-agent/shoshin-ai/img/cta_bg.png) no-repeat center center/cover;
  height: 24rem;
}
@media (max-width: 768px) {
  .shoshin-cta-section {
    height: auto;
  }
}
.shoshin-cta-section .shoshin-cta-group {
  text-align: center;
  padding: 2rem 0;
}
.shoshin-cta-section .shoshin-cta-group p {
  padding-bottom: 2rem;
  letter-spacing: 0.05em;
}
.shoshin-cta-section .shoshin-cta-group p span {
  color: #007ED1;
}

.footer-shoshin {
  margin-top: 0;
}

@media (max-width: 768px) {
  .zoomable-img {
    cursor: zoom-in;
  }
}
.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.img-modal.is-open {
  display: flex;
}
.img-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.img-modal-content {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 90vh;
}
.img-modal-content img {
  width: 100%;
  height: auto;
  display: block;
}
.img-modal-close {
  position: absolute;
  top: -2rem;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}/*# sourceMappingURL=shoshin.css.map */