@charset "UTF-8";
/* ヘッダー高さ（front-page 等で calc(100vh - var(--header-height)) に利用） */
:root {
  --header-height: 99px;
  /* padding 24*2 + content 51 */
}

@media (max-width: 768px) {
  :root {
    --header-height: 83px;
    /* padding 16*2 + content 51 */
  }
}
/* ヘッダー：自身のレイアウト */
.c-header {
  background-color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s ease;
  /* スマホ版：スクロール中に非表示 */
}
@media (max-width: 768px) {
  .c-header.is-scrolling-down {
    transform: translateY(-100%);
  }
}

/* ヘッダー配下のみに適用（@scope） */
@scope (.c-header) {
  /* header active state */
  :scope.is-active .list {
    display: none;
  }
  :scope.is-active .contact {
    display: none;
  }
  /* layout */
  .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .inner {
      padding: 16px 20px;
    }
  }
  /* logo */
  .logo {
    height: 51px;
    width: 200px;
    position: relative;
    flex-shrink: 0;
  }
  .logo .link {
    display: block;
    height: 100%;
    width: 100%;
  }
  .logo .media {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 192px;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  /* navigation */
  .nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .list {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .list {
      display: none;
    }
  }
  .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu .menu-item {
    margin: 0;
  }
  .menu .menu-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #ffffff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    transition: var(--link-transition, opacity 0.2s ease);
  }
  .menu .menu-item a .dot {
    display: block;
    width: 4px;
    height: 4px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
  }
  .menu .menu-item a .text {
    flex-shrink: 0;
  }
  /* contact CTA */
  .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 51px;
    width: 167px;
    padding: 8px 26px;
    background-color: #ffffff;
    border: 0.5px solid #0bc109;
    border-radius: 500px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--link-transition, opacity 0.2s ease);
  }
  @media (max-width: 768px) {
    .contact {
      display: none;
    }
  }
  .contact .text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    color: #0bc109;
  }
  .contact .dot {
    width: 5px;
    height: 5px;
    background: #0bc109;
    border-radius: 50%;
  }
  /* trigger */
  .trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    position: relative;
    flex-shrink: 0;
    background-color: #0bc109;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    z-index: 101;
  }
  .trigger:hover {
    opacity: 0.8;
  }
  .trigger.is-active .icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .trigger.is-active .icon span:nth-child(2) {
    opacity: 0;
  }
  .trigger.is-active .icon span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .icon {
    position: relative;
    width: 20px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
    position: absolute;
  }
  .icon span:nth-child(1) {
    top: 0;
  }
  .icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .icon span:nth-child(3) {
    bottom: 0;
  }
}
/* オーバーレイ：自身のレイアウト */
.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* オーバーレイ配下のみに適用（@scope） */
@scope (.c-overlay) {
  .inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 135px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
  }
  @media (max-width: 768px) {
    .inner {
      padding: 135px 40px;
      justify-content: flex-start;
    }
  }
  .header {
    display: none;
  }
  @media (max-width: 768px) {
    .header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      width: 100%;
      padding-bottom: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  }
  .header .logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .header .logo .image {
    display: block;
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .logo .tagline {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
  }
  .header .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 2px solid #33cc00;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }
  .header .close:hover {
    opacity: 0.8;
  }
  .header .close .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
  }
  .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  }
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 32px;
    width: 560px;
    margin-top: 0;
  }
  @media (max-width: 768px) {
    .nav {
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      flex: 1;
    }
  }
  .link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 12px;
    width: 280px;
    text-decoration: none;
    color: inherit;
  }
  @media (max-width: 768px) {
    .link {
      gap: 12px;
      padding: 12px 0;
      width: 100%;
    }
  }
  .dot {
    display: block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background-color: #0bc109;
    border-radius: 50%;
  }
  @media (max-width: 768px) {
    .dot {
      width: 4px;
      height: 4px;
      background-color: #fff;
    }
  }
  .text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    line-height: 1;
  }
  .text-en {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-transform: capitalize;
  }
  .text-ja {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 14px;
  }
  .banner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 480px;
    margin-top: 0;
  }
  @media (max-width: 768px) {
    .banner {
      gap: 24px;
      width: 100%;
      margin-top: 40px;
    }
  }
  .banner .item {
    display: block;
    width: 480px;
    position: relative;
    border-radius: 18px;
    overflow: visible;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .banner .item:hover {
    opacity: 0.8;
  }
  @media (max-width: 768px) {
    .banner .item {
      width: 100%;
    }
  }
  .banner .media {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
/* ヘッダー is-active 時にオーバーレイ表示（スコープ外） */
.c-header.is-active ~ .c-overlay,
.c-header.is-active + .c-overlay {
  opacity: 1;
  visibility: visible;
}
.c-header.is-active ~ .c-overlay .content,
.c-header.is-active + .c-overlay .content {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.c-footer {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 40px;
}

@scope (.c-footer) {
  .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .logo-section .logo {
    display: flex;
    align-items: center;
  }
  .logo-section .logo .image {
    display: block;
    width: auto;
    height: auto;
    width: 192px;
    height: 49px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .logo-section .tagline {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
  }
  .nav-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .nav-column .column-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 12px;
  }
  .nav-column .column-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 9px);
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .nav-list li {
    margin: 0;
    padding: 0;
  }
  .nav-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--link-transition, color 0.2s ease);
  }
  .nav-list a::before {
    content: ">";
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
  }
  .nav-list a:hover {
    color: #ffffff;
  }
  .legal-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .legal-links {
    display: flex;
    gap: 24px;
  }
  .legal-links a {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--link-transition, color 0.2s ease);
  }
  .legal-links a:hover {
    color: #ffffff;
  }
  .copyright {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }
}
@media (max-width: 768px) {
  @scope (.c-footer) {
    padding: 60px 0 32px;
    .inner {
      padding: 0 20px;
      gap: 32px;
    }
    .nav-section {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
      padding-top: 32px;
    }
    .legal-links {
      flex-direction: column;
      gap: 12px;
    }
  }
}
/* p-service: Service items (parts-services) */
@scope (.p-services) {
  :scope {
    width: 100%;
  }
  .list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  @media (max-width: 768px) {
    .list {
      gap: 24px;
    }
  }
  .item {
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px 0 rgba(0, 17, 31, 0.04);
    padding: 80px 60px;
    gap: 80px;
  }
  .item:nth-of-type(2) {
    flex-direction: row-reverse;
  }
  @media (max-width: 768px) {
    .item:nth-of-type(2) {
      flex-direction: column;
    }
  }
  @media (max-width: 768px) {
    .item {
      flex-direction: column;
      gap: 24px;
      padding: 40px 20px;
    }
  }
  .item .visual {
    width: 420px;
    height: 236px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    text-decoration: none;
  }
  @media (max-width: 768px) {
    .item .visual {
      width: 100%;
      height: auto;
    }
  }
  .item .visual {
    position: relative;
  }
  .item .visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 18px;
    transition: background 0.3s ease;
    pointer-events: none;
  }
  .item .visual:hover::after {
    background: rgba(0, 0, 0, 0.2);
  }
  .item .visual .image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .item .body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 768px) {
    .item .body {
      padding: 0;
    }
  }
  .item .number {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--service-color, #018bff);
    line-height: 1.2;
    margin-bottom: 12px;
    margin-top: 0;
  }
  .item .category {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 8px;
    margin-top: 0;
  }
  .item .title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--service-color, #018bff);
    line-height: 1;
    border-bottom: 1px solid #ddd;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
  @media (max-width: 768px) {
    .item .title {
      font-size: 22px;
      margin-bottom: 16px;
    }
  }
  .item .desc {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin-top: 0;
  }
  .item .desc p {
    margin: 0;
  }
  .item .desc p + p {
    margin-top: 1em;
  }
}
/* p-chapter: Other Chapter section (Figma) */
@scope (.p-chapter) {
  :scope {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  @media (max-width: 768px) {
    .inner {
      gap: 40px;
    }
  }
  .title {
    font-family: "Montserrat", sans-serif;
    font-size: 88px;
    font-weight: 500;
    color: #333;
    text-align: center;
  }
  @media (max-width: 768px) {
    .title {
      font-size: 40px;
      text-align: left;
    }
  }
  .grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .grid {
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 16px;
    }
  }
  .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 588px;
    height: 278px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .item {
      width: 100%;
      height: 200px;
    }
  }
  .item .visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    z-index: 0;
  }
  .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 18px;
    z-index: 1;
    transition: background 0.3s ease;
  }
  .item:hover .visual {
    transform: scale(1.05);
  }
  .item:hover::before {
    background: rgba(0, 0, 0, 0.3);
  }
  .label {
    position: relative;
    z-index: 2;
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  @media (max-width: 768px) {
    .label {
      font-size: 24px;
    }
  }
  .label-ja {
    font-size: 18px;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .label-ja {
      font-size: 14px;
    }
  }
}
.page-services {
  width: 100%;
  min-height: calc(100vh - var(--header-height, 0px));
  position: relative;
  overflow: hidden;
}

/* c-hero: Service page hero section */
.c-hero {
  width: 100%;
  height: 326px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-hero {
    height: 240px;
  }
}

@scope (.c-hero) {
  .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
  }
  .background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  .background .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
    z-index: 0;
  }
  .content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .content {
      padding: 0 20px;
      gap: 12px;
    }
  }
  .title {
    font-family: "Montserrat", sans-serif;
    font-size: 88px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin: 0;
    text-transform: capitalize;
  }
  @media (max-width: 768px) {
    .title {
      font-size: 64px;
    }
  }
  .subtitle {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
  }
  @media (max-width: 768px) {
    .subtitle {
      font-size: 20px;
    }
  }
}
/* c-appeal: Appeal section */
.c-appeal {
  margin: 0 20px;
  padding: 160px 0;
  background-color: #ffffff;
  color: #333333;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .c-appeal {
    margin: 0 12px;
    padding: 80px 0 60px;
    border-radius: 12px;
  }
}

@scope (.c-appeal) {
  .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 120px;
  }
  @media (max-width: 768px) {
    .inner {
      padding: 0 20px;
      gap: 80px;
    }
  }
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  @media (max-width: 768px) {
    .header {
      padding: 40px 24px;
      gap: 12px;
    }
  }
  .header .message {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #333333;
    line-height: 1.6;
    margin: 0;
  }
  @media (max-width: 768px) {
    .header .message {
      font-size: 24px;
      line-height: 1.5;
    }
  }
  .header .message .highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  .item {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .item:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  @media (max-width: 768px) {
    .item {
      flex-direction: column;
      gap: 40px;
    }
    .item:nth-of-type(odd) {
      flex-direction: column;
    }
    .item .visual {
      order: -1;
    }
  }
  .content {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .text {
    width: 100%;
  }
  .paragraph {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    color: #333333;
    margin: 0;
  }
  @media (max-width: 768px) {
    .paragraph {
      font-size: 14px;
      line-height: 1.8;
    }
  }
  .visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .visual {
      width: 100%;
    }
  }
  .visual .image {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.c-service {
  width: 100%;
  background-color: rgba(51, 51, 51, 0.8);
  color: #ffffff;
  padding: 160px 0;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  .c-service {
    padding: 120px 0 80px;
  }
}

@scope (.c-service) {
  .inner {
    max-width: 960px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
  }
  @media (max-width: 768px) {
    .inner {
      padding: 0 20px;
      gap: 48px;
    }
  }
}
.c-chapter {
  width: 100%;
  background-color: #ffffff;
  padding: 120px 80px;
}
@media (max-width: 768px) {
  .c-chapter {
    padding: 80px 20px;
  }
}/*# sourceMappingURL=style.css.map */