/* ============================================================
   Pdien Corporate Theme - Combined Custom Stylesheet
   ============================================================ */

/* === BASE RESET & TYPOGRAPHY === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans JP', sans-serif !important; background: #fff; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', 'Noto Sans JP', sans-serif !important; }
.section__num, .section__label, .section__title, .hero__title,
.header__nav-link span { font-family: 'Montserrat', sans-serif !important; }

/* === BRAND COLORS ===
   Primary:  #00ccbd
   Accent:   #15e6cd
   Dark:     #1a1a1a
   ======================== */

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-radius: 0 0 16px 16px;
}
/* Sub-pages have scrolled style by default */
.header--sub {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-radius: 0 0 16px 16px;
}
.header__logo img { height: 44px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 4px; }
.header__nav-link {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; padding: 8px 18px; transition: color 0.3s;
}
.header__nav-link span {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 0.3s, text-shadow 0.3s;
}
.header__nav-link small {
  font-family: 'Noto Sans JP', sans-serif; font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.8); margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 0.3s, text-shadow 0.3s;
}
.header.is-scrolled .header__nav-link span,
.header--sub .header__nav-link span {
  color: #1a1a1a; text-shadow: none;
}
.header.is-scrolled .header__nav-link small,
.header--sub .header__nav-link small {
  color: #888; text-shadow: none;
}
.header__nav-link:hover span { color: #00ccbd; }
.header__nav-link.is-current span { color: #00ccbd; }
.header__contact {
  display: flex; flex-direction: column; align-items: center;
  color: #fff; background: #00ccbd; padding: 12px 28px;
  border-radius: 50px; text-decoration: none; margin-left: 12px;
  transition: opacity 0.3s;
}
.header__contact span {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
}
.header__contact small {
  font-family: 'Noto Sans JP', sans-serif; font-size: 10px; font-weight: 400; margin-top: 2px; opacity: 0.85;
}
.header__contact:hover { opacity: 0.85; }
.header__contact.is-current { background: #0ab5a8; }

/* === HAMBURGER MENU === */
.hamburger {
  display: none; width: 32px; height: 32px; background: none; border: none;
  cursor: pointer; position: relative; z-index: 110;
}
.hamburger.is-open {
  position: fixed; top: 16px; right: 20px; z-index: 200;
  width: 44px; height: 44px;
  background: #f0f0f0; border-radius: 50%;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: #1a1a1a;
  position: absolute; left: 4px; transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.is-open span { width: 26px; height: 3px; left: 9px; }
.hamburger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* === MOBILE MENU (clip-path circle animation) === */
.mobile-menu {
  display: flex; position: fixed; inset: 0; z-index: 150;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  clip-path: circle(0% at calc(100% - 36px) 28px);
  visibility: hidden;
  transition: clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s 0.6s;
}
.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 36px) 28px);
  visibility: visible;
  transition: clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s;
}
.mobile-menu a {
  text-decoration: none; text-align: center; padding: 16px 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu a span {
  display: block; font-family: 'Montserrat', sans-serif; font-size: 22px;
  font-weight: 900; color: #1a1a1a; letter-spacing: 0.08em;
}
.mobile-menu a small {
  display: block; font-size: 12px; color: #888; margin-top: 4px;
}
.mobile-menu a:hover span { color: #00ccbd; }
.mobile-menu .mobile-contact {
  margin-top: 20px; padding: 16px 50px; background: #00ccbd;
  border-radius: 50px; text-align: center;
}
.mobile-menu .mobile-contact span { color: #fff; font-size: 18px; }
.mobile-menu .mobile-contact small { color: rgba(255,255,255,0.85); }
.mobile-menu__close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px; background: #1a1a1a; border: none;
  border-radius: 50%; cursor: pointer; z-index: 10;
}
.mobile-menu__close span {
  display: block; width: 24px; height: 3px; background: #fff;
  position: absolute; top: 50%; left: 50%;
}
.mobile-menu__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* === PAGE TRANSITION === */
.page-transition {
  position: fixed; inset: 0; z-index: 2000;
  background: #00ccbd;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%);
}
.page-transition.is-enter {
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition.is-exit {
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition__logo {
  opacity: 0; transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}
.page-transition.is-enter .page-transition__logo {
  opacity: 1; transition-delay: 0.15s;
}

/* === SCROLL ANIMATION === */
.scr-anim {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scr-anim.is-visible {
  opacity: 1; transform: translateY(0);
}
.scr-anim:nth-child(2) { transition-delay: 0.1s; }
.scr-anim:nth-child(3) { transition-delay: 0.2s; }
.scr-anim:nth-child(4) { transition-delay: 0.3s; }

/* === LOADING SCREEN (TOP page only) === */
.loading-screen {
  position: fixed; inset: 0; z-index: 3000;
  background: #00ccbd;
  display: flex; align-items: center; justify-content: center;
}
.loading-screen.is-done {
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s ease 0.2s;
}
.loading-text { display: flex; gap: 4px; }
.loading-text span {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 900; color: #fff;
  letter-spacing: 0.1em;
  animation: loading-bounce 1.2s ease-in-out infinite alternate;
}
@keyframes loading-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.loading-text span:nth-child(1) { animation-delay: 0s; }
.loading-text span:nth-child(2) { animation-delay: 0.1s; }
.loading-text span:nth-child(3) { animation-delay: 0.2s; }
.loading-text span:nth-child(4) { animation-delay: 0.3s; }
.loading-text span:nth-child(5) { animation-delay: 0.4s; }
.loading-text span:nth-child(6) { animation-delay: 0.5s; }
.loading-text span:nth-child(7) { animation-delay: 0.6s; }
.loading-text span:nth-child(8) { animation-delay: 0.7s; }
.loading-text span:nth-child(9) { animation-delay: 0.8s; }
.loading-text span:nth-child(10) { animation-delay: 0.9s; }

/* === FOOTER === */
.footer { background: #F8F8F8; color: #1a1a1a; padding: 80px 0 0; }
.footer__inner { width: 1150px; margin: 0 auto; padding: 0 50px; }
.footer__nav {
  display: flex; justify-content: space-between;
  padding-bottom: 60px; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer__nav-item { text-align: center; }
.footer__nav-item a { text-decoration: none; color: inherit; transition: color 0.3s; }
.footer__nav-item a:hover .footer__nav-title { color: #15e6cd; }
.footer__nav-title {
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900;
  letter-spacing: 0.03em; color: #1a1a1a; margin-bottom: 4px;
}
.footer__nav-title-ja { font-size: 12px; color: rgba(0,0,0,0.5); margin-bottom: 16px; }
.footer__nav-group { margin-bottom: 24px; }
.footer__nav-list { list-style: none; }
.footer__nav-list li { margin-bottom: 10px; }
.footer__nav-list a { color: rgba(0,0,0,0.5); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.footer__nav-list a:hover { color: #1a1a1a; }
.footer__sns-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__sns-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px; color: #1a1a1a; text-decoration: none;
  font-size: 13px; font-weight: 700; transition: all 0.3s;
}
.footer__sns-btn:hover { border-color: #1a1a1a; background: rgba(0,0,0,0.05); }
.footer__sns-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.footer__sns-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px;
}
.footer__company {
  display: flex; align-items: center; gap: 24px;
  padding: 40px 0; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer__company-logo { display: flex; align-items: center; gap: 10px; }
.footer__company-logo img { height: 40px; width: auto; }
.footer__company-name { font-size: 14px; font-weight: 700; color: rgba(0,0,0,0.6); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; padding: 24px 0;
}
.footer__policy { display: flex; gap: 24px; }
.footer__policy a { color: rgba(0,0,0,0.35); text-decoration: none; font-size: 12px; transition: color 0.3s; }
.footer__policy a:hover { color: #1a1a1a; }
.footer__copy { font-family: 'Montserrat', sans-serif; font-size: 12px; color: rgba(0,0,0,0.3); }

/* === PAGE HERO (sub-pages common) === */
.page-hero {
  position: relative; height: 400px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding-top: 80px;
  opacity: 0; transition: opacity 0.6s ease 0.3s;
}
.page-hero.is-loaded { opacity: 1; }
.page-hero__content { text-align: center; }
.page-hero__en {
  font-family: 'Montserrat', sans-serif; font-size: 4.5rem; font-weight: 900;
  color: #1a1a1a; letter-spacing: 0.05em; line-height: 1;
}
.page-hero__ja {
  font-size: 1rem; font-weight: 700; color: #555;
  letter-spacing: 0.3em; margin-top: 12px;
}
.page-hero__breadcrumb {
  position: absolute; bottom: 24px; left: 50px;
  font-size: 13px; color: #888;
}
.page-hero__breadcrumb a { color: #888; text-decoration: none; }
.page-hero__breadcrumb a:hover { color: #00ccbd; }

/* === CTA SECTION (shared) === */
.cta { position: relative; height: 400px; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.cta__inner {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; height: 100%; text-align: center;
}
.cta__title {
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900;
  color: #fff; letter-spacing: 0.15em; margin-bottom: 16px;
}
.cta__desc { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 40px; letter-spacing: 0.05em; }
.cta__btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 20px 60px;
  background: #15e6cd; border-radius: 50px; font-size: 16px; font-weight: 700;
  color: #fff; text-decoration: none; transition: all 0.3s; letter-spacing: 0.1em;
}
.cta__btn:hover { background: #0fd4bc; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,230,205,0.3); }
.cta__btn svg { width: 20px; height: 20px; }

/* === SECTION COMMON === */
.section { padding: 100px 0; }
.section--gray { background: #f5f5f5; }
.section__inner { width: 1050px; margin: 0 auto; padding: 0 50px; }
.section__header { margin-bottom: 60px; }
.section__label {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; color: #888; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.section__label::before { content: ''; width: 26px; height: 2px; background: #15e6cd; }
.section__title {
  font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900;
  color: #1a1a1a; line-height: 1; margin-bottom: 8px;
}
.section__subtitle { font-size: 14px; font-weight: 700; color: #555; letter-spacing: 0.2em; }

/* ============================================================
   === TOP PAGE ===
   ============================================================ */
.hero {
  position: relative; height: 100vh; overflow: hidden;
  background: #f0faf9; scroll-snap-align: start;
}
.hero__bg { position: absolute; inset: 0; z-index: 1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__blob { position: absolute; z-index: 2; }
.hero__blob--tl { top: 0; left: 0; width: 220px; }
.hero__blob--tr { top: 0; right: 0; width: 200px; }
.hero__blob--bl { bottom: 0; left: 0; width: 180px; }
.hero__blob--br { bottom: 0; right: 0; width: 260px; }
.hero__blob img { width: 100%; height: auto; }
.hero__content {
  position: absolute; left: 50px; bottom: 35%; z-index: 3;
  opacity: 0; transform: translateY(30px);
}
.hero__copy-sub {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: 0.15em; color: #fff; margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero__logo { width: 700px; height: auto; }
.hero__news {
  position: absolute; left: 50px; bottom: 60px; z-index: 10;
  width: 500px; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); border-radius: 12px;
  padding: 24px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  opacity: 0; transform: translateY(20px);
}
.hero.is-loaded .hero__content {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.hero.is-loaded .hero__news {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.hero__news-header { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.hero__news-label {
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 900;
  color: #1a1a1a; letter-spacing: 0.05em;
}
.hero__news-label::after {
  content: ''; display: block; width: 30px; height: 2px;
  background: #1a1a1a; margin-top: 8px;
}
.hero__news-item {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px; text-decoration: none; color: inherit; transition: opacity 0.3s;
}
.hero__news-item:hover { opacity: 0.7; }
.hero__news-date {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: #555; white-space: nowrap;
}
.hero__news-cat {
  font-size: 11px; font-weight: 700; color: #fff; background: #1a1a1a;
  padding: 3px 12px; border-radius: 4px; white-space: nowrap;
}
.hero__news-title {
  font-size: 13px; color: #333; line-height: 1.5;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hero__news-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  color: #1a1a1a; text-decoration: none; margin-top: 10px; transition: color 0.3s;
}
.hero__news-more:hover { color: #00ccbd; }
.hero__news-more svg { width: 14px; height: 14px; }

/* TOP - section blocks (scroll-snap) */
.top-snap-section {
  position: relative; height: 100vh; background: #f5f5f5;
  overflow: hidden; scroll-snap-align: start;
}
.top-snap-section__bg {
  position: absolute;
  left: calc((100% - 1150px) / 2 + 340px);
  top: 80px; right: -80px; bottom: 50px;
  background: rgba(220, 229, 231, 0.4); border-radius: 20px; z-index: 0;
}
.top-snap-section__inner {
  position: relative; width: 1150px; height: 100%;
  margin: 0 auto; padding: 0 50px; z-index: 1;
}
.top-snap-section__text {
  position: absolute; left: 50px; top: 50%; transform: translateY(-50%);
  width: 300px; z-index: 10;
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(calc(-50% + 30px));
}
.top-snap-section.is-active .top-snap-section__text {
  opacity: 1; transform: translateY(-50%);
}
/* Using original class names for TOP page sections */
.works, .service, .company, .recruit {
  position: relative; height: 100vh; background: #f5f5f5;
  overflow: hidden; scroll-snap-align: start;
}
.works__bg, .service__bg, .company__bg, .recruit__bg {
  position: absolute;
  left: calc((100% - 1150px) / 2 + 340px);
  top: 80px; right: -80px; bottom: 50px;
  background: rgba(220, 229, 231, 0.4); border-radius: 20px; z-index: 0;
}
.works__inner, .service__inner, .company__inner, .recruit__inner {
  position: relative; width: 1150px; height: 100%;
  margin: 0 auto; padding: 0 50px; z-index: 1;
}
.works__text, .service__text, .company__text, .recruit__text {
  position: absolute; left: 50px; top: 50%;
  transform: translateY(calc(-50% + 30px));
  width: 300px; z-index: 10; opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.works.is-active .works__text,
.service.is-active .service__text,
.company.is-active .company__text,
.recruit.is-active .recruit__text {
  opacity: 1; transform: translateY(-50%);
}
.works__label, .service__label, .company__label, .recruit__label {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; color: #888; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.works__label::before, .service__label::before, .company__label::before, .recruit__label::before {
  content: ''; width: 26px; height: 2px; background: #15e6cd;
}
.works__label span, .service__label span, .company__label span, .recruit__label span {
  font-size: 24px; font-weight: 900; color: #1a1a1a;
}
.works__en, .service__en, .company__en, .recruit__en {
  font-family: 'Montserrat', sans-serif; font-size: 3.8rem; font-weight: 900;
  letter-spacing: 0.03em; color: #1a1a1a; line-height: 1; margin-bottom: 12px;
}
.works__ja, .service__ja, .company__ja, .recruit__ja {
  font-size: 1rem; font-weight: 700; color: #555;
  letter-spacing: 0.3em; margin-bottom: 50px;
}
.works__btn, .service__btn, .company__btn, .recruit__btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  width: 220px; padding: 18px 24px;
  border: 2px solid #1a1a1a; border-radius: 50px; background: transparent;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; color: #1a1a1a; text-decoration: none; transition: all 0.3s;
}
.works__btn:hover, .service__btn:hover, .company__btn:hover, .recruit__btn:hover {
  background: #1a1a1a; color: #fff;
}
.works__btn svg, .service__btn svg, .company__btn svg, .recruit__btn svg {
  width: 18px; height: 18px; transition: transform 0.3s;
}
.works__btn:hover svg, .service__btn:hover svg, .company__btn:hover svg, .recruit__btn:hover svg {
  transform: translateX(5px);
}
.works__gallery, .service__gallery, .company__gallery, .recruit__gallery {
  position: absolute; left: 300px; top: 50px; right: -120px; height: 560px;
  z-index: 2; opacity: 0; transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s,
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
}
.company__gallery, .recruit__gallery { border-radius: 16px; overflow: hidden; }
.works.is-active .works__gallery,
.service.is-active .service__gallery,
.company.is-active .company__gallery,
.recruit.is-active .recruit__gallery {
  opacity: 1; transform: translateY(0);
}
.works__gallery img, .service__gallery img, .company__gallery img, .recruit__gallery img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.works__gallery img { object-position: left center; }
.service__gallery img { object-position: left top; }
.company__gallery img, .recruit__gallery img { object-position: center center; }

/* TOP - NEWS & BLOG section */
.news {
  position: relative; min-height: 100vh; background: #fff;
  overflow: hidden; padding: 100px 0 80px; scroll-snap-align: start;
}
.news__inner {
  position: relative; width: 1150px; margin: 0 auto; padding: 0 50px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.news.is-active .news__inner { opacity: 1; transform: translateY(0); }
.news__header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px;
}
.news__label {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; color: #888; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.news__label::before { content: ''; width: 26px; height: 2px; background: #15e6cd; }
.news__label span { font-size: 24px; font-weight: 900; color: #1a1a1a; }
.news__en {
  font-family: 'Montserrat', sans-serif; font-size: 3.8rem; font-weight: 900;
  letter-spacing: 0.03em; color: #1a1a1a; line-height: 1;
}
.news__ja { font-size: 1rem; font-weight: 700; color: #555; letter-spacing: 0.3em; margin-top: 8px; }
.news__tabs {
  display: flex; justify-content: center; gap: 0;
  border-bottom: 2px solid #e0e0e0; margin-bottom: 40px;
}
.news__tab {
  padding: 12px 20px; font-size: 13px; font-weight: 700; color: #888;
  cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all 0.3s; white-space: nowrap;
}
.news__tab:hover { color: #1a1a1a; }
.news__tab.is-active { color: #1a1a1a; border-bottom-color: #15e6cd; }
.news__list { display: none; }
.news__list.is-active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.news__card { text-decoration: none; color: inherit; display: block; transition: transform 0.3s; }
.news__card:hover { transform: translateY(-4px); }
.news__card-img {
  width: 100%; aspect-ratio: 16 / 10; background: #e8e8e8;
  border-radius: 12px; overflow: hidden; margin-bottom: 14px;
}
.news__card-img img { width: 100%; height: 100%; object-fit: cover; }
.news__card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.news__card-date {
  font-family: 'Montserrat', sans-serif; font-size: 12px; color: #999; font-weight: 700;
}
.news__card-cat {
  font-size: 11px; font-weight: 700; color: #15e6cd;
  background: rgba(21, 230, 205, 0.1); padding: 2px 10px; border-radius: 20px;
}
.news__card-title { font-size: 15px; font-weight: 700; line-height: 1.6; color: #1a1a1a; }
.news__more { text-align: center; margin-top: 50px; }
.news__btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  width: 220px; padding: 18px 24px;
  border: 2px solid #1a1a1a; border-radius: 50px; background: transparent;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; color: #1a1a1a; text-decoration: none; transition: all 0.3s;
}
.news__btn:hover { background: #1a1a1a; color: #fff; }
.news__btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.news__btn:hover svg { transform: translateX(5px); }

/* TOP - Contact CTA */
.contact-cta {
  position: relative; height: 400px; overflow: hidden; scroll-snap-align: start;
}
.contact-cta__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0;
}
.contact-cta__bg::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55);
}
.contact-cta__inner {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; height: 100%; text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.contact-cta.is-active .contact-cta__inner { opacity: 1; transform: translateY(0); }
.contact-cta__en {
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900;
  letter-spacing: 0.15em; color: #fff; margin-bottom: 16px;
}
.contact-cta__desc {
  font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 40px; letter-spacing: 0.05em;
}
.contact-cta__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 60px; background: #15e6cd; border-radius: 50px;
  font-size: 16px; font-weight: 700; color: #fff; text-decoration: none;
  transition: all 0.3s; letter-spacing: 0.1em;
}
.contact-cta__btn:hover {
  background: #0fd4bc; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 230, 205, 0.3);
}
.contact-cta__btn svg { width: 20px; height: 20px; }
/* Also support original .contact class from prototype */
.contact { position: relative; height: 400px; overflow: hidden; scroll-snap-align: start; }
.contact__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.contact__bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.contact__inner {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; height: 100%; text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.contact.is-active .contact__inner { opacity: 1; transform: translateY(0); }
.contact__en {
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900;
  letter-spacing: 0.15em; color: #fff; margin-bottom: 16px;
}
.contact__desc { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 40px; letter-spacing: 0.05em; }
.contact__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 60px; background: #15e6cd; border-radius: 50px;
  font-size: 16px; font-weight: 700; color: #fff; text-decoration: none;
  transition: all 0.3s; letter-spacing: 0.1em;
}
.contact__btn:hover { background: #0fd4bc; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,230,205,0.3); }
.contact__btn svg { width: 20px; height: 20px; }

/* ============================================================
   === COMPANY PAGE ===
   ============================================================ */
.greeting { display: flex; gap: 60px; align-items: flex-start; }
.greeting__photo { width: 360px; min-width: 360px; border-radius: 16px; overflow: hidden; }
.greeting__photo img { width: 100%; height: auto; display: block; }
.greeting__body { flex: 1; }
.greeting__catch { font-size: 1.8rem; font-weight: 900; color: #1a1a1a; line-height: 1.6; margin-bottom: 30px; }
.greeting__catch span { color: #00ccbd; }
.greeting__text { font-size: 15px; line-height: 2; color: #555; margin-bottom: 20px; }
.greeting__name { font-size: 14px; color: #888; margin-top: 30px; }
.greeting__name strong {
  font-size: 20px; color: #1a1a1a; margin-left: 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
}
.mission { text-align: center; padding: 120px 0; }
.mission__copy { font-size: 3rem; font-weight: 900; color: #1a1a1a; line-height: 1.5; margin-bottom: 30px; }
.mission__copy span { color: #00ccbd; }
.mission__text { font-size: 15px; line-height: 2; color: #555; max-width: 700px; margin: 0 auto; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid #e8e8e8; }
.info-table th {
  width: 200px; padding: 24px 20px; text-align: left;
  font-size: 14px; font-weight: 700; color: #1a1a1a;
  background: #f9f9f9; vertical-align: top;
}
.info-table td { padding: 24px 20px; font-size: 14px; color: #555; line-height: 1.8; }
.access__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.access__card { background: #f9f9f9; border-radius: 16px; padding: 40px; }
.access__card-title {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 900;
  color: #1a1a1a; margin-bottom: 4px;
}
.access__card-sub { font-size: 13px; color: #888; margin-bottom: 20px; }
.access__card-address { font-size: 14px; color: #555; line-height: 1.8; }
.access__map {
  width: 100%; height: 200px; border-radius: 12px; overflow: hidden;
  margin-top: 20px; background: #e8e8e8;
}
.access__map iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   === SERVICE PAGE ===
   ============================================================ */
.service-intro { text-align: center; max-width: 700px; margin: 0 auto; }
.service-intro__catch { font-size: 2rem; font-weight: 900; color: #1a1a1a; line-height: 1.6; margin-bottom: 24px; }
.service-intro__catch span { color: #00ccbd; }
.service-intro__text { font-size: 15px; line-height: 2; color: #555; }
.service-list { display: flex; flex-direction: column; gap: 80px; }
.service-card { display: flex; align-items: center; gap: 60px; }
.service-card:nth-child(even) { flex-direction: row-reverse; }
.service-card__img {
  width: 480px; min-width: 480px; aspect-ratio: 16/10;
  background: #e8e8e8; border-radius: 20px; overflow: hidden;
}
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { flex: 1; }
.service-card__num {
  font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 900;
  color: rgba(21,230,205,0.2); line-height: 1; margin-bottom: 8px;
}
.service-card__title { font-size: 1.5rem; font-weight: 900; color: #1a1a1a; margin-bottom: 8px; }
.service-card__en {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  color: #00ccbd; letter-spacing: 0.1em; margin-bottom: 20px;
}
.service-card__text { font-size: 14px; line-height: 2; color: #555; }
.service-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.service-card__tag {
  font-size: 12px; font-weight: 700; color: #00ccbd;
  background: rgba(0,204,189,0.08); padding: 4px 14px; border-radius: 20px;
}

/* ============================================================
   === WORKS PAGE ===
   ============================================================ */
.works-filter { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }
.works-filter__btn {
  padding: 10px 24px; border: 2px solid #e0e0e0; border-radius: 50px;
  font-size: 13px; font-weight: 700; color: #888; background: #fff;
  cursor: pointer; transition: all 0.3s;
}
.works-filter__btn:hover { border-color: #00ccbd; color: #00ccbd; }
.works-filter__btn.is-active { border-color: #00ccbd; background: #00ccbd; color: #fff; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.works-card { text-decoration: none; color: inherit; display: block; transition: transform 0.3s; }
.works-card:hover { transform: translateY(-6px); }
.works-card__img {
  width: 100%; aspect-ratio: 16/10; background: #f0f0f0;
  border-radius: 16px; overflow: hidden; margin-bottom: 16px; position: relative;
}
.works-card__img img { width: 100%; height: 100%; object-fit: cover; }
.works-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.08) 100%);
}
.works-card__year {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  color: #00ccbd; margin-bottom: 6px;
}
.works-card__title { font-size: 16px; font-weight: 700; color: #1a1a1a; line-height: 1.5; margin-bottom: 8px; }
.works-card__desc { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 12px; }
.works-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.works-card__tag {
  font-size: 11px; font-weight: 700; color: #00ccbd;
  background: rgba(0,204,189,0.08); padding: 3px 10px; border-radius: 20px;
}

/* ============================================================
   === BLOG PAGE ===
   ============================================================ */
.blog-tabs {
  display: flex; justify-content: center; gap: 0;
  border-bottom: 2px solid #e0e0e0; margin-bottom: 50px;
}
.blog-tab {
  padding: 14px 24px; font-size: 14px; font-weight: 700; color: #888;
  cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all 0.3s;
}
.blog-tab:hover { color: #1a1a1a; }
.blog-tab.is-active { color: #1a1a1a; border-bottom-color: #15e6cd; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { text-decoration: none; color: inherit; transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card__img {
  width: 100%; aspect-ratio: 16/10; background: #e8e8e8;
  border-radius: 14px; overflow: hidden; margin-bottom: 14px;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.blog-card__date { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #999; font-weight: 700; }
.blog-card__cat {
  font-size: 11px; font-weight: 700; color: #15e6cd;
  background: rgba(21,230,205,0.1); padding: 2px 10px; border-radius: 20px;
}
.blog-card__title { font-size: 15px; font-weight: 700; line-height: 1.6; color: #1a1a1a; }
.blog-pager { display: flex; justify-content: center; gap: 8px; margin-top: 60px; }
.blog-pager__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  color: #888; text-decoration: none; transition: all 0.3s;
}
.blog-pager__btn:hover { border-color: #00ccbd; color: #00ccbd; }
.blog-pager__btn.is-active { background: #00ccbd; border-color: #00ccbd; color: #fff; }

/* ============================================================
   === RECRUIT PAGE ===
   ============================================================ */
.recruit-hero { position: relative; height: 500px; overflow: hidden; }
.recruit-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.recruit-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,204,189,0.7) 0%, rgba(26,26,26,0.6) 100%);
}
.recruit-hero__content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding-top: 80px;
}
.recruit-hero__en {
  font-family: 'Montserrat', sans-serif; font-size: 5rem; font-weight: 900;
  color: #fff; letter-spacing: 0.1em; line-height: 1;
}
.recruit-hero__ja { font-size: 1rem; color: rgba(255,255,255,0.9); letter-spacing: 0.3em; margin-top: 16px; font-weight: 700; }
.recruit-hero__catch { font-size: 1.3rem; color: #fff; margin-top: 24px; font-weight: 700; letter-spacing: 0.1em; }
.recruit-message { text-align: center; max-width: 700px; margin: 0 auto; }
.recruit-message__catch { font-size: 2rem; font-weight: 900; color: #1a1a1a; line-height: 1.6; margin-bottom: 30px; }
.recruit-message__catch span { color: #00ccbd; }
.recruit-message__text { font-size: 15px; line-height: 2; color: #555; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: #fff; border-radius: 20px; padding: 40px 30px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card__num {
  font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 900;
  color: rgba(21,230,205,0.2); margin-bottom: 12px;
}
.value-card__title { font-size: 18px; font-weight: 900; color: #1a1a1a; margin-bottom: 16px; }
.value-card__text { font-size: 14px; line-height: 1.8; color: #555; }
.job-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.job-table tr { border-bottom: 1px solid #e8e8e8; }
.job-table th {
  width: 200px; padding: 20px; text-align: left; font-size: 14px; font-weight: 700;
  color: #1a1a1a; background: #f9f9f9; vertical-align: top;
}
.job-table td { padding: 20px; font-size: 14px; color: #555; line-height: 1.8; }

/* ============================================================
   === CONTACT PAGE ===
   ============================================================ */
.contact-section { padding: 80px 0 100px; }
.contact-inner { width: 800px; margin: 0 auto; padding: 0 50px; }
.contact-intro { text-align: center; margin-bottom: 60px; }
.contact-intro__text { font-size: 15px; line-height: 2; color: #555; }
.contact-cats { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.contact-cat {
  padding: 14px 24px; border: 2px solid #e0e0e0; border-radius: 12px;
  font-size: 14px; font-weight: 700; color: #888; background: #fff;
  cursor: pointer; transition: all 0.3s; text-align: center;
}
.contact-cat:hover { border-color: #00ccbd; color: #00ccbd; }
.contact-cat.is-active { border-color: #00ccbd; background: rgba(0,204,189,0.05); color: #00ccbd; }
.form-group { margin-bottom: 30px; }
.form-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px;
}
.form-required { font-size: 11px; font-weight: 700; color: #fff; background: #00ccbd; padding: 2px 8px; border-radius: 4px; }
.form-optional { font-size: 11px; font-weight: 700; color: #888; background: #f0f0f0; padding: 2px 8px; border-radius: 4px; }
.form-input {
  width: 100%; padding: 16px 20px; border: 2px solid #e0e0e0; border-radius: 12px;
  font-size: 15px; font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s; outline: none;
}
.form-input:focus { border-color: #00ccbd; }
.form-textarea {
  width: 100%; padding: 16px 20px; border: 2px solid #e0e0e0; border-radius: 12px;
  font-size: 15px; font-family: 'Noto Sans JP', sans-serif;
  min-height: 200px; resize: vertical; transition: border-color 0.3s; outline: none;
}
.form-textarea:focus { border-color: #00ccbd; }
.form-select {
  width: 100%; padding: 16px 20px; border: 2px solid #e0e0e0; border-radius: 12px;
  font-size: 15px; font-family: 'Noto Sans JP', sans-serif;
  appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E") right 20px center no-repeat;
  transition: border-color 0.3s; outline: none;
}
.form-select:focus { border-color: #00ccbd; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.privacy-check {
  display: flex; align-items: center; gap: 12px; margin: 40px 0;
  font-size: 14px; color: #555;
}
.privacy-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: #00ccbd; }
.privacy-check a { color: #00ccbd; text-decoration: none; }
.form-submit { text-align: center; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 80px; background: #00ccbd; border: none; border-radius: 50px;
  font-size: 16px; font-weight: 700; color: #fff; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif; letter-spacing: 0.1em; transition: all 0.3s;
}
.submit-btn:hover { background: #0ab5a8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,204,189,0.3); }
.submit-btn svg { width: 20px; height: 20px; }
.confirm-section { display: none; padding: 80px 0 100px; }
.confirm-inner { width: 800px; margin: 0 auto; padding: 0 50px; }
.confirm-title { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 900; color: #1a1a1a; text-align: center; margin-bottom: 12px; }
.confirm-desc { font-size: 14px; color: #888; text-align: center; margin-bottom: 50px; }
.confirm-table { width: 100%; border-collapse: collapse; }
.confirm-table tr { border-bottom: 1px solid #e8e8e8; }
.confirm-table th { width: 200px; padding: 18px 20px; text-align: left; font-size: 14px; font-weight: 700; color: #1a1a1a; background: #f9f9f9; vertical-align: top; }
.confirm-table td { padding: 18px 20px; font-size: 14px; color: #555; line-height: 1.8; white-space: pre-wrap; }
.confirm-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 50px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 50px; background: #fff; border: 2px solid #e0e0e0; border-radius: 50px;
  font-size: 15px; font-weight: 700; color: #555; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif; transition: all 0.3s;
}
.back-btn:hover { border-color: #00ccbd; color: #00ccbd; }
.confirm-submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 60px; background: #00ccbd; border: none; border-radius: 50px;
  font-size: 15px; font-weight: 700; color: #fff; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif; letter-spacing: 0.1em; transition: all 0.3s;
}
.confirm-submit-btn:hover { background: #0ab5a8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,204,189,0.3); }
.confirm-submit-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
.thankyou-section { display: none; padding: 120px 0; }
.thankyou-inner { text-align: center; }
.thankyou-icon { width: 80px; height: 80px; background: #00ccbd; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 30px; }
.thankyou-icon svg { width: 40px; height: 40px; color: #fff; }
.thankyou-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900; color: #1a1a1a; margin-bottom: 16px; }
.thankyou-message { font-size: 15px; color: #555; line-height: 2; margin-bottom: 50px; }
.thankyou-home {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 50px; background: #00ccbd; color: #fff; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.3s;
}
.thankyou-home:hover { background: #0ab5a8; transform: translateY(-2px); }
.step-indicator { display: flex; justify-content: center; align-items: center; gap: 0; margin-bottom: 50px; }
.step-item { display: flex; align-items: center; gap: 10px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  background: #e0e0e0; color: #888; transition: all 0.3s;
}
.step-text { font-size: 13px; font-weight: 700; color: #888; transition: all 0.3s; }
.step-line { width: 60px; height: 2px; background: #e0e0e0; margin: 0 16px; transition: all 0.3s; }
.step-item.is-active .step-num { background: #00ccbd; color: #fff; }
.step-item.is-active .step-text { color: #1a1a1a; }
.step-item.is-done .step-num { background: #00ccbd; color: #fff; }
.step-line.is-active { background: #00ccbd; }
.other-contact { background: #f5f5f5; padding: 60px 0; }
.other-inner { width: 800px; margin: 0 auto; padding: 0 50px; }
.other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.other-card { background: #fff; border-radius: 16px; padding: 40px; text-align: center; }
.other-card__icon { font-size: 32px; margin-bottom: 16px; }
.other-card__title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.other-card__text { font-size: 13px; color: #888; margin-bottom: 16px; line-height: 1.6; }
.other-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #00ccbd; text-decoration: none;
}
.other-card__link:hover { text-decoration: underline; }

/* ============================================================
   === SINGLE POST ===
   ============================================================ */
.single-content {
  width: 800px; margin: 0 auto; padding: 60px 50px 100px;
}
.single-content__meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.single-content__date {
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: #999; font-weight: 700;
}
.single-content__cat {
  font-size: 12px; font-weight: 700; color: #15e6cd;
  background: rgba(21,230,205,0.1); padding: 4px 14px; border-radius: 20px;
}
.single-content__title {
  font-size: 2rem; font-weight: 900; color: #1a1a1a; line-height: 1.5; margin-bottom: 40px;
}
.single-content__body { font-size: 15px; line-height: 2; color: #555; }
.single-content__body h2 {
  font-size: 1.5rem; font-weight: 900; color: #1a1a1a; margin: 40px 0 20px;
  padding-left: 16px; border-left: 4px solid #15e6cd;
}
.single-content__body h3 {
  font-size: 1.2rem; font-weight: 900; color: #1a1a1a; margin: 30px 0 16px;
}
.single-content__body p { margin-bottom: 20px; }
.single-content__body img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.single-content__body a { color: #00ccbd; }
.single-content__body blockquote {
  background: #f5f5f5; border-left: 4px solid #15e6cd;
  padding: 20px 24px; margin: 20px 0; border-radius: 0 12px 12px 0;
}

/* ============================================================
   === RESPONSIVE @media 1024px ===
   ============================================================ */
@media (max-width: 1024px) {
  .header { padding: 12px 20px; }
  .header__nav { display: none; }
  .hamburger { display: block; }

  /* TOP scroll-snap disable */
  html.is-top-page { scroll-snap-type: none; }

  /* TOP HERO */
  .hero { height: 70vh; }
  .hero__blob { display: none; }
  .hero__content { left: 20px; right: 20px; bottom: 30%; }
  .hero__copy-sub { font-size: 13px; }
  .hero__logo { width: 75vw; max-width: 360px; }
  .hero__news { left: 16px; right: 16px; width: auto; bottom: 16px; padding: 14px 16px; }
  .hero__news-item { flex-wrap: wrap; gap: 6px; }
  .hero__news-title { white-space: normal; font-size: 12px; }
  .hero__news-date { font-size: 11px; }

  /* TOP sections: vertical stack */
  .works, .service, .company, .recruit {
    height: auto !important; min-height: auto !important; padding: 40px 0 30px;
    overflow: visible !important; scroll-snap-align: none;
  }
  .works__bg, .service__bg, .company__bg, .recruit__bg { display: none; }
  .works__inner, .service__inner, .company__inner, .recruit__inner {
    width: 100% !important; padding: 0 20px; position: static !important; height: auto !important;
    display: flex; flex-direction: column;
  }
  .works__text, .service__text, .company__text, .recruit__text {
    position: static !important; transform: none !important; width: 100% !important;
    opacity: 1 !important; margin-bottom: 16px; order: 1;
  }
  .works__en, .service__en, .company__en, .recruit__en { font-size: 2.2rem; }
  .works__ja, .service__ja, .company__ja, .recruit__ja { margin-bottom: 16px; }
  .works__gallery, .service__gallery, .company__gallery, .recruit__gallery {
    position: static !important; width: 100% !important; height: auto !important;
    max-height: 220px; border-radius: 12px; overflow: hidden;
    opacity: 1 !important; transform: none !important; order: 2;
  }
  .service__gallery { order: 2; }
  .service__text { order: 1; }
  .works__gallery img, .service__gallery img, .company__gallery img, .recruit__gallery img {
    width: 100%; height: auto; max-height: 220px; object-fit: cover;
  }

  /* TOP NEWS */
  .news { min-height: auto !important; padding: 40px 0; scroll-snap-align: none; }
  .news__inner {
    width: 100% !important; padding: 0 20px;
    opacity: 1 !important; transform: none !important;
  }
  .news__en { font-size: 2.2rem; }
  .news__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news__list.is-active { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .news__tabs { flex-wrap: wrap; justify-content: flex-start; gap: 0; }
  .news__tab { padding: 8px 12px; font-size: 12px; }

  /* TOP CONTACT CTA */
  .contact, .contact-cta { height: auto; padding: 60px 20px; scroll-snap-align: none; }
  .contact__inner, .contact-cta__inner { opacity: 1 !important; transform: none !important; }
  .contact__en, .contact-cta__en { font-size: 1.8rem; }
  .contact__desc, .contact-cta__desc { font-size: 13px; padding: 0 10px; }
  .contact__btn, .contact-cta__btn { padding: 16px 36px; font-size: 14px; }

  /* Sub-page hero */
  .page-hero { height: 260px; padding-top: 60px; }
  .page-hero__en { font-size: 2.5rem; }

  /* Section */
  .section { padding: 60px 0; }
  .section__inner { width: 100%; padding: 0 20px; }
  .section__title { font-size: 1.8rem; }

  /* Company */
  .greeting { flex-direction: column; gap: 30px; }
  .greeting__photo { width: 100%; min-width: auto; }
  .greeting__catch { font-size: 1.4rem; }
  .mission__copy { font-size: 2rem; }
  .info-table th { width: 120px; padding: 14px; font-size: 13px; }
  .info-table td { padding: 14px; font-size: 13px; }
  .access__grid { grid-template-columns: 1fr; }

  /* Service */
  .service-intro__catch { font-size: 1.5rem; }
  .service-card { flex-direction: column !important; gap: 24px; }
  .service-card__img { width: 100%; min-width: auto; height: 250px; }
  .service-card__body { padding: 0; }
  .service-card:nth-child(even) { flex-direction: column !important; }

  /* Works */
  .filter-bar { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .works-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .blog-tabs { flex-wrap: wrap; gap: 8px; justify-content: center; }

  /* Recruit */
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .recruit-hero { height: 300px; }
  .recruit-hero__en { font-size: 3rem; }
  .recruit-message__catch { font-size: 1.5rem; }

  /* Contact form */
  .contact-inner, .confirm-inner { width: 100%; padding: 0 20px; }
  .other-inner { width: 100%; padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .other-grid { grid-template-columns: 1fr; }
  .contact-cats { gap: 8px; }
  .contact-cat { padding: 10px 16px; font-size: 13px; }
  .confirm-buttons { flex-direction: column; align-items: center; }
  .step-indicator { gap: 0; }
  .step-line { width: 40px; margin: 0 8px; }

  /* CTA */
  .cta { height: auto; padding: 60px 0; }
  .cta__title { font-size: 2rem; }
  .cta__btn { padding: 16px 40px; font-size: 14px; }

  /* Footer */
  .footer { padding: 50px 0 0; }
  .footer__inner { width: 100%; padding: 0 20px; }
  .footer__nav { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .footer__nav-item { min-width: 120px; }
  .footer__nav-title { font-size: 16px; }
  .footer__company { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: center; }

  /* Single post */
  .single-content { width: 100%; padding: 40px 20px 80px; }
}

/* ============================================================
   === RESPONSIVE @media 600px ===
   ============================================================ */
@media (max-width: 600px) {
  .hero { height: 55vh; }
  .hero__news { left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; }
  .hero__news-header { margin-bottom: 8px; }
  .hero__news-label { font-size: 13px; }
  .hero__news-item:nth-child(n+3) { display: none; }
  .hero__news-more { margin-top: 4px; font-size: 12px; }
  .hero__content { bottom: 50%; transform: translateY(50%); }
  .hero__logo { width: 70vw; }

  .works, .service, .company, .recruit { padding: 30px 0 20px; }
  .works__en, .service__en, .company__en, .recruit__en { font-size: 1.8rem; }
  .works__gallery, .service__gallery, .company__gallery, .recruit__gallery { max-height: 180px; }
  .works__gallery img, .service__gallery img, .company__gallery img, .recruit__gallery img { max-height: 180px; }

  .news { padding: 30px 0; }
  .news__list.is-active { grid-template-columns: 1fr; }
  .news__en { font-size: 1.8rem; }
  .news__card-title { font-size: 13px; }

  .contact, .contact-cta { padding: 40px 16px; }
  .contact__en, .contact-cta__en { font-size: 1.4rem; }

  .page-hero { height: 200px; }
  .page-hero__en { font-size: 2rem; }
  .section__title { font-size: 1.5rem; }

  .mission__copy { font-size: 1.5rem; }
  .greeting__catch { font-size: 1.2rem; }
  .info-table tr { display: flex; flex-direction: column; }
  .info-table th { width: 100%; }

  .service-card__img { height: 200px; }
  .service-list { gap: 50px; }

  .works-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }
  .recruit-hero { height: 250px; }
  .recruit-hero__en { font-size: 2.5rem; }

  .footer__nav { flex-direction: column; align-items: center; gap: 12px; }

  .single-content__title { font-size: 1.5rem; }
}
