@charset "UTF-8";
*, *::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;
}

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;
  }
}

/* ==========================================================================
    ナビゲーション
   ========================================================================== */
/* メニューオープン時の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-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;
}

/* ==========================================================================
   モバイルメニュー
   ========================================================================== */
.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: 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;
}
@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: 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;
}

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

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid #E5E7EB;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .tabs {
    margin-bottom: 32px;
    gap: 4px;
  }
}
.tabs .tab {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tabs .tab {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}
.tabs .tab:hover {
  color: #007ED1;
  background-color: #F0F9FF;
}
.tabs .tab.active {
  color: #007ED1;
  border-bottom-color: #007ED1;
  font-weight: 700;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.page-header {
  background: linear-gradient(135deg, #EBF5FF 0%, #F0F9FF 100%);
  padding: 80px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-header {
    padding: 40px 0;
    margin-bottom: 32px;
  }
}
.page-header .site-inner {
  position: relative;
}
@media (max-width: 767px) {
  .page-header .site-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.page-header .page-header-content {
  max-width: calc(100% - 240px);
}
@media (max-width: 1024px) {
  .page-header .page-header-content {
    max-width: calc(100% - 200px);
  }
}
@media (max-width: 767px) {
  .page-header .page-header-content {
    max-width: 100%;
  }
}
.page-header .page-header-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .page-header .page-header-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
}
.page-header .page-header-description {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  color: #0A2540;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page-header .page-header-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .page-header .page-header-description br {
    display: none;
  }
}
.page-header .page-header-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
}
@media (max-width: 1024px) {
  .page-header .page-header-image {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .page-header .page-header-image {
    position: static;
    transform: none;
    width: 140px;
    align-self: center;
  }
}
.page-header .page-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

.site-wrapper {
  overflow-x: hidden;
}

@media (max-width: 1500px) {
  .site-inner-top {
    max-width: 90%;
    padding: 0;
  }
}
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 350px;
  max-height: 500px;
  background: url("../img/mv.jpg") top left no-repeat;
  background-image: url("../img/mv.webp");
  background-size: cover;
  background-position: top left;
  aspect-ratio: 8/3;
}
@media (min-width: 1500px) {
  .hero {
    max-height: 600px;
  }
}
@media (min-width: 1800px) {
  .hero {
    max-height: 700px;
  }
}
@media (min-width: 2000px) {
  .hero {
    background-size: contain;
    max-height: none;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .hero {
    background: url("../img/mv_sp.jpg") center top no-repeat;
    background-image: url("../img/mv_sp.webp");
    background-size: cover;
    background-position: center top;
    min-height: 0;
    max-height: none;
    aspect-ratio: unset;
    height: auto;
    min-height: 1133px;
  }
}
@media (max-width: 500px) {
  .hero {
    background: url("../img/mv_sp.jpg") 50% 20% no-repeat;
    background-image: url("../img/mv_sp.webp");
    background-size: cover;
    background-position: 50% 20%;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    aspect-ratio: unset;
  }
}

@supports (aspect-ratio: 1/1) {
  @media (min-width: 769px) {
    .hero {
      height: auto;
      padding-top: 0;
    }
  }
  @media (min-width: 501px) and (max-width: 768px) {
    .hero {
      height: 0;
    }
  }
  @media (max-width: 500px) {
    .hero {
      height: 100svh;
    }
  }
}
.hero-content {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  z-index: 3;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    height: auto;
  }
}
@media (min-width: 769px) {
  .hero-content {
    left: 56%;
  }
}
@media (min-width: 1400px) {
  .hero-content {
    left: 52%;
  }
}
@media (min-width: 1700px) {
  .hero-content {
    left: 50%;
    top: 12%;
  }
}

.hero-text {
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .hero-text {
    top: -6%;
    left: 0;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .hero-text {
    left: 2%;
  }
}

.hero-title {
  font-size: clamp(32px, 4.17vw, 54px);
  margin-bottom: 0;
  letter-spacing: 0.05em;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.hero-description {
  font-size: clamp(14px, 1.25vw, 22px);
  font-weight: 600;
  padding-top: 1rem;
  letter-spacing: 0.05em;
  opacity: 0;
  visibility: hidden;
  text-shadow: 0 0 1px hsla(0, 0%, 100%, 0.75), 0 0 2px hsla(0, 0%, 100%, 0.45);
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 0.875rem;
    line-height: 1.7;
    padding-top: 16px;
  }
}

.hero-cta {
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translateX(-50%);
  width: fit-content;
  margin: 0;
}
@media (min-width: 1500px) {
  .hero-cta {
    top: 65%;
  }
}
@media (min-width: 1700px) {
  .hero-cta {
    top: 58%;
  }
}
@media (max-width: 768px) {
  .hero-cta {
    display: none;
  }
}
.hero-cta::before {
  content: "";
  position: absolute;
  top: -4%;
  left: -76px;
  width: 38%;
  height: 81px;
  aspect-ratio: 136/81;
  background-image: url("../img/pc_mock.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 100;
  filter: drop-shadow(0px 0px 2px rgba(0, 89, 149, 0.25));
}
@media (max-width: 1200px) {
  .hero-cta::before {
    left: -60px;
  }
}
@media (max-width: 768px) {
  .hero-cta::before {
    display: none;
  }
}
.hero-cta a {
  background: #FFFFFF;
  color: #007ED1;
  border-radius: 60px;
  box-shadow: 1px 0px 10px rgba(0, 89, 149, 0.26);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 70px 12px 76px;
  position: relative;
  font-weight: 700;
  font-size: clamp(12px, 1.11vw, 20px);
  line-height: 1em;
  text-align: center;
}
@media (min-width: 1800px) {
  .hero-cta a {
    padding: 12px 86px 12px 92px;
  }
}
@media (max-width: 1000px) {
  .hero-cta a {
    padding: 12px 70px 12px 64px;
  }
}
.hero-cta a .hero-cta-txt {
  color: #0A2540;
  display: block;
  font-size: clamp(16px, 1.67vw, 26px);
  line-height: 1em;
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero-cta a .hero-cta-txt {
    font-size: 1rem;
  }
}
.hero-cta a img {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .hero-cta a img {
    right: 12px;
    width: 20px;
    height: 20px;
  }
}
.hero-cta a:hover img {
  transform: translateY(-50%) translateX(8px);
}

.hero-title.animate {
  animation: tracking-in 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  visibility: visible;
}

.hero-description.animate {
  animation: fade-in-up 1s ease-out 1s forwards;
  visibility: visible;
}

@keyframes tracking-in {
  0% {
    letter-spacing: 1.5em;
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    letter-spacing: 0.05em;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  @keyframes tracking-in {
    0% {
      letter-spacing: 1em;
      opacity: 0;
      filter: blur(15px);
    }
    100% {
      letter-spacing: 0.05em;
      opacity: 1;
      filter: blur(0);
    }
  }
}
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(240, 240, 240, 0.7);
  filter: blur(1px);
  box-shadow: 0 0 15px rgb(255, 255, 255), 0 0 30px rgba(240, 240, 240, 0.8), 0 0 45px rgba(220, 220, 220, 0.6), 0 0 60px rgba(200, 200, 200, 0.4);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.scan-line.animate {
  animation: scan-line 1.2s ease-out forwards;
  visibility: visible;
}

@keyframes scan-line {
  0% {
    top: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 100px 20px 140px;
}
@media (max-width: 820px) {
  .about-section {
    padding: 60px 0 80px;
  }
}
@media (max-width: 768px) {
  .about-section {
    gap: 24px;
    padding: 60px 0 0;
  }
}

.heading-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
}
@media (max-width: 768px) {
  .heading-group {
    gap: 10px;
  }
}

.heading-group-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading-group-padding {
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .heading-group-padding {
    padding-bottom: 24px;
  }
}

.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-line {
  width: 0;
  height: 18px;
  border: none;
  border-left: 2px solid #007ED1;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .heading-line {
    height: 14px;
  }
}

.about-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
}
@media (max-width: 820px) {
  .about-description {
    flex-direction: column;
    gap: 40px;
  }
}

.about-text {
  flex: 1;
  max-width: 602px;
}
@media (max-width: 820px) {
  .about-text {
    max-width: 100%;
  }
}
.about-text p {
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 768px) {
  .about-text p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.bold-navy,
.bold-main {
  font-weight: 700;
}

.bold-main {
  color: #007ED1;
}

.about-image {
  flex-shrink: 0;
  width: 50%;
}
@media (max-width: 820px) {
  .about-image {
    width: 100%;
  }
}
.about-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 820px) {
  .about-image img {
    width: 68%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about-image img {
    width: 100%;
  }
}

.functions-section {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .functions-section {
    padding: 40px 0;
  }
}

.functions-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  text-align: center;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .functions-header {
    gap: 12px;
    padding-bottom: 30px;
  }
}

.function-heading {
  color: #007ED1;
}

.function-service {
  padding-bottom: 46px;
}
.function-service img {
  width: auto;
  height: 60px;
}
@media (max-width: 820px) {
  .function-service img {
    height: 44px;
  }
}
@media (max-width: 768px) {
  .function-service img {
    height: 32px;
  }
}
.function-service--spacing {
  padding-top: 140px;
}
.function-service--right {
  padding-top: 140px;
  padding-left: 53%;
}
@media (max-width: 820px) {
  .function-service {
    padding-bottom: 30px;
    margin: 0 auto;
  }
  .function-service--spacing, .function-service--right {
    padding-top: 80px;
  }
  .function-service--right {
    padding-left: 0;
  }
}

.function-item + .function-service {
  padding-top: 160px;
}
@media (max-width: 820px) {
  .function-item + .function-service {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .function-item + .function-service {
    padding-top: 70px;
  }
}

.check-icon {
  color: #007ED1;
  margin-top: 3px;
}

.function-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .function-item {
    flex-direction: column;
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .function-item {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 820px) {
  .function-item--extend {
    flex-direction: column-reverse;
  }
}

.function-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  width: 50%;
}
@media (max-width: 820px) {
  .function-content {
    width: 100%;
  }
}
.function-content h3 {
  letter-spacing: 0.04em;
}
@media (max-width: 820px) {
  .function-content h3 {
    text-align: center;
  }
}

.function-description {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .function-description {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.function-description + .function-description {
  margin-top: 10px;
}

.function-image {
  position: relative;
  width: 50%;
}
@media (max-width: 820px) {
  .function-image {
    width: 100%;
  }
}
.function-image::before {
  content: "";
  position: absolute;
  top: 57px;
  left: 14px;
  width: 100vw;
  height: 100%;
  background-color: #F9FAFB;
  z-index: -1;
}
@media (max-width: 768px) {
  .function-image::before {
    height: 82%;
  }
}
.function-image img {
  height: auto;
  display: block;
}
@media (min-width: 600px) and (max-width: 820px) {
  .function-image img {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .function-image img {
    width: 90%;
    margin: 0 auto;
  }
}

.function-image-middle::before {
  left: auto;
  right: 14px;
}

.function-image-search {
  width: 100%;
  max-width: 550px;
}

.function-strengths {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .function-strengths {
    gap: 12px;
    padding-top: 10px;
  }
}

.strengths-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 768px) {
  .strengths-heading {
    font-size: 1rem;
  }
}

.strengths-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .strengths-list {
    gap: 12px;
  }
}

.strength-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  background-color: #EEF6FA;
  color: #007ED1;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .strength-item {
    font-size: 0.875rem;
    padding: 8px 12px;
  }
}

.function-cta {
  align-self: flex-start;
  padding-top: 38px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .function-cta {
    padding-top: 2%;
  }
}

.case-study {
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
}
@media (max-width: 820px) {
  .case-study {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .case-study {
    padding: 40px 0;
  }
}
.case-study::before {
  content: "";
  background-color: #FFFFFF;
  width: 3800px;
  height: 540px;
  position: absolute;
  top: 24vw;
  left: -580px;
  transform: rotate(-31deg);
}
@media (max-width: 820px) {
  .case-study::before {
    top: 25vw;
    height: 600px;
    left: -840px;
    transform: rotate(-45deg);
  }
}

.case-study-wrap {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .case-study-wrap {
    width: auto;
  }
}

.case-study-item {
  position: relative;
  padding: 15px 15px 35px;
  z-index: 1;
}
@media (max-width: 820px) {
  .case-study-item {
    padding: 15px 3% 35px;
  }
}
.case-study-item::before {
  content: "";
  border-radius: 25px;
  background: #EEF6FA;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.case-study-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: -1%;
  bottom: -2%;
  z-index: -2;
  border-radius: 20px;
}
@media (max-width: 820px) {
  .case-study-item::after {
    bottom: -1%;
  }
}

.case-study-image {
  margin: 20px auto;
  text-align: center;
}
.case-study-image img {
  margin: 0 auto;
  background: #FFFFFF;
  padding: 2%;
}
@media (max-width: 768px) {
  .case-study-image img {
    width: 80%;
  }
}

.case-study-item-inner {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
@media (max-width: 820px) {
  .case-study-item-inner {
    display: block;
    padding: 0 1%;
  }
}
.case-study-item-inner .image {
  margin-left: -12px;
}
@media (max-width: 820px) {
  .case-study-item-inner .image {
    margin-left: -3.5%;
  }
}
.case-study-item-inner .image img {
  max-width: 450px;
}
@media (max-width: 820px) {
  .case-study-item-inner .image img {
    max-width: 100%;
  }
}

.case-study-text-box {
  padding: 0 4%;
  line-height: 1.9em;
}
.case-study-text-box h3 {
  color: #007ED1;
}
@media (max-width: 820px) {
  .case-study-text-box h3 {
    padding: 20px 0;
  }
}

.feature-cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin: 20px 0;
  flex-wrap: wrap;
}

.feature-card-top {
  position: relative;
  background: #FFFFFF;
  border-radius: 10px;
  color: #0A2540;
  text-align: center;
  width: 300px;
  min-width: 200px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: fade-in-up 0.6s ease forwards;
}
.feature-card-top:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card-top:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card-top:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card-top h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
  color: #FFFFFF;
  z-index: 20;
  position: relative;
}
.feature-card-top h3 p {
  font-size: 80%;
}

.card-header {
  background: #007ED1;
  color: #FFFFFF;
  padding: 20px 25px;
  position: relative;
  z-index: 3;
}
.card-header h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
  color: #FFFFFF;
}
.card-header::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #007ED1;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.card-body {
  background: #FFFFFF;
  padding: 28px 23px 28px 18px;
  color: #0A2540;
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 2;
  font-size: 14px;
}
.card-body li {
  text-align: left;
  margin-left: 1.5em;
  text-indent: -1.5em;
  padding: 5px 0;
}
.card-body li::before {
  content: "⚫︎";
  color: #007ED1;
  font-size: 0.8em;
  margin-right: 1em;
}

.case-button {
  text-align: center;
  padding: 40px 0 20px;
}
@media (max-width: 820px) {
  .case-button {
    margin-top: 50px;
    padding: 0;
  }
}

.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: 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;
  }
}

.news {
  padding: 120px 0 120px;
}
@media (max-width: 768px) {
  .news {
    padding: 40px 0;
  }
}

.news-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .news-contents {
    gap: 40px;
  }
}

.news-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  padding: 29px 30px 30px;
  border-bottom: 1px solid #D9DADE;
}
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 16px;
  }
}

.news-date {
  flex-shrink: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #0A2540;
  min-width: 110px;
}
@media (max-width: 768px) {
  .news-date {
    font-size: 0.875rem;
    min-width: auto;
  }
}

.news-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news-label {
    font-size: 0.75rem;
    padding: 2px 8px;
    min-width: 104px;
  }
}
.news-label--version {
  border: 1px solid #27AE60;
  background-color: #FFFFFF;
  color: #27AE60;
}
.news-label--notice {
  border: 1px solid #007ED1;
  background-color: #FFFFFF;
  color: #007ED1;
}
.news-label--press {
  border: 1px solid #E67E22;
  background-color: #FFFFFF;
  color: #E67E22;
}

.news-link {
  flex: 1;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #0A2540;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .news-link {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.news-link:hover {
  color: #007ED1;
}

.news-more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.news-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: #0A2540;
  transition: all 0.3s ease;
  width: auto;
}
@media (max-width: 768px) {
  .news-more-link {
    font-size: 0.875rem;
    padding: 10px 24px;
  }
}
.news-more-link .material-symbols-outlined {
  font-size: 1.5rem;
  color: #007ED1;
}
.news-more-link:hover {
  opacity: 0.6;
}

.footer-cta-bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 47px 0;
  background: linear-gradient(180deg, rgba(39, 201, 244, 0.3) 0%, rgba(34, 192, 240, 0.3) 13%, rgba(32, 187, 237, 0.3) 19%, rgba(29, 182, 235, 0.3) 25%, rgba(20, 163, 227, 0.3) 50%, rgba(99, 191, 255, 0.35) 100%);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer-cta-bg {
    padding: 32px 0;
    flex-direction: column;
  }
}

.footer-cta-illust {
  position: absolute;
  width: auto;
  height: 153px;
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .footer-cta-illust {
    display: none;
  }
}
.footer-cta-illust--left {
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
}
.footer-cta-illust--right {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.footer-cta-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  max-width: 748px;
  position: relative;
  z-index: 2;
}
@media (max-width: 820px) {
  .footer-cta-contents {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }
}

.footer-cta-pc {
  flex-shrink: 0;
  width: 35%;
  max-width: 243px;
}
@media (max-width: 768px) {
  .footer-cta-pc {
    width: 100%;
    max-width: 192px;
  }
}

.footer-cta-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
@media (max-width: 768px) {
  .footer-cta-text-wrapper {
    align-items: center;
    text-align: center;
  }
}

.footer-cta-text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-cta-subtitle {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #007ED1;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-cta-subtitle {
    font-size: 1.2rem;
  }
}

.footer-cta-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #0A2540;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-cta-title {
    font-size: 1.3rem;
  }
}

.footer-cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 56px;
  background-color: #FFFFFF;
  color: #007ED1;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 70px;
  box-shadow: 0px 0px 4px 0px rgba(99, 191, 255, 0.55);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-cta-button {
    font-size: 1.125rem;
    padding: 14px 40px;
    width: 100%;
    max-width: 443px;
  }
}
.footer-cta-button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0px 2px 8px 0px rgba(99, 191, 255, 0.7);
}

.anim-box.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.anim-box.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.anim-box.kiran:hover::before {
  animation: kiran 0.5s linear;
}

@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.anim-box.zoomin {
  opacity: 0;
  transform: scale(0.8);
}

.anim-box.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*------------------------------------------------------------
    共通スタイル
------------------------------------------------------------*/
.pricing-section {
  margin: 0 auto;
  padding: 80px 15px;
  max-width: 1200px;
}

.g_bg {
  background-color: #F9FAFB;
}

.pricing-button-secondary {
  margin: 20px 0;
  font-size: 13px;
  padding: 10px 10px 10px 30px;
  text-align: center;
}

/*------------------------------------------------------------
    セクションタイトル
------------------------------------------------------------*/
.pricing-section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.pricing-section-title::after {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background-color: #0088cc;
  margin: 10px auto 0;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .pricing-section-title {
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------
    料金プランカード
------------------------------------------------------------*/
.pricing-plans-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.pricing-plan-card {
  padding: 35px 40px;
  border-radius: 0;
  border-right: 2px solid white;
}
.pricing-plan-card:last-child {
  border-right: none;
}

.pricing-plan-cloud,
.pricing-plan-onpremise {
  background-color: #0088cc;
  color: white;
}

.pricing-plan-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}

h5 {
  padding: 20px;
  background-color: #0088cc;
}

.pricing-plan-description {
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
  text-align: left;
  padding: 20px;
  color: #000;
  background-color: #FFF;
}
.pricing-plan-description p {
  display: block;
  text-align: center;
}
.pricing-plan-description span {
  font-weight: bold;
  color: #0088cc;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: white;
  color: #0088cc;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.3s;
  border: 2px solid white;
}
.pricing-link:hover {
  opacity: 0.9;
}

/*------------------------------------------------------------
    料金テーブル
------------------------------------------------------------*/
.pricing-table {
  margin-bottom: 60px;
}

.pricing-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.pricing-table-content {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  margin: 30px 0;
}
@media (max-width: 1024px) {
  .pricing-table-content {
    font-size: 12px;
    min-width: 800px;
    font-size: 14px;
  }
}

.pricing-table-header {
  vertical-align: top;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: white;
  border: 2px solid #0088cc;
}
@media (max-width: 1024px) {
  .pricing-table-header {
    font-size: 18px;
  }
}

.pricing-table-header-empty {
  background-color: #fff;
  border: none;
}

.pricing-table-header-cloud {
  background-color: #fff;
  border-radius: 10px 0 0 0;
  border-right: 2px solid white;
  width: 40%;
}

.pricing-table-header-onpremise {
  background-color: #fff;
  width: 40%;
}

.label-fast {
  border-radius: 10px 0 0 0;
  border-top: 2px solid #C8C8C8;
}

.pricing-table-label {
  padding: 40px 30px;
  font-weight: bold;
  font-size: 18px;
  background-color: #f8f9fa;
  border-left: 2px solid #C8C8C8;
  border-bottom: 2px solid #C8C8C8;
  vertical-align: middle;
  min-width: 120px;
}
@media (max-width: 1024px) {
  .pricing-table-label {
    font-size: 14px;
    padding: 20px 15px;
  }
}

.pricing-table-cell {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  border-left: 2px solid #0088cc;
  border-bottom: 2px solid #0088cc;
  background-color: #E9F4FE;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .pricing-table-cell {
    padding: 20px 15px;
  }
}

.right-border {
  border-right: 2px solid #0088cc;
}

.t_flex {
  display: flex;
  align-items: center;
  padding: 0 0 20px 0;
}
.t_flex > * {
  margin-top: 0;
  margin-bottom: 0;
}
.t_flex .pricing-badge {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .t_flex {
    display: block;
    align-items: center;
    padding: 0 0 20px 0;
  }
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #0088cc;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 48px;
  font-weight: bold;
  color: #0088cc;
  margin: 0 20px;
  display: flex;
  align-items: center;
}
.pricing-price span {
  font-size: 24px;
  color: #0088cc;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .pricing-price span {
    font-size: 23px;
  }
}
@media (max-width: 1024px) {
  .pricing-price {
    text-align: center;
    display: block;
    padding: 10px 0;
    font-size: 35px;
  }
}

.pricing-contact {
  display: block;
  font-size: 24px;
  color: #0088cc;
  font-weight: bold;
  margin: 15px 0;
}

.pricing-initial-cost {
  position: absolute;
  right: 20px;
  bottom: 20px;
  margin-top: 15px;
  font-size: 17px;
  color: #333;
  font-weight: bold;
}

/*------------------------------------------------------------
    お問い合わせセクション
------------------------------------------------------------*/
.pricing-contact-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 40px;
  background-color: #EBF5FB;
  border: none;
  border-radius: 100px;
  margin: 40px auto;
  max-width: 700px;
  transition: opacity 0.3s ease;
  font-size: 40px;
}
.pricing-contact-section:hover {
  opacity: 0.8;
}
.pricing-contact-section:hover::after {
  transform: translateX(8px);
}
.pricing-contact-section:active {
  opacity: 0.6;
}
.pricing-contact-section::after {
  content: "arrow_circle_right";
  font-family: "Material Symbols Outlined";
  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;
}
@media (max-width: 768px) {
  .pricing-contact-section {
    padding: 0 30px;
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .pricing-contact-section .pricing-contact-text {
    font-size: 15px;
    padding: 0 5px 0 5px;
  }
}

.pricing-contact-image {
  width: 150px;
  height: auto;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .pricing-contact-image {
    width: 30%;
    position: relative;
    margin-right: 0;
  }
}

.pricing-contact-text {
  font-size: 30px;
  padding: 0 30px 0 30px;
  font-weight: bold;
  color: #333;
}
@media (max-width: 768px) {
  .pricing-contact-text {
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .pricing-contact-text {
    font-size: 15px;
    padding: 0 5px 0 5px;
  }
}

/*------------------------------------------------------------
    有料オプション
------------------------------------------------------------*/
.pricing-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-content: center;
}
@media (max-width: 768px) {
  .pricing-options-grid {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }
}

.pricing-option-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .pricing-option-card {
    display: block;
    margin: auto;
  }
}

.pricing-option-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pricing-option-image {
    width: 100%;
    text-align: center;
    display: block;
  }
}

.pricing-option-content {
  flex: 1;
}

.pricing-option-title {
  font-size: 24px;
  font-weight: bold;
  color: #0088cc;
  margin-bottom: 15px;
}

.pricing-option-description {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/*------------------------------------------------------------
    SLOテーブル
------------------------------------------------------------*/
.sol-container {
  width: 100%;
  margin: 0 auto;
}

.slo-table {
  width: 80%;
  border: 1px solid #d9dade;
  text-align: left;
  margin: 0 auto;
  border-radius: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.slo-table tr {
  border-bottom: 1px solid #d9dade;
}
.slo-table tr:last-child {
  border-bottom: none;
}
@media (max-width: 820px) {
  .slo-table {
    width: 90%;
  }
}

.col01,
.col02,
.col03 {
  padding: 20px;
  border: none;
}

.col01 {
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  background-color: #007ED1;
  width: 20%;
}

.col02 {
  background-color: #f5f9fe;
  width: 30%;
  border-right: 1px solid #d9dade;
}

.col03 {
  font-size: 14px;
  background-color: #FFF;
}

.news-page {
  background-color: #FFFFFF;
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .news-page {
    padding: 0 0 60px;
  }
}

.news-list-detailed {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list-detailed .news-item-detailed {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 32px 30px;
  border-bottom: 1px solid #E5E7EB;
  transition: background-color 0.2s ease;
}
@media (max-width: 768px) {
  .news-list-detailed .news-item-detailed {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
}
.news-list-detailed .news-item-detailed:hover {
  color: #007ED1;
}
.news-list-detailed .news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 260px;
}
@media (max-width: 768px) {
  .news-list-detailed .news-meta {
    min-width: auto;
    gap: 12px;
  }
}
.news-list-detailed .news-date-detailed {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #0A2540;
  min-width: 110px;
}
@media (max-width: 768px) {
  .news-list-detailed .news-date-detailed {
    font-size: 0.875rem;
    min-width: auto;
  }
}
.news-list-detailed .news-label-detailed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  padding: 4px 12px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news-list-detailed .news-label-detailed {
    font-size: 0.75rem;
    padding: 4px 10px;
    min-width: 104px;
  }
}
.news-list-detailed .news-label-detailed--version {
  border: solid 1px #27AE60;
  color: #27AE60;
}
.news-list-detailed .news-label-detailed--notice {
  border: solid 1px #007ED1;
  color: #007ED1;
}
.news-list-detailed .news-label-detailed--press {
  border: solid 1px #E67E22;
  color: #E67E22;
}
.news-list-detailed .news-content-detailed {
  flex: 1;
}
.news-list-detailed .news-content-detailed .news-link-detailed {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: #0A2540;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
@media (max-width: 768px) {
  .news-list-detailed .news-content-detailed .news-link-detailed {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.news-list-detailed .news-content-detailed .news-link-detailed:hover {
  color: #007ED1;
}

.news-detail-page {
  background-color: #FFFFFF;
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .news-detail-page {
    padding: 0 0 60px;
  }
}

.news-detail-header {
  padding: 78px 0 40px;
}
@media (max-width: 768px) {
  .news-detail-header {
    padding: 100px 0 40px;
  }
}
@media (max-width: 425px) {
  .news-detail-header {
    padding: 70px 0 40px;
  }
}
.news-detail-header .news-detail-date {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #0A2540;
  display: block;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .news-detail-header .news-detail-date {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
}
.news-detail-header .news-detail-label {
  display: block;
  width: fit-content;
  min-width: 136px;
  padding: 6px 16px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFFFFF;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .news-detail-header .news-detail-label {
    font-size: 0.8125rem;
    padding: 5px 14px;
    min-width: 120px;
    margin-bottom: 12px;
  }
}
.news-detail-header .news-detail-label--version {
  border: solid 1px #27AE60;
  color: #27AE60;
}
.news-detail-header .news-detail-label--notice {
  border: solid 1px #007ED1;
  color: #007ED1;
}
.news-detail-header .news-detail-label--press {
  border: solid 1px #E67E22;
  color: #E67E22;
}
.news-detail-header .news-detail-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #0A2540;
  margin: 0;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .news-detail-header .news-detail-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.news-detail-content {
  font-size: 1rem;
  line-height: 2;
  color: #0A2540;
}
@media (max-width: 768px) {
  .news-detail-content {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}
.news-detail-content p {
  margin-bottom: 32px;
  text-align: justify;
}
@media (max-width: 768px) {
  .news-detail-content p {
    margin-bottom: 24px;
  }
}
.news-detail-content p:last-child {
  margin-bottom: 0;
}
.news-detail-content h2, .news-detail-content h3, .news-detail-content h4 {
  font-weight: 700;
  color: #0A2540;
  line-height: 1.6;
}
.news-detail-content h2:first-child, .news-detail-content h3:first-child, .news-detail-content h4:first-child {
  margin-top: 0;
}
.news-detail-content h2 {
  font-size: 1.625rem;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .news-detail-content h2 {
    font-size: 1.375rem;
    margin: 48px 0 24px;
    padding-bottom: 12px;
  }
}
.news-detail-content h3 {
  font-size: 1.375rem;
  margin: 48px 0 24px;
  border-left: 4px solid #007ED1;
  padding-left: 16px;
}
@media (max-width: 768px) {
  .news-detail-content h3 {
    font-size: 1.1875rem;
    margin: 40px 0 20px;
    padding-left: 12px;
  }
}
.news-detail-content h4 {
  font-size: 1.125rem;
  margin: 40px 0 20px;
}
@media (max-width: 768px) {
  .news-detail-content h4 {
    font-size: 1.0625rem;
    margin: 32px 0 16px;
  }
}
.news-detail-content ul {
  margin: 0 0 32px 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .news-detail-content ul {
    margin-bottom: 24px;
  }
}
.news-detail-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .news-detail-content ul li {
    padding-left: 20px;
    margin-bottom: 14px;
    line-height: 1.9;
  }
}
.news-detail-content ul li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #007ED1;
  font-weight: 700;
  font-size: 1.2em;
}
@media (max-width: 768px) {
  .news-detail-content ul li:before {
    left: 6px;
  }
}
.news-detail-content ul li:last-child {
  margin-bottom: 0;
}
.news-detail-content ul li strong {
  font-weight: 700;
}
.news-detail-content ol {
  margin: 0 0 32px 0;
  padding-left: 24px;
  list-style-type: decimal;
}
@media (max-width: 768px) {
  .news-detail-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
  }
}
.news-detail-content ol li {
  margin-bottom: 16px;
  line-height: 2;
  padding-left: 8px;
}
@media (max-width: 768px) {
  .news-detail-content ol li {
    margin-bottom: 14px;
    line-height: 1.9;
  }
}
.news-detail-content ol li:last-child {
  margin-bottom: 0;
}
.news-detail-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 48px auto;
}
@media (max-width: 768px) {
  .news-detail-content img {
    margin: 32px auto;
  }
}
.news-detail-content strong, .news-detail-content b {
  font-weight: 700;
}
.news-detail-content a {
  color: #007ED1;
  text-decoration: underline;
  word-break: break-all;
}
.news-detail-content a:hover {
  opacity: 0.7;
}
.news-detail-content hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 60px 0;
}
@media (max-width: 768px) {
  .news-detail-content hr {
    margin: 48px 0;
  }
}
.news-detail-content table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .news-detail-content table {
    margin: 24px 0;
    font-size: 0.875rem;
  }
}
.news-detail-content table th, .news-detail-content table td {
  padding: 16px;
  text-align: left;
  line-height: 1.8;
  border: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  .news-detail-content table th, .news-detail-content table td {
    padding: 12px;
    line-height: 1.7;
  }
}
.news-detail-content table th {
  background-color: #F9FAFB;
  font-weight: 700;
  vertical-align: top;
  width: 180px;
}
@media (max-width: 768px) {
  .news-detail-content table th {
    width: 100px;
    font-size: 0.8125rem;
  }
}
.news-detail-content table td {
  font-weight: 400;
}

.version-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .version-table {
    margin: 24px 0;
    font-size: 0.875rem;
  }
}
.version-table thead th {
  background-color: #007ED1;
  color: #FFFFFF;
  font-weight: 700;
  text-align: left;
  padding: 14px 20px;
  border: 1px solid #007ED1;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .version-table thead th {
    padding: 10px 14px;
  }
}
.version-table thead th:first-child {
  width: 25%;
}
@media (max-width: 768px) {
  .version-table thead th:first-child {
    width: 22%;
  }
}
.version-table tbody tr {
  border-bottom: 1px solid #E5E7EB;
}
.version-table tbody tr:last-child {
  border-bottom: none;
}
.version-table tbody th {
  background-color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  vertical-align: top;
  padding: 20px;
  border-right: 1px solid #E5E7EB;
  line-height: 1.8;
  color: #0A2540;
}
@media (max-width: 768px) {
  .version-table tbody th {
    padding: 14px;
    font-size: 0.9375rem;
  }
}
.version-table tbody td {
  padding: 20px;
  vertical-align: top;
  line-height: 1.8;
  color: #0A2540;
  background-color: #010202;
}
@media (max-width: 768px) {
  .version-table tbody td {
    padding: 14px;
  }
}
.version-table tbody td .version-item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #0A2540;
  display: flex;
  align-items: center;
  gap: 8px;
}
.version-table tbody td .version-item-title::before {
  content: "check";
  font-family: "Material Symbols Outlined";
  font-size: 1.625rem;
  color: #007ED1;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .version-table tbody td .version-item-title {
    font-size: 0.9375rem;
  }
}
.version-table tbody td .version-item-desc {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #0A2540;
  padding-left: 34px;
  margin-bottom: 16px;
}
.version-table tbody td .version-item-desc:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .version-table tbody td .version-item-desc {
    font-size: 0.875rem;
    padding-left: 30px;
  }
}

.news-detail-company {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .news-detail-company {
    margin-top: 48px;
  }
}
.news-detail-company .company-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 16px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news-detail-company .company-title {
    font-size: 0.9375rem;
    margin-bottom: 12px;
    line-height: 1.7;
  }
}
.news-detail-company .company-url {
  font-size: 1rem;
  color: #007ED1;
  margin-bottom: 24px;
  display: block;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 768px) {
  .news-detail-company .company-url {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
}
.news-detail-company .company-url:hover {
  opacity: 0.7;
}
.news-detail-company table {
  width: 100%;
  margin: 0;
  border: none;
  background: transparent;
}
.news-detail-company table tr:not(:last-child) td, .news-detail-company table tr:not(:last-child) th {
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  .news-detail-company table tr:not(:last-child) td, .news-detail-company table tr:not(:last-child) th {
    padding-bottom: 10px;
  }
}
.news-detail-company table th {
  background: none;
  border: none;
  padding: 0 16px 0 0;
  width: 140px;
  vertical-align: top;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news-detail-company table th {
    font-size: 0.9375rem;
    width: 100px;
    padding-right: 12px;
    line-height: 1.7;
  }
}
.news-detail-company table td {
  border: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news-detail-company table td {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.news-detail-contact {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .news-detail-contact {
    margin-top: 40px;
  }
}
.news-detail-contact .contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 16px;
  border-left: none;
  padding-left: 0;
}
@media (max-width: 768px) {
  .news-detail-contact .contact-title {
    font-size: 1.0625rem;
    margin-bottom: 12px;
  }
}
.news-detail-contact .contact-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #0A2540;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .news-detail-contact .contact-description {
    font-size: 0.9375rem;
    margin-bottom: 12px;
    line-height: 1.7;
  }
}
.news-detail-contact .contact-company {
  font-size: 1rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .news-detail-contact .contact-company {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }
}
.news-detail-contact .contact-item {
  font-size: 1rem;
  line-height: 1.8;
  color: #0A2540;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .news-detail-contact .contact-item {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 6px;
  }
}
.news-detail-contact .contact-item:last-child {
  margin-bottom: 0;
}
.news-detail-contact .contact-item a {
  color: #007ED1;
  text-decoration: underline;
  word-break: break-all;
}
.news-detail-contact .contact-item a:hover {
  opacity: 0.7;
}

/* ///////Content/////// */
/* Main Content */
.contact-body {
  background-color: #F9FAFB;
}

.conact-main-content {
  padding: 80px 20px 100px;
}

.conact-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Page Title */
.conact-page-title {
  font-size: 2.8em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #0A2540;
  position: relative;
  padding-bottom: 20px;
}

.conact-page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #007ED1;
}

.conact-page-description {
  text-align: center;
  color: #333;
  font-size: 20px;
  margin: 60px;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.conact-card-logo {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conact-card-logo img {
  max-width: 100%;
  height: auto;
}

.conact-card-content {
  flex: 1;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.conact-card-content strong {
  color: #0A2540;
}

.conact-card-arrow {
  flex-shrink: 0;
}

.conact-arrow-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1e3a5f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.conact-arrow-button:hover {
  background-color: #2d5080;
  transform: scale(1.05);
}

.conact-arrow-button:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .conact-main-content {
    padding: 60px 20px 80px;
  }
  .conact-page-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .conact-page-description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8em;
  }
  .contact-card {
    flex-direction: column;
    padding: 30px 20px;
    padding-bottom: 80px;
    gap: 20px;
    text-align: center;
    position: relative;
  }
  .conact-card-logo {
    width: 250px;
  }
  .conact-card-content {
    font-size: 15px;
    padding: 10px 20px;
    text-align: left;
  }
  .conact-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  .conact-arrow-button {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .conact-page-title {
    font-size: 24px;
  }
  .conact-contact-card {
    padding: 25px 15px;
  }
  .conact-card-logo {
    width: 250px;
  }
  .conact-card-content {
    font-size: 12px;
  }
}
/* Contact Page Styles */
.contact-main-content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-page-title-l {
  text-align: left;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0A2540;
  margin-bottom: 30px;
}

/* Contact Content Wrapper */
.contact-content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 10px;
}

/* Left Side */
.contact-content-left-side {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin-right: 40px;
}

.contact-page-text {
  font-size: 20px;
  color: #333;
  line-height: 2.1em;
  margin-bottom: 60px;
}

/* Consultation Box */
.contact-consultation-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact-consultation-box img {
  position: absolute;
  height: auto;
  display: block;
  bottom: -60px;
  right: -60px;
}

.contact-consultation-list {
  list-style: none;
}

.contact-consultation-list li {
  font-size: 20px;
  color: #333;
  padding: 10px 25px;
  position: relative;
  font-weight: bold;
}

.contact-consultation-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #0A2540;
  font-size: 20px;
}

/* Trial Section */
.contact-trial-section {
  text-align: left;
  margin-top: 60px;
}

.contact-trial-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.contact-trial-text a {
  color: #009def;
}

.contact-trial-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0A2540;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #0A2540;
  transition: all 0.3s;
}

.contact-trial-button::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
  transition: transform 0.3s;
}

.contact-trial-button:hover {
  background: #0A2540;
  color: #fff;
}

.contact-trial-button:hover::after {
  transform: translateX(5px);
}

/* Formrun */
.contact-formrun-wrapper {
  background: #fff;
  padding: 40px;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 500px;
  flex-shrink: 0;
}

/* Form Skeleton Loader */
.form-skeleton-container {
  position: relative;
}

.skeleton-loader-wrapper {
  padding: 20px;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.skeleton-title {
  height: 30px;
  width: 60%;
  margin-bottom: 30px;
}

.skeleton-form-group {
  margin-bottom: 25px;
}

.skeleton-label {
  height: 20px;
  width: 30%;
  margin-bottom: 10px;
}

.skeleton-input {
  height: 40px;
  width: 100%;
  margin-bottom: 10px;
}

.skeleton-input.half {
  width: 48%;
  display: inline-block;
  margin-right: 4%;
}

.skeleton-input.half:last-child {
  margin-right: 0;
}

.skeleton-textarea {
  height: 120px;
  width: 100%;
}

.skeleton-button {
  height: 45px;
  width: 200px;
  margin: 20px auto;
}

.formrun-embed {
  min-height: 400px;
}

@media (max-width: 968px) {
  .contact-consultation-box img {
    width: 150px;
  }
  .contact-main-content {
    margin: 100px auto;
    padding: 0 20px;
  }
  .contact-page-title-l {
    font-size: 28px;
  }
  .contact-formrun-wrapper {
    width: 100%;
    padding: 30px 20px;
  }
  .contact-page-text {
    font-size: 15px;
  }
  .contact-content-left-side {
    max-width: 800px;
    margin-right: 0;
  }
  .contact-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .contact-consultation-box {
    padding: 30px 25px;
  }
  .contact-consultation-list li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact-page-title-l {
    font-size: 24px;
  }
  .skeleton-input.half {
    width: 100%;
    margin-right: 0;
    display: block;
  }
}
.contact-main-content {
  max-width: 1200px;
  margin: 100px auto 180px;
  padding: 0 40px;
}

.contact-page-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #0A2540;
  margin-bottom: 30px;
}

.contact-page-description {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 60px;
}

.contact-card-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #007ED1;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-card-button:hover {
  color: #ffffff;
}

.contact-card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0A2540;
  transition: left 0.4s ease;
  z-index: -1;
}

.contact-card-button:hover::before {
  left: 0;
}

.contact-card-button:hover .contact-arrow-circle {
  transform: translateX(5px);
  border: none;
  background-color: #007ED1;
  color: #0A2540;
}

@media (max-width: 768px) {
  .contact-main-content {
    margin: 100px auto;
    padding: 0 20px;
  }
  .contact-page-title {
    font-size: 28px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-card {
    padding: 40px 30px;
  }
}
.case-detail {
  background-color: #FFFFFF;
  padding: 60px 0 80px;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  .case-detail {
    padding: 40px 0 60px;
  }
}

.case-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A2540;
  line-height: 1.6;
  margin: 0 0 48px;
}
@media (max-width: 768px) {
  .case-detail-title {
    font-size: 22px;
    margin-bottom: 32px;
  }
}

.case-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .case-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

.case-main-content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1024px) {
  .case-main-content {
    width: 100%;
    order: 2;
  }
}

.case-sidebar {
  width: 380px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .case-sidebar {
    width: 100%;
    order: 1;
  }
}

.company-card-sticky {
  position: sticky;
  top: 20px;
}
@media (max-width: 1024px) {
  .company-card-sticky {
    position: static;
  }
}

.company-card {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 24px;
}
@media (max-width: 1024px) {
  .company-card {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .company-card {
    padding: 24px 20px;
    margin-bottom: 32px;
  }
}
.company-card .company-card-logo {
  text-align: center;
  margin-bottom: 32px;
}
.company-card .company-card-logo img {
  max-width: 230px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company-card .company-card-logo {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .company-card .company-card-logo img {
    max-width: 150px;
  }
}
.company-card .company-card-info {
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .company-card .company-card-info {
    margin-bottom: 24px;
  }
}
.company-card .company-card-row {
  display: flex;
  align-items: baseline;
  padding: 0;
  margin-bottom: 20px;
  gap: 12px;
}
.company-card .company-card-row:last-child {
  margin-bottom: 0;
}
.company-card .company-card-row dt {
  font-weight: 600;
  color: #007ED1;
  font-size: 14px;
  margin-bottom: 0;
  flex-shrink: 0;
  min-width: 70px;
}
@media (max-width: 768px) {
  .company-card .company-card-row dt {
    font-size: 13px;
    margin-bottom: 0;
    min-width: 60px;
  }
}
.company-card .company-card-row dd {
  margin: 0;
  color: #0A2540;
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}
.company-card .company-card-row dd a {
  cursor: pointer;
}
.company-card .company-card-row dd a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .company-card .company-card-row dd {
    font-size: 14px;
  }
}
.company-card .company-card-tags {
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  .company-card .company-card-tags {
    padding-top: 20px;
  }
}
.company-card .company-card-tags .company-card-tags-title {
  font-weight: 600;
  color: #007ED1;
  font-size: 14px;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .company-card .company-card-tags .company-card-tags-title {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.company-card .company-card-tags .company-card-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.company-card .company-card-tags .company-card-tags-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #0A2540;
  margin-right: 1.5em;
}
.company-card .company-card-tags .company-card-tags-list li img {
  width: 18px;
}
@media (max-width: 768px) {
  .company-card .company-card-tags .company-card-tags-list li {
    font-size: 12px;
    padding: 5px 10px;
  }
  .company-card .company-card-tags .company-card-tags-list li img {
    width: 16px;
    height: 16px;
  }
}

.article-title {
  font-size: 24px;
  font-weight: 700;
  color: #0A2540;
  line-height: 1.6;
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.case-photo {
  margin: 0 0 20px;
}
.case-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.case-photo figcaption {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .case-photo figcaption {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .case-photo {
    margin-bottom: 32px;
  }
}

.case-points {
  margin-top: 90px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .case-points {
    margin-bottom: 40px;
  }
}

.case-points-inner {
  border: 3px solid #007ED1;
  border-radius: 16px;
  padding: 50px 40px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  background-color: #FFFFFF;
}
@media (max-width: 1024px) {
  .case-points-inner {
    padding: 55px 32px 40px;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .case-points-inner {
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 0;
  }
}

.case-point-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 0;
}
@media (max-width: 768px) {
  .case-point-item {
    width: 100%;
    padding: 60px 0 40px;
  }
  .case-point-item:not(:last-child) {
    border-bottom: 2px dotted #007ED1;
  }
  .case-point-item:first-child {
    padding-top: 0;
  }
}

.case-point-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.case-point-circle span {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .case-point-circle {
    width: 100px;
    height: 100px;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 24px;
  }
  .case-point-circle span {
    font-size: 18px;
  }
}

.case-point-challenge {
  background-color: #9CA3AF;
}

.case-point-solution {
  background-color: #7DD3FC;
}

.case-point-result {
  background-color: #007ED1;
}

.case-point-divider {
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, #007ED1 0, #007ED1 5px, transparent 5px, transparent 10px);
  align-self: stretch;
  margin-top: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .case-point-divider {
    display: none;
  }
}

.case-point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .case-point-list {
    margin-top: 24px;
  }
}
.case-point-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.9;
  color: #0A2540;
  margin-bottom: 14px;
  text-align: left;
}
.case-point-list li:last-child {
  margin-bottom: 0;
}
.case-point-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 0.6em;
  top: 0.65em;
  color: #007ED1;
}
@media (max-width: 768px) {
  .case-point-list li {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
  }
}

.case-point-item:has(.case-point-challenge) .case-point-list li::before {
  color: #9CA3AF;
}

.case-point-item:has(.case-point-solution) .case-point-list li::before {
  color: #7DD3FC;
}

.case-point-item:has(.case-point-result) .case-point-list li::before {
  color: #007ED1;
}

.case-interview {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .case-interview {
    margin-bottom: 40px;
  }
}

.interview-section {
  margin-bottom: 60px;
}
.interview-section:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .interview-section {
    margin-bottom: 40px;
  }
}

.interview-heading {
  border-left: 6px solid #007ED1;
  font-size: 22px;
  font-weight: 700;
  color: #007ED1;
  line-height: 1.6;
  margin-top: 75px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .interview-heading {
    font-size: 18px;
    margin-bottom: 32px;
    padding-bottom: 12px;
  }
}

.qa-block {
  margin-bottom: 40px;
}
.qa-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .qa-block {
    margin-bottom: 32px;
  }
}
.qa-block .question {
  font-size: 18px;
  font-weight: 700;
  color: #0A2540;
  line-height: 1.7;
  margin: 0 0 20px;
  position: relative;
}
.qa-block .question::before {
  content: "――";
  letter-spacing: -0.2em;
  margin-right: 0.6em;
}
@media (max-width: 768px) {
  .qa-block .question {
    font-size: 15px;
    padding-left: 28px;
  }
  .qa-block .question::before {
    width: 22px;
    height: 22px;
  }
}
.qa-block .answer {
  background-color: #010202;
  border-radius: 10px;
  padding: 30px 30px;
  margin: 40px 0;
  display: block;
}
.qa-block .answer:last-child {
  margin-bottom: 0;
}
.qa-block .answer .answer-name {
  font-weight: 700;
  color: #007ED1;
  font-size: 15px;
  margin: 0 0 8px;
}
@media (max-width: 768px) {
  .qa-block .answer .answer-name {
    font-size: 14px;
  }
}
.qa-block .answer p {
  font-size: 15px;
  line-height: 1.9;
  color: #0A2540;
  margin: 0 0 16px;
}
.qa-block .answer p:last-child {
  margin-bottom: 0;
}
.qa-block .answer p a {
  color: #007ED1;
  text-decoration: none;
  transition: opacity 0.2s;
}
.qa-block .answer p a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .qa-block .answer p {
    font-size: 14px;
    line-height: 1.8;
  }
}

.interview-conclusion {
  font-size: 15px;
  line-height: 1.9;
  color: #0A2540;
  margin: 40px 0 16px;
}
@media (max-width: 768px) {
  .interview-conclusion {
    font-size: 14px;
    margin: 32px 0 12px;
  }
}

.interview-note {
  font-size: 12px;
  color: #666;
  text-align: right;
}

.case-download {
  text-align: center;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .case-download {
    margin: 40px 0;
  }
}
.case-download .case-download-btn {
  font-size: 0.875rem;
  padding: 0.625rem 1.625rem;
  display: inline-block;
  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;
}
.case-download .case-download-btn:hover {
  opacity: 0.8;
  cursor: pointer;
}
@media (max-width: 768px) {
  .case-download .case-download-btn {
    font-size: 15px;
    padding: 14px 32px;
  }
}

.case-contact {
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .case-contact {
    padding: 40px 24px;
    margin-top: 40px;
  }
}
.case-contact .case-contact-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A2540;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .case-contact .case-contact-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.case-contact .case-contact-text {
  font-size: 16px;
  line-height: 1.8;
  color: #0A2540;
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .case-contact .case-contact-text {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.case-contact .case-contact-btn {
  display: inline-block;
  background-color: #007ED1;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 50px;
  transition: all 0.3s;
}
.case-contact .case-contact-btn:hover {
  background-color: rgb(0, 95.2535885167, 158);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 126, 209, 0.3);
}
@media (max-width: 768px) {
  .case-contact .case-contact-btn {
    font-size: 15px;
    padding: 16px 40px;
  }
}

.manual-page {
  background-color: #FFFFFF;
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .manual-page {
    padding: 0 0 60px;
  }
}

.manual-section {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .manual-section {
    margin-bottom: 40px;
  }
}
.manual-section:last-child {
  margin-bottom: 0;
}
.manual-section .manual-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .manual-section .manual-section-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}

.manual-table {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .manual-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .manual-table::-webkit-scrollbar {
    display: none;
  }
}
.manual-table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .manual-table table {
    min-width: 600px;
  }
}
.manual-table thead {
  background-color: #F9FAFB;
}
.manual-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  .manual-table thead th {
    padding: 12px 16px;
    font-size: 0.8125rem;
  }
}
.manual-table thead th:first-child {
  width: 45%;
}
.manual-table thead th:nth-child(2) {
  width: 20%;
}
.manual-table thead th:nth-child(3) {
  width: 18%;
}
.manual-table thead th:nth-child(4) {
  width: 17%;
}
.manual-table tbody tr {
  border-bottom: 1px solid #E5E7EB;
  transition: background-color 0.2s ease;
}
.manual-table tbody tr:last-child {
  border-bottom: none;
}
.manual-table tbody tr:hover {
  background-color: #F9FAFB;
}
.manual-table tbody td {
  padding: 20px 24px;
  font-size: 0.9375rem;
  color: #0A2540;
}
@media (max-width: 768px) {
  .manual-table tbody td {
    padding: 16px;
    font-size: 0.875rem;
  }
}
.manual-table .manual-name-cell a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #007ED1;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.manual-table .manual-name-cell a:hover {
  opacity: 0.7;
}
.manual-table .manual-name-cell a:hover .manual-name-text {
  text-decoration: underline;
}
.manual-table .manual-name-cell a .material-symbols-outlined {
  font-size: 24px;
  color: #007ED1;
  flex-shrink: 0;
}

.seminar-body {
  background-color: #F9FAFB;
}

.seminar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 40px 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.seminar-left-column {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.seminar-right-column {
  flex: 0 0 350px;
  position: sticky;
  top: 90px;
  align-self: flex-start;
  text-align: center;
}

.seminar-content-section {
  width: 100%;
}

.seminar-banner-section {
  margin-bottom: 40px;
}

.seminar-banner-image {
  width: 100%;
}
.seminar-banner-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seminar-event-info {
  position: relative;
  background: white;
  text-align: center;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.seminar-event-label {
  background-color: #ffffff;
  border: 2px solid #007ED1;
  font-weight: bold;
  text-align: center;
  color: #007ED1;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.seminar-event-date {
  font-size: 24px;
  font-weight: bold;
  color: #0066cc;
  margin-bottom: 8px;
}
.seminar-event-date span {
  font-size: 120%;
}

.seminar-event-time {
  font-size: 24px;
  color: #0066cc;
  margin-bottom: 20px;
}

.seminar-event-details {
  border-top: 1px solid #f0f0f0;
  padding: 20px 10px;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}
.seminar-event-details table {
  width: 100%;
  border-collapse: collapse;
}
.seminar-event-details td {
  padding: 8px 0;
}
.seminar-event-details td:first-child {
  font-weight: bold;
  width: 110px;
  color: #333;
}

.seminar-title-section {
  margin-bottom: 30px;
  font-size: 18px;
  color: #0066cc;
}
.seminar-title-section h1 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.seminar-title-section .seminar-datetime {
  color: #0066cc;
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: bold;
}
.seminar-title-section .seminar-datetime span {
  color: #0066cc;
  font-size: 16px;
  font-weight: normal;
}

.seminar-description {
  border-radius: 8px;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 1.8;
}
.seminar-description h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.seminar-section-title {
  position: relative;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 0 10px 10px 10px;
  padding-bottom: 20px;
  color: #333;
  border-bottom: none;
}
.seminar-section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 10%;
  border-bottom: 2px solid #0066cc;
}

.seminar-features-list,
.seminar-target-audience {
  background: #F9FAFB;
  padding: 25px 25px 25px 45px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.seminar-features-list ul {
  list-style: none;
  padding: 0;
}
.seminar-features-list li {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}
.seminar-features-list li:before {
  content: "●";
  color: #0066cc;
  position: absolute;
  left: 0;
}

.seminar-target-audience ul {
  list-style: none;
  padding: 0;
}
.seminar-target-audience li {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  font-weight: bold;
  padding-left: 20px;
}
.seminar-target-audience li:before {
  content: "■";
  color: #0066cc;
  position: absolute;
  left: 0;
}

.seminar-account-btn {
  background: white;
  color: #0066cc;
  border: 2px solid #0066cc;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  margin-top: 15px;
}
.seminar-account-btn:hover {
  background-color: #f0f8ff;
}

.seminar-btm {
  margin: 30px auto;
}

.seminar-end {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.seminar-end-text {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  padding: 20px 40px;
}

@media (max-width: 968px) {
  .seminar-container {
    flex-direction: column;
  }
  .seminar-left-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .seminar-event-details {
    border-top: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 10px 20px 10px;
    margin-bottom: 40px;
  }
  .seminar-title-section {
    margin-bottom: 0px;
  }
  .seminar-title-section .seminar-datetime {
    margin-bottom: 20px;
  }
  .seminar-features-list,
  .seminar-target-audience {
    background: #F9FAFB;
    padding: 18px 18px 18px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  .seminar-right-column {
    flex: 1 1 100%;
    position: static;
  }
  .seminar-event-info {
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
  }
  .seminar-event-label,
  .seminar-event-date,
  .seminar-event-time {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */