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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  background-color: #FAFAFA;
  overflow-x: hidden;
  cursor: none;
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: none;
}
@media (max-width: 768px) {
  a {
    cursor: pointer;
  }
}

button {
  cursor: none;
}
@media (max-width: 768px) {
  button {
    cursor: pointer;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #06C755;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor--hover {
  width: 40px;
  height: 40px;
  background-color: #06C755;
}
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid #06C755;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-follower--hover {
  width: 60px;
  height: 60px;
  border-color: #06C755;
}
@media (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.loading__logo {
  margin-bottom: 60px;
  overflow: hidden;
}
.loading__logo-text {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  animation: loadingLogoIn 1s ease-out forwards;
}
.loading__progress {
  width: 200px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 auto 24px;
  overflow: hidden;
}
.loading__progress-bar {
  width: 0;
  height: 100%;
  background-color: #06C755;
  transition: width 0.1s ease-out;
}
.loading__counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.loading__counter-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  min-width: 36px;
  text-align: right;
}
.loading__counter-percent {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
}
.loading__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.loading__line {
  position: absolute;
  background-color: rgba(6, 199, 85, 0.05);
}
.loading__line--1 {
  width: 1px;
  height: 100%;
  left: 25%;
  animation: loadingLineV 2s ease-in-out infinite;
}
.loading__line--2 {
  width: 1px;
  height: 100%;
  left: 50%;
  animation: loadingLineV 2s ease-in-out infinite 0.3s;
}
.loading__line--3 {
  width: 1px;
  height: 100%;
  left: 75%;
  animation: loadingLineV 2s ease-in-out infinite 0.6s;
}

@keyframes loadingLogoIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loadingLineV {
  0%, 100% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background-color: #06C755;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #000000;
}
.section-title__line {
  display: block;
}
.section-title em {
  font-style: normal;
  color: #06C755;
  position: relative;
}
.section-title--white {
  color: #FFFFFF;
}
.section-title--white em {
  color: #3DD67C;
}
.section-title--large {
  font-size: clamp(2.5rem, 7vw, 6rem);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header--scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0 24px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.header__logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
}
@media (max-width: 968px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 968px) {
  .header__nav-list {
    flex-direction: column;
    gap: 32px;
  }
}
.header__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000000;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #06C755;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-link:hover {
  color: #000000;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-link--contact {
  color: #FFFFFF;
  padding: 14px 32px;
  background-color: #06C755;
  font-weight: 600;
}
.header__nav-link--contact::after {
  display: none;
}
.header__nav-link--contact:hover {
  background-color: #05A647;
  color: #FFFFFF;
}
@media (max-width: 968px) {
  .header__nav-link {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  z-index: 1001;
}
@media (max-width: 968px) {
  .header__menu-btn {
    display: flex;
  }
}
.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header__menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #FFFFFF;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 1000px;
}
.hero__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero__tag-line {
  width: 60px;
  height: 2px;
  background-color: #06C755;
}
.hero__tag-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
}
.hero__title {
  margin-bottom: 40px;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line--1 {
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero__title-line--2 {
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero__title-line--3 {
  animation: fadeInUp 1s ease-out 0.7s both;
}
.hero__title-word {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #000000;
}
.hero__title-word--accent {
  color: #06C755;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}
.hero__subtitle {
  font-size: 1rem;
  line-height: 2.2;
  color: #000000;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 0.9s both;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 0.9375rem;
  }
  .hero__subtitle br {
    display: none;
  }
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s ease-out 1.1s both;
}
.hero__scroll-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000000;
}
.hero__scroll-line-wrapper {
  width: 1px;
  height: 80px;
  background-color: rgba(26, 26, 26, 0.15);
  overflow: hidden;
}
.hero__scroll-line {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #06C755;
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  background-color: #06C755;
  overflow: hidden;
}
.hero__marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.hero__marquee-track span {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about {
  position: relative;
  padding: 180px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    padding: 100px 0;
  }
}
.about__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .about__container {
    padding: 0 24px;
  }
}
.about__header {
  margin-bottom: 80px;
  max-width: 800px;
}
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 0;
}
@media (max-width: 968px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.about__text {
  padding-top: 20px;
}
.about__lead {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #000000;
}
.about__description {
  font-size: 1rem;
  color: #000000;
  line-height: 2;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about__stat {
  text-align: center;
  padding: 40px 24px;
  background-color: #FAFAFA;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.about__stat.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.about__stat:nth-child(2) {
  transition-delay: 0.1s;
}
.about__stat:nth-child(3) {
  transition-delay: 0.2s;
}
.about__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #06C755;
}
.about__stat-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #06C755;
  line-height: 1;
  margin-bottom: 12px;
}
.about__stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
}

.vision {
  position: relative;
  padding: 180px 0;
  background-color: #1A1A1A;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vision {
    padding: 100px 0;
  }
}
.vision__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .vision__container {
    padding: 0 24px;
  }
}
.vision__header {
  margin-bottom: 80px;
}
.vision__header .section-label {
  color: #3DD67C;
}
.vision__header .section-label::before {
  background-color: #06C755;
}
.vision__content {
  max-width: 900px;
}
.vision__main {
  max-width: 900px;
}
.vision__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.vision__catchphrase em {
  color: #3DD67C;
  font-style: normal;
}
.vision__description p {
  font-size: 1rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.vision__statement {
  font-weight: 600;
  color: #FFFFFF !important;
  padding-left: 24px;
  border-left: 3px solid #06C755;
}

.services {
  position: relative;
  padding: 180px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services {
    padding: 100px 0;
  }
}
.services__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .services__container {
    padding: 0 24px;
  }
}
.services__header {
  margin-bottom: 80px;
  text-align: center;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background-color: #FAFAFA;
  border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 48px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}
.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2) {
  transition-delay: 0.1s;
}
.service-card:nth-child(3) {
  transition-delay: 0.2s;
}
.service-card:nth-child(4) {
  transition-delay: 0.3s;
}
.service-card:hover {
  border-color: #06C755;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(6, 199, 85, 0.1);
}
@media (max-width: 768px) {
  .service-card {
    padding: 32px 24px;
  }
}
.service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.service-card__number {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #06C755;
}
.service-card__logo {
  text-align: right;
}
.service-card__logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}
.service-card__logo-text--furupochi {
  color: #06C755;
}
.service-card__logo-text--mokare {
  color: #06C755;
}
.service-card__logo-text--ene {
  color: #06C755;
}
.service-card__logo-text--wakey {
  color: #3B82F6;
}
.service-card__logo-sub {
  font-size: 0.75rem;
  color: #000000;
  font-weight: 500;
}
.service-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.5;
}
.service-card__text {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.9;
  margin-bottom: 24px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card__tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(6, 199, 85, 0.1);
  color: #05A647;
  font-size: 0.75rem;
  font-weight: 500;
}

.company {
  position: relative;
  padding: 180px 0;
  background-color: #FAFAFA;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company {
    padding: 100px 0;
  }
}
.company__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .company__container {
    padding: 0 24px;
  }
}
.company__header {
  margin-bottom: 60px;
}
.company__list {
  display: flex;
  flex-direction: column;
}
.company__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.company__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.company__item:nth-child(1) {
  transition-delay: 0.05s;
}
.company__item:nth-child(2) {
  transition-delay: 0.1s;
}
.company__item:nth-child(3) {
  transition-delay: 0.15s;
}
.company__item:nth-child(4) {
  transition-delay: 0.2s;
}
.company__item:nth-child(5) {
  transition-delay: 0.25s;
}
.company__item:nth-child(6) {
  transition-delay: 0.3s;
}
.company__item:nth-child(7) {
  transition-delay: 0.35s;
}
.company__item:nth-child(8) {
  transition-delay: 0.4s;
}
.company__item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .company__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.company__term {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
}
.company__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #000000;
}

.contact {
  padding: 200px 0;
  background-color: #1A1A1A;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact {
    padding: 120px 0;
  }
}
.contact__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .contact__container {
    padding: 0 24px;
  }
}
.contact__content {
  max-width: 800px;
}
.contact__content .section-label {
  color: #06C755;
}
.contact__content .section-label::before {
  background-color: #06C755;
}
.contact__content .section-title {
  margin-bottom: 40px;
}
.contact__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  line-height: 2;
}
@media (max-width: 768px) {
  .contact__text br {
    display: none;
  }
}
.contact__buttons {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact__buttons {
    flex-direction: column;
  }
}
.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__btn--primary {
  background-color: #06C755;
  color: #FFFFFF;
}
.contact__btn--primary:hover {
  background-color: #05A647;
  transform: translateX(8px);
}
.contact__btn--primary:hover .contact__btn-icon {
  transform: translateX(4px);
}
.contact__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.contact__btn--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}
.contact__btn-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding: 80px 0 40px;
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .footer__container {
    padding: 0 24px;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__main {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__brand {
  max-width: 400px;
}
.footer__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  display: block;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: #000000;
}
.footer__nav-list {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__nav-list {
    flex-wrap: wrap;
    gap: 24px 40px;
  }
}
.footer__nav-list a {
  font-size: 0.875rem;
  color: #000000;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-list a:hover {
  color: #06C755;
}
.footer__services {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 40px;
}
.footer__services-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 16px;
}
.footer__services-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__services-list span {
  font-size: 0.9375rem;
  color: #000000;
  font-weight: 500;
}
.footer__bottom {
  text-align: center;
}
.footer__copyright {
  font-size: 0.75rem;
  color: #000000;
  letter-spacing: 0.05em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.legal-hero {
  background-color: #FAFAFA;
  padding: 180px 0 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .legal-hero {
    padding: 140px 0 60px;
  }
}
.legal-hero__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-hero__label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 24px;
}
.legal-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
}

.legal-content {
  padding: 80px 0 120px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .legal-content {
    padding: 60px 0 80px;
  }
}
.legal-content__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-content__intro {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.legal-content__intro p {
  font-size: 1rem;
  line-height: 2;
  color: #000000;
}

.legal-section {
  margin-bottom: 48px;
}
.legal-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid #06C755;
}
.legal-section p {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000000;
  margin-bottom: 16px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 16px 0;
  padding-left: 24px;
}
.legal-list li {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000000;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background-color: #06C755;
  border-radius: 50%;
}
.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-contact {
  background-color: #FAFAFA;
  padding: 32px;
  margin-top: 24px;
}
.legal-contact p {
  margin-bottom: 16px;
}
.legal-contact__info p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-contact__info p strong {
  font-weight: 700;
}

.legal-date {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.legal-date p {
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 8px;
}

.legal-signature {
  margin-top: 24px;
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.8;
}

.news-content {
  padding: 80px 0 120px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .news-content {
    padding: 60px 0 80px;
  }
}
.news-content__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.news-item:nth-child(1) {
  transition-delay: 0.05s;
}
.news-item:nth-child(2) {
  transition-delay: 0.1s;
}
.news-item:nth-child(3) {
  transition-delay: 0.15s;
}
.news-item:nth-child(4) {
  transition-delay: 0.2s;
}
.news-item:nth-child(5) {
  transition-delay: 0.25s;
}
.news-item:nth-child(6) {
  transition-delay: 0.3s;
}
.news-item:nth-child(7) {
  transition-delay: 0.35s;
}
.news-item:nth-child(8) {
  transition-delay: 0.4s;
}
.news-item:nth-child(9) {
  transition-delay: 0.45s;
}
.news-item:nth-child(10) {
  transition-delay: 0.5s;
}
.news-item:first-child {
  padding-top: 0;
}
.news-item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.news-item__date {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .news-item__date {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
}
.news-item__year {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
  letter-spacing: 0.1em;
}
.news-item__day {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
}
.news-item__content {
  flex: 1;
}
.news-item__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
  padding: 4px 12px;
  background-color: rgba(6, 199, 85, 0.1);
  margin-bottom: 12px;
}
.news-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.6;
}
.news-item__text {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #000000;
}

.footer__legal {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__legal {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__legal a {
  font-size: 0.8125rem;
  color: #000000;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__legal a:hover {
  color: #06C755;
}
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1A1A1A;
  overflow: hidden;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}
.page-hero__label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.page-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.page-hero__subtitle {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1s ease-out 0.7s both;
}
@media (max-width: 768px) {
  .page-hero__subtitle br {
    display: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-overview {
  padding: 120px 0;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .services-overview {
    padding: 80px 0;
  }
}
.services-overview__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .services-overview__container {
    padding: 0 24px;
  }
}
.services-overview__intro {
  text-align: center;
}
.services-overview__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 32px;
}
.services-overview__title em {
  color: #06C755;
  font-style: normal;
}
.services-overview__text {
  font-size: 1rem;
  line-height: 2.2;
  color: #000000;
}

.service-detail {
  position: relative;
  padding: 160px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-detail {
    padding: 100px 0;
  }
}
.service-detail--alt {
  background-color: #FAFAFA;
}
.service-detail__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .service-detail__container {
    padding: 0 24px;
  }
}
.service-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .service-detail__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
}
.service-detail__number {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #06C755;
  padding: 12px 20px;
  border: 2px solid #06C755;
}
.service-detail__brand {
  flex: 1;
}
.service-detail__name {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 8px;
}
.service-detail__name-en {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #06C755;
}
.service-detail__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 968px) {
  .service-detail__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.service-detail__content--reverse {
  direction: rtl;
}
.service-detail__content--reverse > * {
  direction: ltr;
}
@media (max-width: 968px) {
  .service-detail__content--reverse {
    direction: ltr;
  }
}
.service-detail__main {
  max-width: 550px;
}
.service-detail__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 24px;
}
.service-detail__desc {
  font-size: 1rem;
  line-height: 2;
  color: #000000;
  margin-bottom: 48px;
}
.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-detail__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
  border-left: 3px solid #06C755;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail__feature.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.service-detail__feature:nth-child(2) {
  transition-delay: 0.1s;
}
.service-detail__feature:nth-child(3) {
  transition-delay: 0.2s;
}
.service-detail__feature-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
}
.service-detail__feature-text {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.7;
}
.service-detail__visual {
  display: flex;
  justify-content: center;
}
@media (max-width: 968px) {
  .service-detail__visual {
    order: -1;
  }
}
.service-detail__mockup {
  position: relative;
}
.service-detail__phone {
  width: 280px;
  height: 580px;
  background-color: #000000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .service-detail__phone {
    width: 240px;
    height: 500px;
  }
}
.service-detail__phone-screen {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
}
.service-detail__phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-detail__tag {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(6, 199, 85, 0.1);
  color: #05A647;
  font-size: 0.8125rem;
  font-weight: 600;
}

.service-cta {
  padding: 160px 0;
  background-color: #1A1A1A;
  text-align: center;
}
@media (max-width: 768px) {
  .service-cta {
    padding: 100px 0;
  }
}
.service-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .service-cta__container {
    padding: 0 24px;
  }
}
.service-cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.service-cta__text {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .service-cta__text br {
    display: none;
  }
}
.service-cta__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
  .service-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.service-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-cta__btn--primary {
  background-color: #06C755;
  color: #FFFFFF;
}
.service-cta__btn--primary:hover {
  background-color: #05A647;
  transform: translateY(-2px);
}
.service-cta__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.service-cta__btn--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.header--dark .header__logo-text {
  color: #FFFFFF;
}
.header--dark .header__nav-link {
  color: rgba(255, 255, 255, 0.7);
}
.header--dark .header__nav-link:hover {
  color: #FFFFFF;
}
.header--dark .header__nav-link--active {
  color: #FFFFFF;
}
.header--dark .header__nav-link--active::after {
  width: 100%;
}
.header--dark .header__nav-link--contact {
  color: #FFFFFF;
}
.header--dark .header__menu-btn span {
  background-color: #FFFFFF;
}
.header--dark.header--scrolled .header__logo-text {
  color: #000000;
}
.header--dark.header--scrolled .header__nav-link {
  color: #000000;
}
.header--dark.header--scrolled .header__nav-link:hover {
  color: #06C755;
}
.header--dark.header--scrolled .header__nav-link--contact {
  color: #FFFFFF;
}
.header--dark.header--scrolled .header__menu-btn span {
  background-color: #000000;
}
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1A1A1A;
  overflow: hidden;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}
.page-hero__label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.page-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.page-hero__subtitle {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1s ease-out 0.7s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.message {
  position: relative;
  padding: 180px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .message {
    padding: 100px 0;
  }
}
.message__container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .message__container {
    padding: 0 24px;
  }
}
.message__header {
  margin-bottom: 80px;
}
.message__label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.message__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background-color: #06C755;
}
.message__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #000000;
}
.message__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.message__text-area {
  max-width: 800px;
}
.message__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 48px;
  position: relative;
  padding-left: 32px;
}
.message__catch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #06C755;
}
.message__body {
  margin-bottom: 60px;
}
.message__body p {
  font-size: 1rem;
  line-height: 2.4;
  color: #000000;
  margin-bottom: 32px;
}
.message__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .message__body p br {
    display: none;
  }
}
.message__signature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.message__signature-title {
  font-size: 0.875rem;
  color: #000000;
}
.message__signature-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
}

.company-info {
  position: relative;
  padding: 180px 0;
  background-color: #FAFAFA;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company-info {
    padding: 100px 0;
  }
}
.company-info__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .company-info__container {
    padding: 0 24px;
  }
}
.company-info__header {
  margin-bottom: 60px;
}
.company-info__label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.company-info__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background-color: #06C755;
}
.company-info__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #000000;
}
.company-info__list {
  display: flex;
  flex-direction: column;
}
.company-info__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-info__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.company-info__item:nth-child(1) {
  transition-delay: 0.05s;
}
.company-info__item:nth-child(2) {
  transition-delay: 0.1s;
}
.company-info__item:nth-child(3) {
  transition-delay: 0.15s;
}
.company-info__item:nth-child(4) {
  transition-delay: 0.2s;
}
.company-info__item:nth-child(5) {
  transition-delay: 0.25s;
}
.company-info__item:nth-child(6) {
  transition-delay: 0.3s;
}
.company-info__item:nth-child(7) {
  transition-delay: 0.35s;
}
.company-info__item:nth-child(8) {
  transition-delay: 0.4s;
}
.company-info__item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .company-info__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.company-info__term {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
}
.company-info__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
}

.company-cta {
  padding: 160px 0;
  background-color: #1A1A1A;
  text-align: center;
}
@media (max-width: 768px) {
  .company-cta {
    padding: 100px 0;
  }
}
.company-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .company-cta__container {
    padding: 0 24px;
  }
}
.company-cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.company-cta__text {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .company-cta__text br {
    display: none;
  }
}
.company-cta__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
  .company-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.company-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-cta__btn--primary {
  background-color: #06C755;
  color: #FFFFFF;
}
.company-cta__btn--primary:hover {
  background-color: #05A647;
  transform: translateY(-2px);
}
.company-cta__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.company-cta__btn--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.header--dark .header__logo-text {
  color: #FFFFFF;
}
.header--dark .header__nav-link {
  color: rgba(255, 255, 255, 0.7);
}
.header--dark .header__nav-link:hover {
  color: #FFFFFF;
}
.header--dark .header__nav-link--active {
  color: #FFFFFF;
}
.header--dark .header__nav-link--active::after {
  width: 100%;
}
.header--dark .header__nav-link--contact {
  color: #FFFFFF;
}
.header--dark .header__menu-btn span {
  background-color: #FFFFFF;
}
.header--dark.header--scrolled .header__logo-text {
  color: #000000;
}
.header--dark.header--scrolled .header__nav-link {
  color: #000000;
}
.header--dark.header--scrolled .header__nav-link:hover {
  color: #06C755;
}
.header--dark.header--scrolled .header__nav-link--contact {
  color: #FFFFFF;
}
.header--dark.header--scrolled .header__menu-btn span {
  background-color: #000000;
}

/* 404 Page */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAFAFA;
  padding: 120px 24px;
}
.error-404__container {
  text-align: center;
  max-width: 600px;
}
.error-404__label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  color: rgba(6, 199, 85, 0.15);
  line-height: 1;
  margin-bottom: 24px;
}
.error-404__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}
.error-404__text {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 40px;
}
.error-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: #06C755;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.error-404__btn:hover {
  background-color: #05A647;
  transform: translateY(-2px);
}

/* Archive Content */
.archive-content {
  padding: 180px 0 120px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .archive-content {
    padding: 140px 0 80px;
  }
}
.archive-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 968px) {
  .archive-content__container {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}
.archive-item {
  background-color: #FAFAFA;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.archive-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}
.archive-item__link {
  display: block;
}
.archive-item__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.archive-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archive-item:hover .archive-item__image img {
  transform: scale(1.05);
}
.archive-item__content {
  padding: 32px;
}
.archive-item__date {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
  margin-bottom: 12px;
  display: block;
}
.archive-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.6;
}
.archive-item__excerpt {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.8;
}

/* No Content */
.no-content {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  background-color: #FAFAFA;
}
.no-content__container {
  text-align: center;
}
.no-content__container h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}
.no-content__container p {
  color: #000000;
}

/* Entry Content (WordPress) */
.entry-content {
  font-size: 1rem;
  line-height: 2;
  color: #000000;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
  margin-top: 48px;
  margin-bottom: 16px;
}
.entry-content h2 {
  font-size: 1.5rem;
  padding-left: 16px;
  border-left: 3px solid #06C755;
}
.entry-content h3 {
  font-size: 1.25rem;
}
.entry-content h4 {
  font-size: 1.125rem;
}
.entry-content p {
  margin-bottom: 24px;
}
.entry-content ul,
.entry-content ol {
  margin: 24px 0;
  padding-left: 24px;
}
.entry-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}
.entry-content ol li {
  list-style-type: decimal;
}
.entry-content a {
  color: #06C755;
  text-decoration: underline;
}
.entry-content a:hover {
  color: #05A647;
}
.entry-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background-color: #FAFAFA;
  border-left: 4px solid #06C755;
}
.entry-content blockquote p {
  margin-bottom: 0;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
}
.entry-content table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
}
.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}
.entry-content th {
  background-color: #FAFAFA;
  font-weight: 600;
}

.entry-thumbnail {
  margin-bottom: 40px;
}
.entry-thumbnail img {
  width: 100%;
  height: auto;
}

.entry-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Post Navigation */
.post-navigation {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }
}
.nav-previous,
.nav-next {
  flex: 1;
}
.nav-next {
  text-align: right;
}
@media (max-width: 768px) {
  .nav-next {
    text-align: left;
  }
}
.nav-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
  margin-bottom: 8px;
}
.nav-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}

/* News Navigation */
.news-navigation {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.news-navigation__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #06C755;
  transition: color 0.3s ease;
}
.news-navigation__back:hover {
  color: #05A647;
}

.news-single__category {
  margin-bottom: 24px;
}

/* Pagination */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  background-color: #FAFAFA;
  transition: all 0.3s ease;
}
.page-numbers:hover,
.page-numbers.current {
  background-color: #06C755;
  color: #FFFFFF;
}

/* Company Message (template-company) */
.company-message {
  position: relative;
  padding: 180px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company-message {
    padding: 100px 0;
  }
}
.company-message__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .company-message__container {
    padding: 0 24px;
  }
}
.company-message__header {
  margin-bottom: 80px;
}
.company-message__content {
  max-width: 800px;
}
.company-message__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-message__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid #06C755;
}
.company-message__text p {
  font-size: 1rem;
  line-height: 2.2;
  color: #000000;
  margin-bottom: 16px;
}
.company-message__signature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.company-message__position {
  font-size: 0.875rem;
  color: #000000;
}
.company-message__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}

/* WordPress Specific */
.wp-block-image {
  margin: 32px 0;
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
}
.wp-block-image figcaption {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  margin-top: 12px;
}

.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}
.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 24px;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: 100vw;
}
.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ==========================================
   NEWS SECTION (Front Page)
   ========================================== */
.news {
  padding: 180px 0;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .news {
    padding: 100px 0;
  }
}
.news__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .news__container {
    padding: 0 24px;
  }
}
.news__header {
  margin-bottom: 60px;
}
.news__list {
  margin-bottom: 60px;
}
.news__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.news__item:nth-child(1) { transition-delay: 0.05s; }
.news__item:nth-child(2) { transition-delay: 0.1s; }
.news__item:nth-child(3) { transition-delay: 0.15s; }
.news__item:nth-child(4) { transition-delay: 0.2s; }
.news__item:nth-child(5) { transition-delay: 0.25s; }
.news__item:first-child {
  padding-top: 0;
}
.news__item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .news__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.news__item-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .news__item-date {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
}
.news__item-year {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
  letter-spacing: 0.1em;
}
.news__item-day {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
}
.news__item-content {
  flex: 1;
}
.news__item-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
  padding: 4px 12px;
  background-color: rgba(6, 199, 85, 0.1);
  margin-bottom: 12px;
}
.news__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.7;
}
.news__item-title a {
  transition: color 0.3s ease;
}
.news__item-title a:hover {
  color: #06C755;
}
.news__more {
  text-align: center;
}
.news__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news__more-btn:hover {
  background-color: #06C755;
  border-color: #06C755;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.news__more-btn svg {
  transition: transform 0.3s ease;
}
.news__more-btn:hover svg {
  transform: translateX(4px);
}
.news__empty {
  text-align: center;
  color: #666666;
  padding: 60px 0;
}
