/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --color-primary: #0060cd;
  --color-secondary: #dd51cd;
  --color-accent: #ffd700;
  --color-white: #ffffff;
  --color-black: #0a0a0a;
  --color-gray-50: #fafbff;
  --color-gray-100: #f5f7fa;
  --color-gray-200: #e5e7eb;
  --color-gray-600: #6b7280;
  --color-gray-900: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0060cd 0%, #8b4ec3 50%, #dd51cd 100%);
  --gradient-cta: linear-gradient(to right, #2563eb, #7c3aed, #db2777);
  --gradient-hero: linear-gradient(180deg, #ffffff 0%, #fafbff 50%, #ffffff 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-gray-900);
  background: var(--color-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

main {
  width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

.extra-bold {
  font-weight: 900;
  -webkit-text-stroke: 1.5px currentColor;
  paint-order: stroke fill;
  letter-spacing: -0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #dd51cd;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(221, 81, 205, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #dd51cd;
  color: var(--color-primary);
}

.btn-outline:hover {
  background: #dd51cd;
  color: #fff;
}

.btn-gradient {
  background: #0060cd;
  color: var(--color-white);
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 96, 205, 0.4);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-pink {
  background-color: #fff;
  color: #dd51cd;
  border: 2px solid #dd51cd !important;
}

.btn-pink:hover {
  background-color: #dd51cd;
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline-bule {
  background-color: #fff;
  color: #0060cd;
  border: 2px solid #0060cd !important;
}

.btn-outline-bule:hover {
  background-color: #0060cd;
  color: #fff;
}

.btn-full {
  width: 100%;
}

.btn.seminar-outline {
  background-color: #fff;
  border: 2px solid #dd51cd;
  color: #dd51cd;
  font-size: 1rem;
}

.btn.seminar-outline:hover {
  background-color: #dd51cd;
  color: #fff;
}

.seminar-banner {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.seminar-banner-img {
  width: 90%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: auto;
}

/* Announcement Banner */
.announcement-banner {
  background: var(--gradient-primary);
  padding: 0.75rem 1rem;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 0.875rem;
}

.badge-new {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-200);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo img {
  height: 2rem;
  width: auto;
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
}

.desktop-nav a {
  font-size: 1rem;
  /* font-weight: bold; */
  color: var(--color-gray-600);
  text-decoration: none;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: none;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--color-gray-200);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-600);
  text-decoration: none;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-200);
}

/* Hero Section */
.hero-section {
  background: var(--color-white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.top-mv_content h1 {
  line-height: 1.4;
}

/* Hero Section */

.top-mv_grid {
  display: grid;
  gap: 3rem;
  /* align-items: center; */
  align-items: start;
}

.top-mv_badge {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgb(0 96 205 / 42%);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin: 1.5rem 0;
}

.text-primary {
  color: var(--color-primary);
}

.business-scene h2 {
  line-height: 1.8;
  color: #0060cd;
}

.item-icon-pink {
  background-color: #dd51cd1f;
  width: 64px;
  height: 64px;
  border-radius: 10vh;
}

.item-icon-blue {
  background-color: #0060cd24;
  width: 64px;
  height: 64px;
  border-radius: 10vh;
}

.txt-wh {
  color: #fff;
}

.text-secondary {
  color: var(--color-secondary);
}

.ttl_line_y {
  background: linear-gradient(transparent 70%, #ffd700 70%);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  margin-top: 1rem;
  line-height: 1.4;
}

.font-bold {
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.play-icon {
  margin-right: 0.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.stat-icon {
  width: 4rem;
  height: 4rem;
  margin: auto;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.stat-number::after {
  content: "%";
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.hero-media {
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(0, 96, 205, 0.1), rgba(221, 81, 205, 0.1));
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 96, 205, 0.08);
}

.play-button {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-button:hover {
  transform: scale(1.1);
}

.video-label {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Section Styles */
/* section {
  padding: 5rem 0;
} */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: .3em;
}

.case-studies-section .section-header h2 {
  margin-bottom: .3em;
  position: relative;
  padding: .5rem 0;
  background: linear-gradient(90deg, #0060dc 0% 50%, #dd51cd 50%);
  background-repeat: no-repeat;
  background-size: 4rem 0.3rem;
  background-position: bottom;
}

.seminar-section .section-header h2 {
  font-weight: 700;
  margin-bottom: .5em;
}


.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-section .section-title,
.news-section .section-title {
  font-weight: 700;
}

.section-description {
  font-size: 1.25rem;
  color: #fff;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 500;
}

.case-studies-section .section-description,
.news-section .section-description {
  color: #111827;
}

.pricing-section .section-description,
.seminar-section .section-description {
  color: #0060cd;
}

.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 1rem;
  background: rgba(221, 81, 205, 0.3);
  border-radius: 0.25rem;
  z-index: -1;
}

/* Features Section */
.features-section {
  /* background: linear-gradient(to bottom right, #cffafe, #dbeafe); */
  padding: 6rem 3rem 4rem;
  background-image: url(../img/body_bg01.jpg);
  color: #fff;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon.bg-primary {
  background: rgba(0, 96, 205, 0.1);
  color: var(--color-primary);
}

.feature-icon.bg-secondary {
  background: rgba(221, 81, 205, 0.1);
  color: var(--color-secondary);
}

.feature-card h3 {
  font-size: clamp(18px, 3vw, 22px);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-card p {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
  /* background: linear-gradient(to bottom right, #dbeafe, #e9d5ff, #fce7f3); */
  padding: 3rem;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.solution-card {
  background: var(--color-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.solution-content {
  padding: 3rem;
}

img.inline-logo {
  width: 300px;
}

.solution-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-icon.bg-primary {
  background: rgba(0, 96, 205, 0.1);
  color: var(--color-primary);
}

.solution-icon.bg-secondary {
  background: rgba(221, 81, 205, 0.1);
  color: var(--color-secondary);
}

.solution-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.solution-card p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.benefit-list {
  list-style: none;
  margin: 1.5rem 0;
}

.benefit-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.benefit-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.solution-image {
  height: 25rem;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-solutions_img img {
  top: 50%;
  transform: translateY(-50%);
}

/* Case Studies Section */
.case-studies-section {
  background: rgba(0, 96, 205, .22);
  padding: 6rem 2rem;
}

.case-studies-grid {
  display: grid;
  gap: 1.5rem;
}

.case-study-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.case-study-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 96, 205, 0.1);
}

.case-study-image {
  height: 14rem;
  overflow: hidden;
  position: relative;
  padding: 2rem .5em 0;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-content h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  /* color: #0060cd; */
  font-weight: 500;
  min-height: 2.5em;
}

.industry {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.result-badge {
  background: rgba(0, 96, 205, 0.05);
  border: 1px solid rgba(0, 96, 205, 0.2);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

blockquote {
  border-left: 3px solid var(--color-secondary);
  padding-left: 1rem;
  margin: 1rem 0;
}

blockquote p {
  font-style: italic;
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

cite {
  font-size: 0.75rem;
  color: var(--color-gray-600);
  font-style: normal;
}

/* Pricing Section */
.pricing-section {
  background: var(--color-white);
  padding: 6rem 3rem;
  background-image: url(../img/top/top-body_02.jpg);
  /* background-image: url(../img/top/top_seminar_bg.jpg); */
  color: #0060dc;
}

.pricing-card-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-card-gradient {
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  text-align: center;
  /* color: var(--color-white); */
  border: 3px solid #ffd700;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dd51cd;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #fff;
}

.pricing-headline {
  font-size: 2.5rem;
  margin-bottom: .rem;
  font-weight: 700;
}

.pricing-details {
  margin: 2.5rem 0;
}

.pricing-label {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
}

.price-id,
.price-value {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  /* color: var(--color-accent); */
  color: #dd51cd;
  /* text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); */
}

.price-period {
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 700;
}

.pricing-tagline {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  margin-top: 1rem;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.pricing-note {
  font-size: 1.125rem;
  opacity: 0.8;
}

@media screen and (max-width: 600px) {
  .features-section {
    padding: 3rem 0;
  }
}

/* News Section */
.news-section {
  background: var(--color-white);
  padding: 6rem;
}

.news-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid #0060dc;
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(221, 81, 205, .3) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  color: #dd51cd;
}

.news-item:hover {
  /* border-color: var(--color-primary); */
  /* box-shadow: 0 8px 24px rgba(0, 96, 205, 0.1); */
  background-position: -100% 0;
  color: #fff;
}

.news-date {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-600);
  min-width: 6rem;
}

.news-category {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}

.category-column {
  background: rgba(0, 96, 205, 0.1);
  color: var(--color-primary);
  border-color: rgba(0, 96, 205, 0.3);
}

.category-news {
  background: rgba(255, 215, 0, 0.1);
  color: #b8860b;
  border-color: rgba(255, 215, 0, 0.3);
}

.news-content {
  flex: 1;
  min-width: 0;
}

.news-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: #0060cd;
  font-weight: 700;
}

.news-content p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.news-arrow {
  color: var(--color-gray-600);
  transition: all 0.3s;
}

.news-item:hover .news-arrow {
  color: var(--color-primary);
  transform: translateX(0.25rem);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Seminar Section */
.seminar-section {
  padding: 6rem 2rem;
  background-color: rgba(221, 81, 205, .1);
  background-image: url(../img/top/seminar-bk_img.png);
  object-fit: cover;
}

.seminar-grid {
  display: grid;
  gap: 0;
}

.seminar-active h3,
.seminar-archives h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.seminar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.seminar-type {
  background: rgba(0, 96, 205, 0.1);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.seminar-status {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.seminar-card-featured h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.seminar-card-featured p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.seminar-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}



.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.archive-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.archive-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 96, 205, 0.1);
}

.archive-item_img {
  width: 40%;
  object-fit: cover;
}

.archive-date {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 0.5rem;
}

.archive-item h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.archive-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  width: 2rem;
  height: 2rem;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cta-feature p {
  color: var(--color-white);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: 4rem 2rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-company {
  grid-column: span 2;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 2.5rem;
  width: auto;
}

.footer-company p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-submenu {
  margin-top: .5em;
}

.footer-submenu>li {
  margin-bottom: .5em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-pascal {
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pascal-header {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pascal-logo {
  height: 4rem;
  width: auto;
}

.pascal-name {
  font-size: 1.25rem;
  font-weight: 500;
}

.office-grid {
  display: grid;
  gap: 2rem;
}

.office-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.office-details {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.office-details p {
  margin-bottom: 0.5rem;
}

.office-map {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-btn a {
  min-width: 230px;
  color: #dd51cd;
  background: #fff;
  transition: all 0.2s;
}

.footer-trial-btn a {
  transition: all 0.2s;
}

.footer-contact-btn a:hover {
  background-color: #fdf2f8;
  color: #dd51cd;
}

.footer-trial-btn a:hover {
  color: #fff;
  background-color: #e47cd8;
  border-color: #e47cd8;
  transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 1210px) {
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .top-mv_grid {
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: 2fr 1fr;
  }

  .top-mv_content,
  .top-mv_media {
    display: block;
  }

  .top-mv_media {
    max-width: 700px;
    margin: auto;
  }

  .top-mv_content {
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seminar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .pascal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-scene h2 {
    line-height: 1.2;
    margin-bottom: 2rem !important;
  }

  .business-scene>p {
    text-align: left;
  }

  .pricing-tagline {
    text-align: left;
  }

  .pricing-note {
    text-align: left;
  }

  .case-studies-section .section-description,
  .news-section .section-description {
    text-align: left;
  }

  .pricing-section .section-description,
  .seminar-section .section-description {
    text-align: left;
  }

  .top-solutions_img {
    min-height: 300px !important;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  #features .section-header h2 {
    margin-bottom: 1em;
  }

  .news-arrow {
    margin-left: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  #seminar .container {
    max-width: 1100px;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3rem;
  }
}



@media (max-width: 1023px) {
  .seminar-grid {
    grid-template-columns: 1fr;
  }

  .seminar-grid {
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-company {
    grid-column: auto;
  }

  .footer-grid {
    gap: 2rem;
  }

  .office-map {
    display: none;
  }

  .pricing-card-gradient {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    gap: .5rem;
  }

  .video-placeholder {
    padding: 1rem;
  }
}


.btn-seminar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 0.375rem;
  padding: .6rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary-seminar {
  background-color: #dd51cd;
  color: white;
  border: 2px solid #dd51cd;
}

.gradient-border {
  /* background: linear-gradient(90deg, #0060cd, #dd51cd); */
  padding: 3px;
  border-radius: 16px;
  display: inline-block;
  width: 90%;
  margin-bottom: 3em;
}

.gradient-border>p {
  padding: 0.5em 1em;
}

.seminar-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  width: 100%;
}

.btn-seminar {
  display: block;
  width: 100%;
  background: #dd51cd;
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

.btn-seminar:hover {
  background: #0060cd;
}

.btn-topmv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* =============================
トップページ
============================= */
/* mv */
section.top-mv {
  padding: 2rem;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.top-mv_box {
  padding-top: 3em;
  height: 100%;
  position: relative;
}

.top-mv_box .fv-object1 {
  width: 23%;
  aspect-ratio: 433 / 316;
  position: absolute;
  left: 6%;
  bottom: 5px;
}

.top-mv_box .fv-object2 {
  width: 220px;
  aspect-ratio: 183 / 188;
  position: absolute;
  right: 0%;
  bottom: -70px;
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    line-height: 1.2 !important;
  }
}

@media (max-width: 1500px) {
  .top-mv_box .fv-object2 {
    width: 170px;
    bottom: -55px;
  }
}

.seminar-section h2 .highlight-ttl {
  background: linear-gradient(transparent 60%, #ffd700 60%);

}

.btn-case-studies {
  background-color: #fff;
  border: 2px solid #0060cd !important;
  color: #0060cd;
  font-size: 1rem !important;
}

.btn-case-studies:hover {
  background: #0060cd;
  color: #fff;
}

.feature-icon img {
  width: 50px;
  height: 50px !important;
}


/* フォーム */
.trial-formbox {
  padding: 2em 0;
  background-color: #dd51cd29;
}

.trial-formbox h3.trial-form_ttl {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0060cd;
  padding-bottom: .4em;
  position: relative;
  background: linear-gradient(90deg, #dd51cd 0% 50%, #0060cd 50%);
  background-repeat: no-repeat;
  background-size: 4rem .2rem;
  background-position: bottom;
  margin-bottom: 1em;
}

.btn-topmv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.feature-card_flx {
  display: flex;
  align-items: center;
  gap: 8px;
}


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

@media screen and (max-width: 767px) {
  .top-mv_box {
    padding: 3rem 1rem 0;
  }

  .solutions-section {
    padding: 3rem 0;
  }

  section.top-mv {
    padding: 0;
  }

  .case-studies-section {
    padding: 3rem 0 4rem;
  }

  .pricing-section {
    padding: 3rem 0;
  }

  .news-section {
    padding: 3rem 0;
  }

  .seminar-section {
    padding: 3rem 0 4rem;
  }

  .top-mv_content h1 {
    margin-bottom: .5em;
  }

  .fv-object1,
  .fv-object2 {
    display: none;
  }

  .seminar-section {
    background-position: center;
  }

  .seminar-grid {
    gap: 4rem;
  }

}

@media screen and (max-width: 500px) {
  .top-mv_content h1 {
    font-size: 32px;
  }

  .top-mv_box {
    padding: 1.5rem 1rem;
  }
}

/* =============================
トライアル申込・資料請求
============================= */
.trial-form label {
  display: block;
  margin-bottom: 6px;
  /* font-weight: bold; */
  font-size: .9em;
}

.trial-form .trial-form_item.require::after {
  content: "*";
  display: block;
  color: red;
}

.trial-form_item {
  padding: 0 1.6em;
  display: flex;
  gap: 1em;
  width: 100%;
}

.trial-form_item .form-left {
  width: 30%;
}

.trial-form_item .form-right {
  width: 70%;
}

.trial-form_item.no-flex {
  display: block;
}

.trial-form input[type="text"],
.trial-form input[type="tel"],
.trial-form input[type="email"],
.trial-form select,
.trial-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
}

.trial-form textarea {
  height: 120px;
}

.trial-form input[type="radio"],
.trial-form input[type="checkbox"] {
  margin-right: 8px;
}

.trial-form .privacy,
.trial-form .mail-optin {
  margin-bottom: 15px;
  font-size: 13px;
}

.trial-form input[type="submit"] {
  background-color: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
  padding: .4em 4em;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  margin: auto;
  font-weight: 700;
}

.trial-form input[type="submit"]:hover {
  background-color: #e91e63;
  color: #fff;
}

.agree-box {
  /* margin-top: 52px; */
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  /* justify-content: center; */
  padding: 0 1.6em;
  font-size: 1rem;
}

.agree-box p a {
  color: #0068B7;
  display: inline-flex;
  align-items: center;
}

.agree-box p a img {
  margin: 0 3px;
}

.agree-box p a::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/f-agree-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 4px;
}

.fin-check-wrapper {
  display: flex;
  justify-content: center;
}

.fin-check-stc {
  margin-left: 2rem;
  font-size: .9em;
  margin-top: -10px;
}

.fin-check {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.fin-check label {
  display: flex;
  align-items: flex-start;
}

.fin-check span {
  line-height: 1.7;
}

.fin-check label input {
  margin-right: 12px;
  margin-top: 4px;
  transform: scale(1.5);
}

.trial-form_btn {
  padding: 0 1.6em;
  text-align: center;
}

.require label::after {
  content: "*";
  color: red;
  margin-left: 4px;
}

@media screen and (max-width: 900px) {
  .seminar-active {
    text-align: center;
  }

  .seminar-archives h3 {
    text-align: center;
  }

  .archive-item {
    flex-direction: column;
  }

  .archive-item_img {
    width: 100%;
  }

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

}

@media (min-width: 1024px) {
  .features-section .container {
    max-width: 1200px !important;
  }
}

/* =================
トピックス一覧
==================== */
.topics-thumb-wrapper {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 0 5px #ccc;
}

.topics-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}

.topics-thumb.loaded {
  opacity: 1;
}

.topics-item {
  border-bottom: 1px solid #e5e7eb;
}

.topics-item:last-of-type {
  border-bottom: 1px solid #e5e7eb !important;
}

.topics-box {
  padding: 2rem 0;
}

.prose {
  line-height: 1.8;
}

.prose img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.prose p {
  margin-bottom: 1.2rem;
}

.topics-single .news-category {
  margin-left: 0.5rem;
}

.topics-singlebox .topics-single_date {
  font-size: .9rem;
}

.topics-category-current {
  background-color: #0060cd;
  border: 1px solid #0060cd;
}

/* =================
トピックス詳細
==================== */
/* .topics-single_bread {
  margin: 1rem;
  padding-left: 2rem;
} */

.topics-singlebox {
  border-width: 2px;
  border-color: #E5E5E5;
  border-style: solid;
  padding: 2rem;
}

.single-topics-thumbnail {
  box-shadow: 0 0 5px #ccc;
}

@media (min-width: 768px) {
  .topics-item:hover {
    background: rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
  }
}

@media (max-width: 767px) {
  .topics-item {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .topics-singlebox {
    padding: 1rem;
  }

}

/* =============================
ソリューション
============================= */

.solution-ttl {
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  font-size: clamp(35px, 3.5vw, 50px) !important;
}

.ttl-small {
  font-size: 2rem;
}

#solution-scene {
  padding: 4rem 0 6rem;
  position: relative;
  box-sizing: border-box;
  color: #0060cd;
}

.solution-scene_box {
  padding: 2.5em !important;
  border: 2px solid #0060dc;
  border-radius: 20px;
}

.solution-case-section {
  background: #dd51cd29;
  padding: 4rem 0;
}

.solution-case-section .section-header h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  display: inline-block;
  position: relative;
}

.solution-case-section .section-header h2::before {
  content: "";
  background-image: url(../img/seminar/featured-title-deco-l.png);
  height: 70%;
  aspect-ratio: 65 / 109;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: -2em;
  bottom: 0;
}

.solution-case-section .section-header h2::after {
  content: "";
  background-image: url(../img/seminar/featured-title-deco-r.png);
  height: 70%;
  aspect-ratio: 65 / 109;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: -2em;
  bottom: 0;
}

.solution-scene_box .pricing-cta>a>button {
  font-size: clamp(16px, 3vw, 20px) !important;
  padding: 0.5em 2em;
}

.solution-mv .top-mv-desc span {
  white-space: nowrap;
}

@media (max-width: 767px) {
  #solution-scene .feature-header {
    margin-bottom: 2rem;
  }

  .solution-case-section .section-header h2 {
    width: 82%;
  }

  .solution-scene_box .section-cta {
    margin: 0;
  }

  .solution-mv .top-mv-desc span {
    white-space: normal;
  }

  .solution-scene_ttl {
    line-height: 1.7 !important;
  }

  #solution-scene {
    padding: 2rem 0 4rem;
  }

  .solution-scene_box {
    padding: 1em !important;
  }
}


/* recapcha */
.grecaptcha-badge {
  z-index: 9999;
}