* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #111827;
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header {
  padding: 1.2rem 0;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-header .header-logo .logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  width: 100%;
  max-width: 370px;
}

.btn-primary {
  background: #443cef;
  color: #ffffff;
  border-color: #443cef;
}
.btn-primary:hover {
  background: #3630c1;
  border-color: #3630c1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(68, 60, 239, 0.3);
}

.btn-outline {
  background: #ffffff;
  color: #111827;
  border-color: #e5e7eb;
}
.btn-outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

main {
  background: linear-gradient(to bottom, #F4F4F4, #ffffff);
}

.hero {
  position: relative;
  padding: 20px 0 100px;
  background-color: transparent;
  overflow: hidden;
  min-height: 440px;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .hero-content {
  max-width: 600px;
  padding-top: 70px;
}
.hero .hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #003D89;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.hero .hero-service-title {
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0;
}
.hero .hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero .hero-visual .nexus-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 1;
}
@media (max-width: 768px) {
  .hero .hero-visual {
    width: 100%;
    opacity: 0.2;
  }
  .hero .hero-visual .nexus-bg {
    width: 180%;
  }
}

.service-section {
  padding: 5rem 0;
  width: 100%;
}
.service-section.section-study {
  background: #ffffff;
}
.service-section.section-freelance {
  background: #f8f9fa;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-image .image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.service-image .floating-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transition: transform 0.5s ease;
}
.service-image .floating-img:hover {
  transform: scale(1.03);
}

.service-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mobile-title {
  display: none;
}

.service-info .service-text {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 10px;
  line-height: 1.8;
}
.service-info .service-skills {
  margin-bottom: 2rem;
}
.service-info .service-skills .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}
.service-info .service-skills .skills-list li {
  background: #f8f9fa;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 600;
}
.service-info .service-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 2rem 0;
  margin-top: 70px;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
footer .footer-logo {
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
}
footer .footer-links {
  display: flex;
  gap: 2rem;
}
footer .footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
footer .footer-links a:hover {
  color: #111827;
}
footer .footer-bottom {
  text-align: left;
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
}

@media (max-width: 1000px) and (min-width: 801px) {
  .service-section.section-study .floating-img,
  .service-section.section-freelance .floating-img {
    aspect-ratio: 4/5;
  }
}
@media (max-width: 800px) {
  .hero {
    min-height: 400px;
  }
  .service-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-layout.reverse .service-image {
    order: 1;
  }
  .service-layout.reverse .service-info {
    order: 2;
  }
  .service-info .service-buttons {
    align-items: stretch;
  }
  .service-info .service-buttons .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .service-section {
    padding: 3.5rem 0;
  }
}
@media (max-width: 800px) {
  .site-header {
    padding: 1rem 0;
  }
  .hero {
    padding: 10px 0 50px;
    min-height: 300px;
  }
  .hero .hero-service-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .hero .hero-content {
    padding-top: 40px;
  }
  .service-buttons .btn {
    width: 100%;
    max-width: 100%;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-bottom {
    text-align: center !important;
  }
  footer {
    margin-top: 10px;
  }
}
@media (max-width: 800px) {
  .service-info .service-text {
    margin-bottom: 20px;
  }
  .mobile-title {
    display: block;
    margin-bottom: 0;
  }
  .pc-title {
    display: none;
  }
  .service-layout .service-image {
    order: 2 !important;
  }
  .service-layout .service-info {
    order: 3 !important;
  }
  .service-layout.reverse .service-image {
    order: 2 !important;
  }
  .service-layout.reverse .service-info {
    order: 3 !important;
  }
}
@media (max-width: 480px) {
  .hero .hero-service-title {
    font-size: 2.2rem;
  }
  .service-title,
  .mobile-title {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=style.css.map */
