@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #FF6B35;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transition: all 0.1s ease;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.section-title {
  font-size: 64px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  body {
    cursor: default;
  }
  .cursor,
  .cursor-follower {
    display: none;
  }
  .section-title {
    font-size: 36px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 1s ease;
}
.loader.loaded {
  opacity: 0;
  pointer-events: none;
}
.loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.02) 50%, transparent 52%);
  background-size: 100% 4px;
  pointer-events: none;
  animation: scanlines 8s linear infinite;
  z-index: 1;
}
.loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.loader-content {
  position: relative;
  z-index: 2;
  animation: tvStatic 2s infinite;
}

.loader-text {
  font-size: 72px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
  position: relative;
  animation: crtFlicker 0.15s infinite alternate;
}
.loader-text::before, .loader-text::after {
  content: "YAMATO";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loader-text::before {
  color: #00ffff;
  animation: glitchNoise1 0.3s infinite linear;
  z-index: -1;
  opacity: 0.8;
}
.loader-text::after {
  color: #ff00ff;
  animation: glitchNoise2 0.3s infinite linear reverse;
  z-index: -2;
  opacity: 0.8;
}

@keyframes crtFlicker {
  0% {
    opacity: 1;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    opacity: 0.95;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
  }
}
@keyframes glitchNoise1 {
  0% {
    transform: translate(0);
    clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
  }
  20% {
    transform: translate(2px, -1px);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  40% {
    transform: translate(1px, -2px);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  60% {
    transform: translate(2px, 0);
    clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
  }
  80% {
    transform: translate(-1px, 1px);
    clip-path: polygon(0 5%, 100% 5%, 100% 15%, 0 15%);
  }
  100% {
    transform: translate(0);
    clip-path: polygon(0 90%, 100% 90%, 100% 100%, 0 100%);
  }
}
@keyframes glitchNoise2 {
  0% {
    transform: translate(0);
    clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
  }
  30% {
    transform: translate(-2px, 2px);
    clip-path: polygon(0 65%, 100% 65%, 100% 75%, 0 75%);
  }
  60% {
    transform: translate(-1px, 0);
    clip-path: polygon(0 35%, 100% 35%, 100% 45%, 0 45%);
  }
  90% {
    transform: translate(-2px, -1px);
    clip-path: polygon(0 0%, 100% 0%, 100% 10%, 0 10%);
  }
  100% {
    transform: translate(0);
    clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%);
  }
}
@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes tvStatic {
  0%, 100% {
    filter: brightness(1);
  }
  10% {
    filter: brightness(1.1) contrast(1.2);
  }
  20% {
    filter: brightness(0.95) contrast(1);
  }
  50% {
    filter: brightness(1.02) contrast(1.05);
  }
  70% {
    filter: brightness(1.08) contrast(1.15);
  }
  90% {
    filter: brightness(0.94) contrast(1.1);
  }
}
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 50px;
  mix-blend-mode: difference;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  mix-blend-mode: normal;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #FFFFFF;
  text-decoration: none;
}
.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-menu a .menu-item-en {
  font-size: 10px;
  opacity: 0.7;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: width 0.3s ease;
}
.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 9px;
}
.menu-toggle span:nth-child(3) {
  bottom: 0;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active .menu-bg-gradient {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active .mobile-menu-item {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}
.mobile-menu.active .mobile-menu-item:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-menu-item:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-menu-item:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-menu-item:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-menu.active .mobile-menu-item:nth-child(5) {
  transition-delay: 0.5s;
}
.mobile-menu.active .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.menu-bg-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  animation: menuBgRotate 20s linear infinite;
  pointer-events: none;
}

@keyframes menuBgRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.menu-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(255, 217, 61, 0.2) 50%, rgba(255, 107, 53, 0.2) 100%);
  filter: blur(100px);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease 0.3s;
}

.mobile-menu-container {
  position: relative;
  z-index: 1;
  padding: 100px 50px 50px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.mobile-menu-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu-item {
  margin: 20px 0;
  opacity: 0;
  transform: translateX(-50px) rotateY(-15deg);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mobile-menu-item-title {
  display: flex;
  flex-direction: column;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}
.mobile-menu-link span {
  position: relative;
  z-index: 2;
}
.mobile-menu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
  transition: left 0.5s ease;
}
.mobile-menu-link:hover::before {
  left: 100%;
}
.mobile-menu-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-link:hover span {
  background: linear-gradient(90deg, #FF6B35, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobile-menu-link:hover .menu-item-number {
  color: rgba(255, 107, 53, 0.1);
  transform: translate(-10%, -10%) scale(1.1);
}

.menu-item-number {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
  transition: all 0.3s ease;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.5s;
}

.menu-contact-info {
  margin-bottom: 30px;
}

.menu-contact-title {
  color: #4ECDC4;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.menu-contact-tel {
  display: block;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.menu-contact-tel:hover {
  color: #FF6B35;
}

.menu-contact-hours {
  color: #888;
  font-size: 14px;
}

.menu-social-links {
  display: flex;
  gap: 20px;
}

.menu-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-social-link:hover {
  background: #FF6B35;
  border-color: #FF6B35;
  transform: scale(1.1) rotate(360deg);
}

@media (max-width: 768px) {
  .nav {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu-container {
    padding: 80px 16px 30px;
  }
  .mobile-menu-link {
    font-size: 24px;
  }
  .menu-item-number {
    font-size: 60px;
  }
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./../../assets/img/top/hero.jpg) no-repeat center center/cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.7) 0%, rgba(78, 205, 196, 0.7) 50%, rgba(255, 217, 61, 0.7) 100%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
  letter-spacing: -3px;
  transform: perspective(1000px) rotateY(-5deg);
  animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
  0%, 100% {
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(5deg) translateY(-20px);
  }
}
.hero-subtitle {
  font-size: 24px;
  margin-bottom: 50px;
  opacity: 0.9;
}

.hero-cta {
  display: inline-block;
  padding: 20px 60px;
  background: #FFFFFF;
  color: #2C3E50;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
  transition: left 0.5s ease;
}
.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.hero-cta:hover::before {
  left: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: #FFFFFF;
  font-size: 24px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-cta {
    padding: 15px 40px;
  }
}
.section-diagonal {
  position: relative;
  padding: 150px 0;
  background: #FFFFFF;
  margin-top: -100px;
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
}

.features {
  padding: 100px 50px;
  background: #FFFFFF;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s ease;
}
.feature-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
  background: url(./../../assets/img/top/features01.jpg) no-repeat center;
  background-size: cover;
}
.feature-card:nth-child(1):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  opacity: 0.25;
  z-index: 1;
}
.feature-card:nth-child(2) {
  grid-column: span 5;
  background: url(./../../assets/img/top/features02.jpg) no-repeat center;
  background-size: cover;
}
.feature-card:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFD93D;
  opacity: 0.25;
  z-index: 1;
}
.feature-card:nth-child(3) {
  grid-column: span 5;
  background: url(./../../assets/img/top/features03.jpeg) no-repeat center;
  background-size: cover;
}
.feature-card:nth-child(3):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4ECDC4;
  opacity: 0.25;
  z-index: 1;
}
.feature-card:nth-child(4) {
  grid-column: span 4;
  background: url(./../../assets/img/top/features02.jpg) no-repeat center;
  background-size: cover;
}
.feature-card:nth-child(4):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0.25;
  z-index: 1;
}
.feature-card:nth-child(5) {
  grid-column: span 4;
  background: url(./../../assets/img/top/features05.jpeg) no-repeat center;
  background-size: cover;
}
.feature-card:nth-child(5):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  opacity: 0.25;
  z-index: 1;
}
.feature-card:nth-child(6) {
  grid-column: span 4;
  background: url(./../../assets/img/top/features06.jpg) no-repeat center;
  background-size: cover;
}
.feature-card:nth-child(6):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  opacity: 0.25;
  z-index: 1;
}
.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.feature-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.feature-number {
  font-size: 72px;
  font-weight: 900;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 20px;
}

.feature-icon img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .features {
    padding: 100px 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-column: span 1 !important;
    min-height: 300px;
  }
}
.courses {
  padding: 100px 50px;
  background: #0a0a0a;
  position: relative;
}

.courses-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.courses-title {
  font-size: 72px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 80px;
  background: linear-gradient(90deg, #FF6B35, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.course-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  overflow-x: auto;
  padding: 40px 0;
  scroll-snap-type: x mandatory;
}
.course-cards::-webkit-scrollbar {
  height: 8px;
}
.course-cards::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.course-cards::-webkit-scrollbar-thumb {
  background: #FF6B35;
  border-radius: 4px;
}

.course-card {
  min-width: 400px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 30px;
  padding: 50px;
  scroll-snap-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.course-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 40px 80px rgba(255, 107, 53, 0.3);
}
.course-card:hover::before {
  opacity: 0.1;
}

.course-name {
  font-size: 32px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
}

.course-price {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, #FF6B35, #FFD93D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.course-features {
  list-style: none;
  color: #aaaaaa;
}
.course-features li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}
.course-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .course-cards {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .courses {
    padding: 50px 16px;
  }
  .courses-title {
    font-size: 36px;
    margin-bottom: 0;
  }
  .course-card {
    min-width: 100%;
  }
}
.stats {
  padding: 150px 50px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.stats-title {
  font-size: 64px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 40px;
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: #2C3E50;
  letter-spacing: 2px;
}

.stats-details {
  margin-top: 120px;
  position: relative;
}

.detail-card {
  position: relative;
  margin-bottom: 150px;
  min-height: 400px;
}
.detail-card:nth-child(odd) {
  padding-right: 50%;
}
.detail-card:nth-child(odd) .detail-image-wrapper {
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
}
.detail-card:nth-child(odd) .detail-content {
  padding-left: 60px;
}
.detail-card:nth-child(even) {
  padding-left: 50%;
}
.detail-card:nth-child(even) .detail-content {
  margin-left: auto;
  padding-right: 60px;
}
.detail-card:nth-child(even) .detail-image-wrapper {
  left: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
}
.detail-card:hover .detail-badge::before {
  left: 100%;
}

.detail-image-wrapper {
  position: absolute;
  z-index: 2;
}

.detail-image-main {
  max-width: 620px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
}
.detail-image-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-image-accent {
  position: absolute;
  width: 13.021vw;
  height: 13.021vw;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-image-accent img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-card:nth-child(odd) .detail-image-accent {
  bottom: -30px;
  left: -30px;
  transform: rotate(-6deg);
}

.detail-card:nth-child(even) .detail-image-accent {
  bottom: -30px;
  right: -30px;
  transform: rotate(6deg);
}

.detail-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  padding: 40px 0;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.detail-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.5s ease;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.detail-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2C3E50, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.detail-subtitle {
  font-size: 24px;
  color: #4ECDC4;
  margin-bottom: 30px;
  font-weight: bold;
}

.detail-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 30px;
}

.highlight {
  color: #FF6B35;
  font-weight: bold;
}

.detail-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: rgba(78, 205, 196, 0.2);
  transform: translateX(10px);
}

.feature-text {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats {
    padding: 50px 16px;
  }
  .stats-title {
    margin-bottom: 0;
  }
  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .stats-details {
    margin-top: 80px;
  }
  .detail-card {
    flex-direction: column;
    margin-bottom: 80px;
    padding: 30px 20px !important;
  }
  .detail-card:nth-child(odd), .detail-card:nth-child(even) {
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }
  .detail-card:nth-child(odd) .detail-content, .detail-card:nth-child(even) .detail-content {
    margin-left: 0;
    padding: 0;
    margin-bottom: 50px;
    max-width: 100%;
  }
  .detail-card:nth-child(odd) .detail-image-wrapper, .detail-card:nth-child(even) .detail-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 40px;
    transform: none !important;
    left: 0;
    right: 0;
    top: 0;
  }
  .detail-card:nth-child(odd) .feature-item, .detail-card:nth-child(even) .feature-item {
    justify-content: flex-start;
  }
  .detail-card:nth-child(odd) .feature-item:hover, .detail-card:nth-child(even) .feature-item:hover {
    transform: translateX(5px);
  }
  .detail-image-main {
    font-size: 80px;
  }
  .detail-image-accent {
    width: 150px;
    height: 150px;
    font-size: 40px;
  }
  .detail-title {
    font-size: 32px;
  }
  .detail-subtitle {
    font-size: 20px;
  }
}
.cta-section {
  padding: 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  position: relative;
  overflow: hidden;
}

.cta-bg-animation {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
  animation: drift 10s linear infinite;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(100px, 100px);
  }
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 80px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 30px;
  transform: perspective(1000px) rotateY(-10deg);
}

.cta-subtitle {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.cta-btn {
  padding: 25px 60px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.3s ease;
  display: inline-block;
}
.cta-btn-primary {
  background: #FFFFFF;
  color: #FF6B35;
}
.cta-btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 50px 16px;
  }
  .cta-title {
    font-size: 40px;
  }
  .cta-subtitle {
    font-size: 18px;
  }
  .cta-buttons {
    flex-direction: column;
  }
}
.footer {
  padding: 100px 50px 50px;
  background: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.05));
  pointer-events: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-content p {
  color: #aaaaaa;
  line-height: 1.8;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #FF6B35;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 15px;
  color: #aaaaaa;
}
.footer-column ul li a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #4ECDC4;
}
.footer-column .footer-column-btm {
  display: flex;
  gap: 15px;
}
@media (max-width: 1024px) {
  .footer-column .footer-column-btm {
    justify-content: center;
  }
}
.footer-column .footer-column-btm img {
  width: 4.167vw;
  height: 4.167vw;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .footer-column .footer-column-btm img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 16px 30px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.parallax-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../assets/img/top/parallax_bg.jpg);
  padding: 150px 0;
}
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    padding: 80px 0;
  }
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  background: lab(0% 0 0 / 0.2);
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: lab(0% 0 0 / 0.5);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .parallax-content {
    padding: 0 10px;
  }
}

.parallax-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 30px;
  transform: perspective(1000px) rotateX(10deg);
}

.parallax-desc {
  font-size: 24px;
  margin-bottom: 40px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .parallax-title {
    font-size: 36px;
  }
  .parallax-desc {
    font-size: 18px;
  }
}
.page-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
@media (max-width: 1024px) {
  .page-hero {
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    height: 100vh;
    min-height: 350px;
    max-height: none;
  }
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-hero__bg--placeholder {
  background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 50%, #4a8fb9 100%);
}
.page-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 60px 60px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page-hero__content {
    padding: 0 40px 40px;
  }
}
@media (max-width: 768px) {
  .page-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px 20px;
  }
}
.page-hero__title-en {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 200;
  color: #FFFFFF;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .page-hero__title-en {
    font-size: clamp(40px, 7vw, 80px);
  }
}
@media (max-width: 768px) {
  .page-hero__title-en {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
  }
}
.page-hero__title-en .number {
  font-weight: 700;
  font-size: 1.1em;
  background: linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-right: 0.1em;
}
.page-hero__title-en .accent {
  color: #FFD93D;
  font-weight: 400;
}
.page-hero__title-ja {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .page-hero__title-ja {
    font-size: clamp(18px, 2.5vw, 24px);
  }
}
@media (max-width: 768px) {
  .page-hero__title-ja {
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 0.05em;
  }
}
.page-hero__title-ja .separator {
  display: inline-block;
  margin: 0 0.5em;
  color: #FF6B35;
  opacity: 0.8;
}

.container {
  margin: 0 15.625vw;
  position: relative;
}
@media (max-width: 1024px) {
  .container {
    margin: 0 32px;
  }
}
@media (max-width: 768px) {
  .container {
    margin: 0 20px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}
.section-title--gradient {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 3s ease infinite;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-radius: 2px;
}

.section-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #fff;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .comparison-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .comparison-section {
    padding: 40px 0;
  }
}
.comparison-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.comparison-wrapper {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
@media (min-width: 1400px) {
  .comparison-wrapper {
    padding: 0;
  }
}

.comparison-table-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow-y: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}
.comparison-table-container::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .comparison-table-container {
    border-radius: 15px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
  }
  .comparison-table-container::after {
    content: "→ 横スクロール可能";
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 100;
    animation: slideHint 3s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
  .comparison-table-container.scrollable::after {
    animation: slideHint 3s ease-in-out forwards;
  }
}
@media (max-width: 768px) {
  .comparison-table-container {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
@media (max-width: 1024px) {
  .comparison-table {
    min-width: 900px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .comparison-table {
    min-width: 700px;
    font-size: 12px;
  }
}
.comparison-table thead {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}
.comparison-table thead tr th {
  padding: 25px 20px;
  text-align: center;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .comparison-table thead tr th {
    padding: 20px 15px;
    font-size: 13px;
  }
  .comparison-table thead tr th:first-child {
    position: sticky;
    left: 0;
    z-index: 11;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  .comparison-table thead tr th {
    padding: 15px 10px;
    font-size: 11px;
  }
  .comparison-table thead tr th:first-child {
    min-width: 120px;
  }
}
.comparison-table thead tr th:first-child {
  text-align: left;
  padding-left: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .comparison-table thead tr th:first-child {
    padding-left: 15px;
    font-size: 11px;
  }
}
.comparison-table thead tr th.highlight {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  position: relative;
}
@media (max-width: 1024px) {
  .comparison-table thead tr th.highlight {
    min-width: 150px;
  }
}
.comparison-table thead tr th.highlight .company-badge {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD93D;
  color: #2C3E50;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .comparison-table thead tr th.highlight .company-badge {
    font-size: 10px;
    padding: 4px 10px;
    top: -12px;
  }
}
.comparison-table thead tr th.highlight .company-name {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .comparison-table thead tr th.highlight .company-name {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .comparison-table thead tr th.highlight .company-name {
    font-size: 14px;
  }
}
.comparison-table thead tr th.highlight .company-tag {
  display: block;
  font-size: 12px;
  opacity: 0.95;
  letter-spacing: 1px;
}
@media (max-width: 1024px) {
  .comparison-table thead tr th.highlight .company-tag {
    font-size: 10px;
  }
}
.comparison-table thead tr th small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  margin-top: 5px;
}
@media (max-width: 1024px) {
  .comparison-table thead tr th small {
    font-size: 9px;
  }
}
.comparison-table tbody tr {
  transition: all 0.3s ease;
}
.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}
.comparison-table tbody tr td {
  padding: 20px;
  text-align: center;
  color: rgb(255, 255, 255);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .comparison-table tbody tr td {
    padding: 16px 12px;
    font-size: 13px;
  }
  .comparison-table tbody tr td:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    background: rgb(20, 20, 20);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  .comparison-table tbody tr td {
    padding: 12px 8px;
    font-size: 11px;
  }
  .comparison-table tbody tr td:first-child {
    min-width: 120px;
  }
}
.comparison-table tbody tr td:first-child {
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .comparison-table tbody tr td:first-child {
    padding-left: 15px;
  }
}
.comparison-table tbody tr td.highlight {
  background: rgba(255, 107, 53, 0.05);
  color: #FFFFFF;
  font-weight: 700;
}
.comparison-table tbody tr td.feature-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.comparison-table tbody tr td.feature-label i {
  margin-right: 10px;
  color: #4ECDC4;
}
@media (max-width: 1024px) {
  .comparison-table tbody tr td.feature-label i {
    margin-right: 6px;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .comparison-table tbody tr td.feature-label span {
    display: inline-block;
    white-space: normal;
    line-height: 1.3;
  }
}
.comparison-table tbody tr td .check {
  color: #4CAF50;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .comparison-table tbody tr td .check {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .comparison-table tbody tr td .check {
    font-size: 18px;
  }
}
.comparison-table tbody tr td .cross {
  color: #666;
  font-size: 20px;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .comparison-table tbody tr td .cross {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .comparison-table tbody tr td .cross {
    font-size: 16px;
  }
}
.comparison-table tbody tr td .partial {
  color: #FFD93D;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .comparison-table tbody tr td .partial {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .comparison-table tbody tr td .partial {
    font-size: 16px;
  }
}
.comparison-table tbody .price-row td {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .comparison-table tbody .price-row td {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .comparison-table tbody .price-row td {
    font-size: 16px;
  }
}
.comparison-table tbody .price-row td.highlight {
  font-size: 28px;
  color: #FFD93D;
}
@media (max-width: 1024px) {
  .comparison-table tbody .price-row td.highlight {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .comparison-table tbody .price-row td.highlight {
    font-size: 18px;
  }
}
.comparison-table tbody .price-row td.highlight .price-value {
  display: block;
  margin-bottom: 5px;
}
.comparison-table tbody .price-row td.highlight .price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
@media (max-width: 1024px) {
  .comparison-table tbody .price-row td.highlight .price-note {
    font-size: 10px;
  }
}

.comparison-legend {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .comparison-legend {
    gap: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .comparison-legend {
    gap: 15px;
  }
}
.comparison-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
@media (max-width: 768px) {
  .comparison-legend-item {
    font-size: 12px;
    gap: 6px;
  }
}
.comparison-legend-item .check,
.comparison-legend-item .cross,
.comparison-legend-item .partial {
  font-size: 20px;
}
@media (max-width: 768px) {
  .comparison-legend-item .check,
  .comparison-legend-item .cross,
  .comparison-legend-item .partial {
    font-size: 16px;
  }
}
.comparison-legend-item .check {
  color: #4CAF50;
}
.comparison-legend-item .cross {
  color: #666;
}
.comparison-legend-item .partial {
  color: #FFD93D;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .comparison-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.comparison-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .comparison-card {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .comparison-card {
    padding: 20px;
    border-radius: 10px;
  }
}
.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}
@media (max-width: 1024px) {
  .comparison-card:hover {
    transform: translateY(-3px);
  }
}
.comparison-card__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .comparison-card__icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.comparison-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .comparison-card__title {
    font-size: 18px;
  }
}
.comparison-card__desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .comparison-card__desc {
    font-size: 14px;
  }
}

@keyframes slideHint {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  80% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
.instructor-section {
  padding: 100px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.instructor-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 107, 53, 0.02) 100px, rgba(255, 107, 53, 0.02) 101px);
  pointer-events: none;
}

.achievement {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.achievement__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
}
.achievement__text {
  flex: 1;
}
.achievement__text .number {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  display: block;
  margin-bottom: 5px;
}
.achievement__text .label {
  font-size: 14px;
  color: #555555;
}

.badge {
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #2C3E50;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.badge--primary {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
}

.instructor-team {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.instructor-team__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
}
.instructor-team__desc {
  text-align: center;
  color: #555555;
  font-size: 16px;
  margin-bottom: 40px;
}
.instructor-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.instructor-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.instructor-card:hover .instructor-card__image img {
  transform: scale(1.05);
}
.instructor-card__image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  overflow: hidden;
}
.instructor-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.instructor-card__content {
  padding: 25px;
}
.instructor-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 5px;
}
.instructor-card__role {
  font-size: 14px;
  color: #FF6B35;
  margin-bottom: 15px;
}
.instructor-card__bio {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.instructor-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill {
  padding: 5px 12px;
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.instructor-message {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .instructor-message {
    padding: 40px 20px;
  }
}
.instructor-message__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: #FFFFFF;
}
.instructor-message__content {
  max-width: 800px;
  margin: 0 auto;
}
.instructor-message__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
}
.instructor-message__content p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}
.instructor-message__cta {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.instructor-message__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before, .process-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}
.process-section::before {
  top: -300px;
  left: -300px;
  background: radial-gradient(circle at center, #FF6B35, transparent);
  animation: float 20s ease-in-out infinite;
}
.process-section::after {
  bottom: -300px;
  right: -300px;
  background: radial-gradient(circle at center, #4ECDC4, transparent);
  animation: float 20s ease-in-out infinite reverse;
}
.process-section .section-title {
  color: #FFFFFF;
}
.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
  position: relative;
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.3) 10%, rgba(78, 205, 196, 0.3) 90%, transparent 100%);
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .process-timeline::before {
    left: 30px;
  }
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .process-step {
    margin-bottom: 40px;
  }
}
.process-step:nth-child(even) {
  flex-direction: row-reverse;
}
.process-step:nth-child(even) .process-step__content {
  text-align: left;
}
@media (min-width: 769px) {
  .process-step:nth-child(even) .process-step__content {
    padding-right: 60px;
    padding-left: 0;
  }
}
.process-step:nth-child(odd) .process-step__content {
  text-align: right;
}
@media (max-width: 768px) {
  .process-step:nth-child(odd) .process-step__content {
    text-align: left;
  }
}
@media (min-width: 769px) {
  .process-step:nth-child(odd) .process-step__content {
    padding-left: 60px;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .process-step {
    flex-direction: row !important;
  }
  .process-step:nth-child(even) .process-step__content, .process-step:nth-child(odd) .process-step__content {
    padding: 0 0 0 100px;
    text-align: left;
  }
}
.process-step__number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}
@media (max-width: 1024px) {
  .process-step__number {
    left: 30px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.process-step__number::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}
.process-step__content {
  flex: 1;
  padding: 0 60px;
}
@media (max-width: 1024px) {
  .process-step__content {
    padding: 0 0 0 100px;
  }
}
.process-step__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-block;
  max-width: 500px;
  width: 100%;
}
.process-step__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.process-step__card:hover .process-step__icon {
  transform: scale(1.1) rotate(5deg);
}
@media (max-width: 1024px) {
  .process-step__card {
    max-width: 100%;
    padding: 20px;
  }
}
.process-step__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(78, 205, 196, 0.2));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #FF6B35;
}
.process-step__title {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.process-step__title span {
  display: block;
  font-size: 14px;
  color: #FFD93D;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .process-step__title {
    font-size: 20px;
  }
}
.process-step__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}
.process-step__details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .process-step__details {
    flex-direction: column;
  }
}
.process-step__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.process-step__detail i {
  color: #4ECDC4;
}
.process-step--highlight .process-step__card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  border-color: rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}
.process-step--highlight .process-step__card::before {
  content: "ゼロ事務プラン";
  position: absolute;
  top: 35px;
  right: -30px;
  background: #FFD93D;
  color: #2C3E50;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-complete {
  text-align: center;
  margin-top: 60px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .process-complete {
    padding: 20px;
  }
}
.process-complete__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: #FFFFFF;
  animation: bounce 2s ease-in-out infinite;
}
.process-complete__title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .process-complete__title {
    font-size: 28px;
  }
}
.process-complete__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.process-complete__cta {
  display: inline-block;
  padding: 18px 50px;
  background: #FFFFFF;
  color: #2C3E50;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}
.process-complete__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.faq-section {
  padding: 100px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-categories {
    gap: 10px;
    margin-bottom: 40px;
  }
}

.faq-category {
  padding: 12px 30px;
  background: #FFFFFF;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .faq-category {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.faq-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  transition: left 0.3s ease;
  z-index: -1;
}
.faq-category:hover {
  border-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}
.faq-category.active {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-color: transparent;
  color: #FFFFFF;
}
.faq-category.active::before {
  left: 0;
}
.faq-category i {
  margin-right: 8px;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-group {
  display: none;
  animation: fadeIn 0.5s ease;
}
.faq-group.active {
  display: block;
}

.faq-item {
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.faq-item.active {
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}
.faq-item.active .faq-question {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
}
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 25px 30px;
  opacity: 1;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
}
.faq-question:hover {
  background: rgba(255, 107, 53, 0.02);
}
.faq-question::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #aaaaaa;
  transition: all 0.3s ease;
}
.faq-question .question-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-right: 15px;
}
.faq-question .question-title {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
  line-height: 1.5;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .faq-question .question-title {
    font-size: 15px;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 30px;
  transition: all 0.3s ease;
}
.faq-answer__content {
  color: #555555;
  line-height: 1.8;
}
.faq-answer__content p {
  margin-bottom: 15px;
}
.faq-answer__content p:last-child {
  margin-bottom: 0;
}
.faq-answer__content ul,
.faq-answer__content ol {
  margin: 15px 0;
  padding-left: 20px;
}
.faq-answer__content ul li,
.faq-answer__content ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
}
.faq-answer__content ul li::before,
.faq-answer__content ol li::before {
  content: "→";
  position: absolute;
  left: -15px;
  color: #FF6B35;
  font-weight: 700;
}
.faq-answer__content .highlight {
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 217, 61, 0.3) 60%);
  padding: 0 4px;
  font-weight: 600;
}
.faq-answer__content .notice {
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 107, 53, 0.05);
  border-left: 4px solid #FF6B35;
  border-radius: 5px;
  font-size: 14px;
}
.faq-answer__content .notice-icon {
  color: #FF6B35;
  margin-right: 10px;
}
.faq-answer__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.faq-answer__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}
.faq-answer__cta i {
  margin-left: 8px;
}

.faq-contact {
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-contact {
    padding: 30px 20px;
  }
}
.faq-contact__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #FFFFFF;
}
.faq-contact__title {
  font-size: 24px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
}
.faq-contact__text {
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}
.faq-contact__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-contact__button {
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.faq-contact__button--primary {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
}
.faq-contact__button--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}
.faq-contact__button--secondary {
  background: #FFFFFF;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}
.faq-contact__button--secondary:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: scale(1.05);
}
.faq-contact__button i {
  margin-right: 8px;
}

@keyframes titleFloat {
  0%, 100% {
    transform: perspective(1000px) rotateX(10deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateX(10deg) translateY(-10px);
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradientRotate {
  0%, 100% {
    opacity: 0.8;
    transform: rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.05);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }
  75% {
    transform: translate(30px, 50px) scale(1.02);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.company-info {
  padding: 100px 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .company-info {
    padding: 60px 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-title {
  margin-bottom: 20px;
}
.section-title .title-en {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #FF6B35;
  margin-bottom: 10px;
  font-weight: 700;
}
.section-title .title-ja {
  display: block;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #2C3E50;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}

.company-table-wrapper {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}
.company-table tbody tr:hover {
  background: rgba(255, 107, 53, 0.02);
}
.company-table tbody tr:last-child {
  border-bottom: none;
}
.company-table th {
  width: 200px;
  padding: 40px;
  text-align: left;
  font-weight: 700;
  color: #2C3E50;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.05), transparent);
  font-size: 15px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .company-table th {
    width: 100px;
    padding: 20px;
    font-size: 14px;
  }
}
.company-table td {
  padding: 40px;
  color: #555555;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .company-table td {
    padding: 20px;
    font-size: 14px;
  }
}
.company-table .sub-text {
  display: block;
  font-size: 13px;
  color: #aaaaaa;
  margin-top: 5px;
}

.address-block {
  margin-bottom: 20px;
}
.address-block:last-child {
  margin-bottom: 0;
}
.address-block .address-label {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-weight: 700;
}
.address-block p {
  margin: 0;
  line-height: 1.8;
}

.business-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.business-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}
.business-list li i {
  position: absolute;
  left: 0;
  top: 10px;
  color: #4ECDC4;
  font-size: 14px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .cert-badges {
    flex-direction: column;
  }
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.cert-badge i {
  color: #FF6B35;
  font-size: 18px;
}
.cert-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.philosophy {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #FFFFFF 100%);
  overflow: hidden;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.philosophy-content {
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .philosophy-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.philosophy-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.philosophy-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.philosophy-points {
  margin-top: 40px;
}

.point-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.point-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}
.point-item .point-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
}
.point-item .point-text {
  flex: 1;
}
.point-item .point-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 4px;
}
.point-item .point-text p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.philosophy-image {
  position: relative;
}
.philosophy-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .philosophy-image img {
    height: 300px;
  }
}
.philosophy-image .image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FFD93D, #FF6B35);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .philosophy-image .image-decoration {
    display: none;
  }
}

.access {
  padding: 100px 0;
  background: #FFFFFF;
}

.access-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

.access-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.access-card.main-location {
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .access-card.main-location {
    grid-row: span 1;
  }
}

.access-card-header {
  padding: 20px 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
}
.access-card-header .location-badge {
  position: absolute;
  top: 20px;
  right: 40px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
}
.access-card-header .location-name {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
}

.access-card-body {
  padding: 40px;
}

.map-wrapper {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.map-wrapper iframe {
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}
.map-wrapper iframe:hover {
  filter: grayscale(0%);
}

.location-info .info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.location-info .info-item:last-child {
  margin-bottom: 0;
}
.location-info .info-item i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 12px;
}
.location-info .info-item .info-label {
  font-size: 12px;
  color: #aaaaaa;
  margin-bottom: 2px;
}
.location-info .info-item .info-text {
  font-size: 14px;
  color: #2C3E50;
  line-height: 1.6;
}
.location-info.compact .info-item {
  align-items: flex-start;
}
.location-info.compact .info-item .info-text {
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

.news-list {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #FFFFFF 100%);
  min-height: 80vh;
}
@media (max-width: 768px) {
  .news-list {
    padding: 60px 0;
  }
}

.news-filter {
  margin-bottom: 60px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .news-filter {
    padding: 20px;
  }
}

.filter-header {
  margin-bottom: 20px;
}

.filter-title {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-title i {
  color: #FF6B35;
  font-size: 16px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .filter-buttons {
    gap: 8px;
  }
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #FFFFFF;
  border: 2px solid #f0f0f0;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
.filter-btn:hover {
  border-color: #FF6B35;
  color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
}
.filter-btn.active {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-color: transparent;
  color: #FFFFFF;
}
.filter-btn.active .btn-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.filter-btn .btn-text {
  letter-spacing: 0.5px;
}
.filter-btn .btn-count {
  padding: 2px 8px;
  background: #f0f0f0;
  border-radius: 20px;
  font-size: 12px;
  color: #555555;
  transition: all 0.3s ease;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  position: relative;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.news-card:hover .news-card__image img {
  transform: scale(1.1);
}
.news-card:hover .read-more {
  transform: translateX(5px);
}
.news-card:hover .read-more i {
  transform: translateX(3px);
}
.news-card.pinned {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(78, 205, 196, 0.02));
  border: 2px solid rgba(255, 107, 53, 0.1);
}
@media (max-width: 1024px) {
  .news-card.pinned {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .news-card.pinned {
    grid-column: span 1;
  }
}
.news-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.news-card__badge i {
  font-size: 11px;
}
.news-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.news-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news-card__content {
  padding: 40px;
}
@media (max-width: 768px) {
  .news-card__content {
    padding: 20px;
  }
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.news-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #aaaaaa;
}
.news-card__date i {
  font-size: 12px;
}
.news-card__category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.news-card__category.category-news {
  background: rgba(78, 205, 196, 0.1);
  color: #4ECDC4;
}
.news-card__category.category-event {
  background: rgba(255, 217, 61, 0.1);
  color: rgb(214, 172.0824742268, 0);
}
.news-card__category.category-course {
  background: rgba(102, 126, 234, 0.1);
  color: #667EEA;
}
.news-card__category.category-media {
  background: rgba(240, 147, 251, 0.1);
  color: #F093FB;
}
.news-card__category.category-campaign {
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
}
.news-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .news-card__title {
    font-size: 16px;
  }
}
.news-card__excerpt {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__footer {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.news-tag {
  display: inline-block;
  padding: 3px 8px;
  background: linear-gradient(135deg, #FFD93D, #FF6B35);
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: pulse 2s ease infinite;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF6B35;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.topic_pager {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}
.topic_pager ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.topic_pager li {
  display: inline-block;
}
.topic_pager a.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  color: #555555;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.topic_pager a.page-numbers:hover {
  border-color: #FF6B35;
  color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}
.topic_pager a.page-numbers.current {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  cursor: default;
  pointer-events: none;
}
.topic_pager .prev,
.topic_pager .next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic_pager .prev:hover,
.topic_pager .next:hover {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-color: transparent;
  color: #FFFFFF;
  transform: scale(1.1);
}
.topic_pager .prev.disabled,
.topic_pager .next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.topic_pager .dots {
  color: #aaaaaa;
  letter-spacing: 2px;
  padding: 0 10px;
  cursor: default;
}

@media (max-width: 768px) {
  .topic_pager {
    margin: 40px 0;
  }
  .topic_pager ul.page-numbers {
    gap: 6px;
  }
  .topic_pager a.page-numbers,
  .topic_pager .prev,
  .topic_pager .next {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.news-search {
  margin-top: 60px;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.search-box {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid #f0f0f0;
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.search-input:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}
.search-input::-moz-placeholder {
  color: #aaaaaa;
}
.search-input::placeholder {
  color: #aaaaaa;
}

.search-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.news-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  position: relative;
  overflow: hidden;
}
.news-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 10px, transparent 10px, transparent 20px);
  animation: slide 20s linear infinite;
}
@keyframes slide {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(20px, 20px);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta-form {
    flex-direction: column;
  }
}

.cta-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.cta-input:focus {
  outline: none;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-input::-moz-placeholder {
  color: #aaaaaa;
}
.cta-input::placeholder {
  color: #aaaaaa;
}

.cta-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #FFFFFF;
  border: none;
  border-radius: 50px;
  color: #FF6B35;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-submit:hover i {
  transform: translateX(3px);
}
.cta-submit i {
  transition: transform 0.3s ease;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-note i {
  font-size: 12px;
}

@media (max-width: 768px) {
  .news-list {
    padding: 40px 0;
  }
  .filter-buttons {
    justify-content: center;
  }
  .news-card__title {
    font-size: 16px;
  }
  .news-card__excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  .pagination {
    gap: 10px;
  }
  .pagination-number,
  .pagination-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .search-input {
    font-size: 14px;
    padding: 14px 20px;
  }
  .search-btn {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}
.single-post {
  padding: 60px 0;
  background: #FFFFFF;
  min-height: 60vh;
}
@media (max-width: 768px) {
  .single-post {
    padding: 40px 0;
  }
}

.post-header {
  margin-bottom: 40px;
}

.post-meta-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555555;
}
.post-date i {
  color: #aaaaaa;
}

.post-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.post-category.category-info {
  background: rgba(78, 205, 196, 0.1);
  color: #4ECDC4;
}
.post-category.category-event {
  background: rgba(255, 217, 61, 0.1);
  color: rgb(214, 172.0824742268, 0);
}
.post-category.category-course {
  background: rgba(102, 126, 234, 0.1);
  color: #667EEA;
}
.post-category.category-media {
  background: rgba(240, 147, 251, 0.1);
  color: #F093FB;
}
.post-category.category-campaign {
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
}

.post-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.post-badge.important {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
}

.post-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #2C3E50;
  line-height: 1.5;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.post-share-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.post-share-top .share-label {
  font-size: 13px;
  color: #555555;
  font-weight: 700;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
}
.share-btn:hover {
  transform: translateY(-3px);
}
.share-btn:hover.share-twitter {
  background: #1DA1F2;
  color: #FFFFFF;
}
.share-btn:hover.share-facebook {
  background: #1877F2;
  color: #FFFFFF;
}
.share-btn:hover.share-line {
  background: #00C300;
  color: #FFFFFF;
}
.share-btn:hover.share-copy {
  background: #FF6B35;
  color: #FFFFFF;
}

.post-thumbnail {
  margin-bottom: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #2C3E50;
}
.post-content .lead-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(78, 205, 196, 0.03));
  border-left: 4px solid #FF6B35;
  border-radius: 8px;
  margin-bottom: 60px;
}
.post-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: #2C3E50;
  margin: 60px 0 40px;
  padding-bottom: 10px;
  border-bottom: 3px solid linear-gradient(90deg, #FF6B35, transparent);
  position: relative;
}
.post-content h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35, #4ECDC4);
}
.post-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2C3E50;
  margin: 40px 0 20px;
  padding-left: 20px;
  border-left: 4px solid #FF6B35;
}
.post-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin: 20px 0;
}
.post-content p {
  margin-bottom: 20px;
}
.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 40px;
}
.post-content .styled-list {
  list-style: none;
  padding: 0;
}
.post-content .styled-list li {
  position: relative;
  padding: 10px 0 10px 40px;
}
.post-content .styled-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-size: 12px;
}
.post-content .info-box {
  padding: 40px;
  background: rgba(78, 205, 196, 0.05);
  border: 2px solid rgba(78, 205, 196, 0.2);
  border-radius: 12px;
  margin: 40px 0;
}
.post-content .info-box p {
  margin-bottom: 10px;
}
.post-content .info-box p:last-child {
  margin-bottom: 0;
}
.post-content .info-box strong {
  color: #FF6B35;
}
.post-content .highlight-box {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
  border-radius: 12px;
  margin: 40px 0;
}
.post-content .highlight-box h3 {
  border: none;
  padding: 0;
  margin-bottom: 20px;
  color: #FF6B35;
}
.post-content .highlight-box h3 i {
  margin-right: 8px;
}
.post-content .highlight-box ul {
  list-style: none;
  padding: 0;
}
.post-content .highlight-box ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}
.post-content .highlight-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 700;
}
.post-content .notice-box {
  padding: 40px;
  background: rgba(255, 217, 61, 0.1);
  border-left: 4px solid #FFD93D;
  border-radius: 8px;
  margin: 40px 0;
}
.post-content .notice-box i {
  color: rgb(214, 172.0824742268, 0);
  margin-right: 8px;
}
.post-content .notice-box strong {
  color: rgb(163, 131.0721649485, 0);
}
.post-content .feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .post-content .feature-cards {
    grid-template-columns: 1fr;
  }
}
.post-content .feature-card-item {
  padding: 40px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.post-content .feature-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.post-content .feature-card-item .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  border-radius: 50%;
  margin-bottom: 20px;
}
.post-content .feature-card-item .card-icon i {
  font-size: 20px;
}
.post-content .feature-card-item .card-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.post-content .feature-card-item .card-content p {
  font-size: 14px;
  color: #555555;
  margin: 0;
}
.post-content .cta-box {
  padding: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
}
.post-content .cta-buttons-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .post-content .cta-buttons-group {
    flex-direction: column;
  }
}
.post-content .cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.post-content .cta-button.primary {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
}
.post-content .cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}
.post-content .cta-button.secondary {
  background: #FFFFFF;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}
.post-content .cta-button.secondary:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-3px);
}
.post-content .cta-button i {
  font-size: 24px;
}
.post-content .cta-button .sub-text {
  font-size: 12px;
  opacity: 0.8;
}
.post-content .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.post-content .info-table thead {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
}
.post-content .info-table thead th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.post-content .info-table tbody {
  background: #FFFFFF;
}
.post-content .info-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.post-content .info-table tbody tr:last-child {
  border-bottom: none;
}
.post-content .info-table tbody tr:hover {
  background: rgba(255, 107, 53, 0.02);
}
.post-content .info-table tbody td {
  padding: 20px;
  font-size: 14px;
  color: #555555;
}
.post-content .closing-text {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(78, 205, 196, 0.03));
  border-radius: 12px;
  font-style: italic;
  text-align: center;
  color: #555555;
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}

.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.post-tags i {
  color: #aaaaaa;
}
.post-tags .tag {
  display: inline-block;
  padding: 6px 16px;
  background: #f5f5f5;
  color: #555555;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}
.post-tags .tag:hover {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.post-share-bottom {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  margin-top: 60px;
}

.share-title {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 40px;
}

.share-buttons-large {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #FFFFFF;
}
.share-btn-large.twitter {
  background: #1DA1F2;
}
.share-btn-large.twitter:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}
.share-btn-large.facebook {
  background: #1877F2;
}
.share-btn-large.facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}
.share-btn-large.line {
  background: #00C300;
}
.share-btn-large.line:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 195, 0, 0.3);
}
.share-btn-large.copy {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  cursor: pointer;
  border: none;
  font-size: 14px;
}
.share-btn-large.copy:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}
.share-btn-large i {
  font-size: 18px;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
}
@media (max-width: 768px) {
  .post-navigation {
    grid-template-columns: 1fr;
  }
}

.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px;
  background: #FFFFFF;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.post-nav-item:hover {
  border-color: #FF6B35;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}
.post-nav-item:hover .nav-label {
  color: #FF6B35;
}
.post-nav-item.prev {
  text-align: left;
}
.post-nav-item.next {
  text-align: right;
}
.post-nav-item .nav-label {
  font-size: 13px;
  color: #aaaaaa;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.post-nav-item .nav-title {
  font-size: 15px;
  color: #2C3E50;
  font-weight: 700;
  line-height: 1.5;
}

.related-posts {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #FFFFFF 100%);
}

.related-title {
  text-align: center;
  margin-bottom: 60px;
}
.related-title .title-en {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #FF6B35;
  margin-bottom: 10px;
  font-weight: 700;
}
.related-title .title-ja {
  display: block;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: #2C3E50;
  letter-spacing: -1px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.related-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.related-card:hover .related-image img {
  transform: scale(1.1);
}

.related-link {
  text-decoration: none;
  color: inherit;
}

.related-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.related-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.related-image .related-category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.related-content {
  padding: 20px;
}

.related-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-date {
  font-size: 12px;
  color: #aaaaaa;
}
.related-date i {
  margin-right: 4px;
}

.single-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  position: relative;
  overflow: hidden;
}
.single-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 10px, transparent 10px, transparent 20px);
  animation: slide 20s linear infinite;
}
.single-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.single-cta .cta-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.single-cta .cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}
.single-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.single-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.single-cta .cta-btn.primary {
  background: #FFFFFF;
  color: #FF6B35;
}
.single-cta .cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.single-cta .cta-btn.secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.single-cta .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}
.image-overlay img {
  max-width: 90%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .single-post {
    padding: 20px 0;
  }
  .post-content {
    font-size: 15px;
  }
  .post-content h2 {
    font-size: 24px;
  }
  .post-content h3 {
    font-size: 20px;
  }
  .post-content .lead-text {
    font-size: 16px;
    padding: 20px;
  }
  .share-buttons-large {
    flex-direction: column;
  }
  .share-buttons-large .share-btn-large {
    width: 100%;
  }
}
.main-content {
  background: #FFFFFF;
}

.section {
  padding: 100px 0;
}
.section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}
.section-header .section-title {
  margin-bottom: 20px;
}
.section-header .section-title .title-en {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  color: #FF6B35;
  margin-bottom: 10px;
}
.section-header .section-title .title-ja {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #2C3E50;
}
.section-header .section-subtitle {
  font-size: 18px;
  color: #555555;
  line-height: 1.8;
}

.national-license {
  background: linear-gradient(180deg, #FFFFFF 0%, #f8f9fa 100%);
}
.national-license .license-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.national-license .license-grid.single {
  grid-template-columns: 1fr;
}
.national-license .license-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
.national-license .license-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}
.national-license .license-card .card-header {
  padding: 40px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-bottom: 3px solid #FF6B35;
}
.national-license .license-card .card-header .card-badge {
  display: inline-block;
  padding: 5px 15px;
  background: #FF6B35;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 15px;
}
.national-license .license-card .card-header .card-badge.badge-premium {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
}
.national-license .license-card .card-header .card-title {
  font-size: 28px;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 10px;
}
.national-license .license-card .card-header .card-subtitle {
  font-size: 14px;
  color: #555555;
}
.national-license .license-card .card-body {
  padding: 40px;
}
.national-license .license-card .card-body .price-box {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
  border-radius: 15px;
  margin-bottom: 40px;
}
.national-license .license-card .card-body .price-box .price-label {
  display: block;
  font-size: 14px;
  color: #555555;
  margin-bottom: 10px;
}
.national-license .license-card .card-body .price-box .price-amount {
  display: block;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, #FF6B35, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}
.national-license .license-card .card-body .price-box .price-note {
  display: block;
  font-size: 12px;
  color: #555555;
}
.national-license .license-card .card-body .course-details,
.national-license .license-card .card-body .course-flow,
.national-license .license-card .card-body .exam-info {
  margin-bottom: 40px;
}
.national-license .license-card .card-body .course-details h4,
.national-license .license-card .card-body .course-flow h4,
.national-license .license-card .card-body .exam-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #FF6B35;
}
.national-license .license-card .card-body .course-details .detail-list,
.national-license .license-card .card-body .course-flow .detail-list,
.national-license .license-card .card-body .exam-info .detail-list {
  list-style: none;
}
.national-license .license-card .card-body .course-details .detail-list li,
.national-license .license-card .card-body .course-flow .detail-list li,
.national-license .license-card .card-body .exam-info .detail-list li {
  padding: 8px 0;
  color: #555555;
}
.national-license .license-card .card-body .course-details .detail-list li i,
.national-license .license-card .card-body .course-flow .detail-list li i,
.national-license .license-card .card-body .exam-info .detail-list li i {
  color: #4ECDC4;
  margin-right: 10px;
}
.national-license .license-card .card-body .flow-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.national-license .license-card .card-body .flow-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, #FF6B35, #4ECDC4);
  z-index: 0;
}
.national-license .license-card .card-body .flow-steps .flow-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.national-license .license-card .card-body .flow-steps .flow-step .step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #FFFFFF;
  border: 3px solid #FF6B35;
  border-radius: 50%;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.national-license .license-card .card-body .flow-steps .flow-step p {
  font-size: 12px;
  color: #555555;
  line-height: 1.4;
}
.national-license .license-card .card-body .exam-details {
  list-style: none;
  margin-top: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}
.national-license .license-card .card-body .exam-details li {
  padding: 5px 0;
  font-size: 14px;
  color: #555555;
}
.national-license .license-card .card-footer {
  padding: 20px 40px 40px;
}
.national-license .license-card .card-footer .btn-apply {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.national-license .license-card .card-footer .btn-apply:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}
.national-license .experience-course {
  background: linear-gradient(135deg, #fff4f0, #f0fcfc);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.national-license .experience-course .experience-badge {
  position: absolute;
  top: 30px;
  right: -35px;
  background: #FFD93D;
  color: #2C3E50;
  padding: 8px 50px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 700;
}
.national-license .experience-course h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
}
.national-license .experience-course .experience-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.national-license .experience-course .experience-content .experience-info {
  flex: 1;
}
.national-license .experience-course .experience-content .experience-info p {
  color: #555555;
  margin-bottom: 15px;
}
.national-license .experience-course .experience-content .experience-info ul {
  list-style: none;
}
.national-license .experience-course .experience-content .experience-info ul li {
  padding: 8px 0;
  color: #555555;
  position: relative;
  padding-left: 25px;
}
.national-license .experience-course .experience-content .experience-info ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 700;
}
.national-license .experience-course .experience-content .btn-consult {
  padding: 15px 40px;
  background: #FF6B35;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.national-license .experience-course .experience-content .btn-consult:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: scale(1.05);
}

.skill-up {
  padding: 150px 0;
}
.skill-up .skill-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}
.skill-up .skill-features .feature-card {
  text-align: center;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}
.skill-up .skill-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}
.skill-up .skill-features .feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
}
.skill-up .skill-features .feature-card:hover .feature-icon i {
  color: #FFFFFF;
}
.skill-up .skill-features .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.skill-up .skill-features .feature-card .feature-icon i {
  font-size: 36px;
  color: #FF6B35;
  transition: all 0.3s ease;
}
.skill-up .skill-features .feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
}
.skill-up .skill-features .feature-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}
.skill-up .subsection-title {
  font-size: 36px;
  font-weight: 900;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.skill-up .subsection-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #4ECDC4);
}
.skill-up .level-system {
  margin-bottom: 100px;
}
.skill-up .level-system .level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.skill-up .level-system .level-grid .level-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}
.skill-up .level-system .level-grid .level-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.skill-up .level-system .level-grid .level-card:hover .level-badge {
  transform: scale(1.1);
}
.skill-up .level-system .level-grid .level-card.level-0 .level-badge {
  background: #95a5a6;
}
.skill-up .level-system .level-grid .level-card.level-1 .level-badge {
  background: #3498db;
}
.skill-up .level-system .level-grid .level-card.level-2 .level-badge {
  background: #2ecc71;
}
.skill-up .level-system .level-grid .level-card.level-3 .level-badge {
  background: #f39c12;
}
.skill-up .level-system .level-grid .level-card.level-4 .level-badge {
  background: #e74c3c;
}
.skill-up .level-system .level-grid .level-card.level-5 .level-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #2C3E50;
}
.skill-up .level-system .level-grid .level-card .level-header {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  gap: 15px;
}
.skill-up .level-system .level-grid .level-card .level-header .level-badge {
  display: inline-block;
  padding: 8px 15px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.skill-up .level-system .level-grid .level-card .level-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
}
.skill-up .level-system .level-grid .level-card .level-content {
  padding: 20px;
}
.skill-up .level-system .level-grid .level-card .level-content .level-desc {
  font-size: 14px;
  color: #555555;
  margin-bottom: 15px;
  font-weight: 700;
}
.skill-up .level-system .level-grid .level-card .level-content .level-detail {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 15px;
}
.skill-up .level-system .level-grid .level-card .level-content .level-detail .time {
  display: block;
  font-size: 12px;
  color: #FF6B35;
  font-weight: 700;
  margin-bottom: 10px;
}
.skill-up .level-system .level-grid .level-card .level-content .level-detail ul {
  list-style: none;
}
.skill-up .level-system .level-grid .level-card .level-content .level-detail ul li {
  padding: 3px 0;
  font-size: 13px;
  color: #555555;
  position: relative;
  padding-left: 15px;
}
.skill-up .level-system .level-grid .level-card .level-content .level-detail ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4ECDC4;
}
.skill-up .level-system .level-grid .level-card .level-content .level-job {
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
  border-radius: 10px;
}
.skill-up .level-system .level-grid .level-card .level-content .level-job .job-label {
  display: block;
  font-size: 11px;
  color: #FF6B35;
  font-weight: 700;
  margin-bottom: 5px;
}
.skill-up .level-system .level-grid .level-card .level-content .level-job p {
  font-size: 13px;
  color: #2C3E50;
  margin: 0;
}
.skill-up .curriculum-section {
  margin-bottom: 100px;
}
.skill-up .curriculum-section .curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card .curriculum-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card .curriculum-header i {
  font-size: 32px;
  color: #FF6B35;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card .curriculum-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2C3E50;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card .curriculum-list {
  list-style: none;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card .curriculum-list li {
  padding: 12px 0;
  color: #555555;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 30px;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card .curriculum-list li:last-child {
  border-bottom: none;
}
.skill-up .curriculum-section .curriculum-grid .curriculum-card .curriculum-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 700;
}
.skill-up .customize-examples {
  margin-bottom: 100px;
}
.skill-up .customize-examples .example-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.skill-up .customize-examples .example-grid .example-card {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
  border-radius: 15px;
  transition: all 0.5s ease;
}
.skill-up .customize-examples .example-grid .example-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
}
.skill-up .customize-examples .example-grid .example-card:hover .example-icon i,
.skill-up .customize-examples .example-grid .example-card:hover h4,
.skill-up .customize-examples .example-grid .example-card:hover p {
  color: #FFFFFF;
}
.skill-up .customize-examples .example-grid .example-card .example-icon {
  margin-bottom: 15px;
}
.skill-up .customize-examples .example-grid .example-card .example-icon i {
  font-size: 48px;
  color: #FF6B35;
  transition: all 0.3s ease;
}
.skill-up .customize-examples .example-grid .example-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.skill-up .customize-examples .example-grid .example-card p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.skill-up .pricing-section .pricing-box {
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.skill-up .pricing-section .pricing-box .main-price {
  padding: 60px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  text-align: center;
}
.skill-up .pricing-section .pricing-box .main-price h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.skill-up .pricing-section .pricing-box .main-price .price-display {
  margin-bottom: 20px;
}
.skill-up .pricing-section .pricing-box .main-price .price-display .price-num {
  font-size: 72px;
  font-weight: 900;
}
.skill-up .pricing-section .pricing-box .main-price .price-display .price-unit {
  font-size: 24px;
  margin-left: 10px;
}
.skill-up .pricing-section .pricing-box .main-price .price-detail {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}
.skill-up .pricing-section .pricing-box .additional-pricing {
  padding: 40px;
}
.skill-up .pricing-section .pricing-box .additional-pricing h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
}
.skill-up .pricing-section .pricing-box .additional-pricing .option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.skill-up .pricing-section .pricing-box .additional-pricing .option-grid .option-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  text-align: center;
}
.skill-up .pricing-section .pricing-box .additional-pricing .option-grid .option-item .option-label {
  display: block;
  font-size: 14px;
  color: #555555;
  margin-bottom: 10px;
}
.skill-up .pricing-section .pricing-box .additional-pricing .option-grid .option-item .option-price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #FF6B35;
}

.cta-section {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  overflow: hidden;
}
.cta-section .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta-section .cta-bg .cta-animation {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
  animation: drift 15s linear infinite;
}
.cta-section .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
}
.cta-section .cta-content .cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}
.cta-section .cta-content .cta-title span {
  display: block;
  font-size: 36px;
  font-weight: 400;
  opacity: 0.95;
  margin-top: 10px;
}
.cta-section .cta-content .cta-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}
.cta-section .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-section .cta-content .cta-buttons .btn-cta {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-section .cta-content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.cta-section .cta-content .cta-buttons .btn-cta.btn-primary {
  background: #FFFFFF;
  color: #FF6B35;
}
.cta-section .cta-content .cta-buttons .btn-cta.btn-primary:hover {
  background: rgb(242.25, 242.25, 242.25);
}
.cta-section .cta-content .cta-buttons .btn-cta.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.cta-section .cta-content .cta-buttons .btn-cta.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cta-section .cta-content .cta-buttons .btn-cta.btn-line {
  background: #00B900;
  color: #FFFFFF;
}
.cta-section .cta-content .cta-buttons .btn-cta.btn-line:hover {
  background: #008600;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(100px, 100px);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}
.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .national-license .license-grid {
    grid-template-columns: 1fr;
  }
  .skill-up .skill-features {
    grid-template-columns: 1fr;
  }
  .skill-up .level-system .level-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .skill-up .curriculum-section .curriculum-grid {
    grid-template-columns: 1fr;
  }
  .skill-up .customize-examples .example-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 60px;
  }
  .section-header .section-title .title-ja {
    font-size: 32px;
  }
  .section-header .section-subtitle {
    font-size: 14px;
  }
  .national-license .experience-course .experience-content {
    flex-direction: column;
  }
  .national-license .experience-course .experience-content .btn-consult {
    width: 100%;
    margin-top: 20px;
  }
  .skill-up .subsection-title {
    font-size: 28px;
  }
  .skill-up .level-system .level-grid {
    grid-template-columns: 1fr;
  }
  .skill-up .customize-examples .example-grid {
    grid-template-columns: 1fr;
  }
  .skill-up .pricing-section .pricing-box .main-price {
    padding: 40px;
  }
  .skill-up .pricing-section .pricing-box .main-price .price-display .price-num {
    font-size: 48px;
  }
  .skill-up .pricing-section .pricing-box .main-price .price-display .price-unit {
    font-size: 18px;
  }
  .skill-up .pricing-section .pricing-box .additional-pricing .option-grid {
    grid-template-columns: 1fr;
  }
  .cta-section .cta-content .cta-title {
    font-size: 32px;
  }
  .cta-section .cta-content .cta-title span {
    font-size: 24px;
  }
  .cta-section .cta-content .cta-text {
    font-size: 14px;
  }
  .cta-section .cta-content .cta-buttons {
    flex-direction: column;
  }
  .cta-section .cta-content .cta-buttons .btn-cta {
    width: 100%;
  }
}
.contact-options {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #FFFFFF 100%);
}
@media (max-width: 768px) {
  .contact-options {
    padding: 60px 0;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.5s ease;
  text-align: center;
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.contact-card.popular {
  border: 2px solid #FF6B35;
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .contact-card.popular {
    transform: scale(1);
  }
}
.contact-card.popular:hover {
  transform: scale(1.08) translateY(-5px);
}
@media (max-width: 1024px) {
  .contact-card.popular:hover {
    transform: translateY(-5px);
  }
}
.contact-card .card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-card .card-badge i {
  color: #FFD93D;
}
.contact-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 50%;
}
.contact-card .card-icon i {
  font-size: 36px;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.contact-card .card-title {
  font-size: 24px;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 20px;
}
.contact-card .card-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 40px;
}
.contact-card .card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.contact-card .card-features .feature-item {
  font-size: 13px;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-card .card-features .feature-item i {
  color: #4ECDC4;
  font-size: 12px;
}
.contact-card .card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact-card .card-button.primary {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
}
.contact-card .card-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}
.contact-card .card-button.secondary {
  background: #FFFFFF;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}
.contact-card .card-button.secondary:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-3px);
}
.contact-card .card-button.tertiary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #FFFFFF;
}
.contact-card .card-button.tertiary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.contact-card .card-note {
  margin-top: 20px;
  font-size: 12px;
  color: #aaaaaa;
}

.contact-form-section {
  padding: 100px 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }
}

.form-wrapper {
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
  padding: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .form-header {
    padding: 40px;
  }
}

.form-title {
  font-size: 28px;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 20px;
}
.form-title i {
  color: #FF6B35;
  margin-right: 10px;
}

.form-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}
.form-desc .required {
  color: #e74c3c;
  font-weight: 700;
}

.contact-form {
  padding: 60px;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 40px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  margin-bottom: 40px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}
.form-label .required {
  color: #e74c3c;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.form-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-helper {
  display: block;
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 6px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #555555;
}
.radio-label input[type=radio],
.radio-label input[type=checkbox],
.checkbox-label input[type=radio],
.checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.radio-label:hover,
.checkbox-label:hover {
  color: #FF6B35;
}

.form-privacy {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(78, 205, 196, 0.02));
  border-radius: 12px;
  margin-bottom: 40px;
}
.form-privacy h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
}
.form-privacy .privacy-text {
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 20px;
}
.form-privacy .privacy-text p {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}
.form-privacy .required-check {
  font-weight: 700;
}

/* 送信ボタンのデザイン */
.form-buttons {
  text-align: center;
  margin-top: 40px;
}

.wpcf7-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 50px !important;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  min-width: 200px !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.wpcf7-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
}

/* スピナー調整 */
.wpcf7-spinner {
  margin-left: 15px !important;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .wpcf7-submit {
    width: 100% !important;
  }
}
.wpcf7-list-item-label::before {
  content: none !important;
}

.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #FFFFFF 100%);
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .faq-categories {
    gap: 8px;
  }
}

.faq-category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  color: #555555;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-category-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
.faq-category-btn i {
  font-size: 16px;
}
.faq-category-btn:hover {
  border-color: #FF6B35;
  color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
}
.faq-category-btn.active {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-color: transparent;
  color: #FFFFFF;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-group {
  display: none;
}
.faq-group.active {
  display: block;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.faq-item.active {
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}
.faq-item.active .faq-question {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 40px;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.faq-question {
  width: 100%;
  padding: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.faq-question .q-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
}
.faq-question .question-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #2C3E50;
}
@media (max-width: 768px) {
  .faq-question .question-text {
    font-size: 15px;
  }
}
.faq-question i {
  flex-shrink: 0;
  color: #aaaaaa;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0 40px;
  display: flex;
  gap: 20px;
}
.faq-answer .a-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 205, 196, 0.1);
  color: #4ECDC4;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
}
.faq-answer .answer-text {
  flex: 1;
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
}
.faq-answer .answer-text p {
  margin-bottom: 20px;
}
.faq-answer .answer-text p:last-child {
  margin-bottom: 0;
}
.faq-answer .answer-text ul {
  padding-left: 20px;
  margin: 20px 0;
}
.faq-answer .answer-text ul li {
  margin-bottom: 8px;
}

.faq-footer {
  margin-top: 60px;
  text-align: center;
}
.faq-footer .faq-note {
  font-size: 15px;
  color: #555555;
  margin-bottom: 40px;
}
.faq-footer .faq-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .faq-footer .faq-buttons {
    flex-direction: column;
  }
}
.faq-footer .faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #FFFFFF;
  color: #FF6B35;
  border: 2px solid #FF6B35;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.faq-footer .faq-btn:hover {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

.access-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}
@media (max-width: 1024px) {
  .access-content {
    grid-template-columns: 1fr;
  }
}

.access-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.access-map iframe {
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.access-map iframe:hover {
  filter: grayscale(0%);
}

.access-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.info-card .info-title {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card .info-title i {
  color: #FF6B35;
}
.info-card .info-list dt {
  font-size: 13px;
  color: #aaaaaa;
  margin-top: 20px;
  margin-bottom: 4px;
}
.info-card .info-list dd {
  font-size: 15px;
  color: #2C3E50;
  margin-bottom: 20px;
  margin-left: 0;
}
.info-card .info-list .tel-number {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
}
.info-card .info-note {
  margin-top: 20px;
  padding: 12px;
  background: rgba(255, 217, 61, 0.1);
  border-radius: 8px;
  font-size: 13px;
  color: rgb(163, 131.0721649485, 0);
}
.info-card .info-note i {
  margin-right: 6px;
}
.info-card .contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.info-card .contact-buttons .contact-btn {
  flex: 1;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}
.info-card .contact-buttons .contact-btn.tel {
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  color: #FFFFFF;
}
.info-card .contact-buttons .contact-btn.tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.info-card .contact-buttons .contact-btn.line {
  background: #00C300;
  color: #FFFFFF;
}
.info-card .contact-buttons .contact-btn.line:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 195, 0, 0.3);
}

.contact-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #FF6B35, #4ECDC4);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 10px, transparent 10px, transparent 20px);
  animation: slide 20s linear infinite;
}
.contact-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-cta .cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.contact-cta .cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.contact-cta .cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact-cta .cta-features {
    gap: 20px;
  }
}
.contact-cta .cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-cta .cta-feature i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 20px;
  color: #FFFFFF;
}
.contact-cta .cta-feature span {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 700;
}
.contact-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-cta .cta-buttons .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.contact-cta .cta-buttons .cta-btn.primary {
  background: #FFFFFF;
  color: #FF6B35;
}
.contact-cta .cta-buttons .cta-btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.contact-cta .cta-buttons .cta-btn.secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.contact-cta .cta-buttons .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

@keyframes slide {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(20px, 20px);
  }
}
@media (max-width: 768px) {
  .contact-cards .contact-card {
    padding: 40px;
  }
  .contact-cards .contact-card .card-title {
    font-size: 20px;
  }
  .contact-cards .contact-card .card-desc {
    font-size: 14px;
  }
  .form-wrapper {
    border-radius: 0;
  }
  .faq-item .faq-question {
    padding: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
  .cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}