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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2d2d3a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section {
  padding: 88px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

.tape-strip,
.tape-strip--reverse {
  display: none;
}

.section-header {
  margin-bottom: 56px;
}

.section-sub {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: #EB6403;
  margin-bottom: 8px;
  text-transform: uppercase;
  display: block;
}

.section-title {
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  color: #0d1035;
  margin-bottom: 0;
}

.section-lead {
  font-size: 16px;
  color: #555555;
  line-height: 1.9;
  margin-top: 16px;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

.link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #132381;
  margin-top: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-arrow:hover {
  gap: 10px;
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  height: 72px;
}
@media (max-width: 1024px) {
  .header-inner {
    height: 64px;
  }
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 700;
  color: #0d1035;
  white-space: nowrap;
}

.logo--white .logo-text {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}
.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  list-style: none;
}
.header-nav li a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2d2d3a;
  position: relative;
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #132381;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header-nav li a:hover {
  color: #132381;
}
.header-nav li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header-nav li a[aria-current=page] {
  color: #132381;
}
.header-nav li a[aria-current=page]::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.btn-nav {
  background: #132381;
  color: #ffffff !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: 14px;
  border-radius: 2px;
  margin-left: 12px;
}
.btn-nav::after {
  display: none !important;
}
.btn-nav:hover {
  background: #0d1035 !important;
}
.btn-nav__mobile {
  background: #132381;
  color: #ffffff !important;
  text-align: left !important;
}

.menu-btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: #0d1035;
}
@media (max-width: 1024px) {
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li a {
  display: block;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
  color: #2d2d3a;
}
.mobile-menu li a:hover {
  background: #f7f8fc;
  color: #132381;
}
.mobile-menu li:last-child a {
  background: #132381;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}
.mobile-menu li:last-child a:hover {
  background: #0d1035;
}

.site-footer {
  background: #f7f8fc;
  color: #2d2d3a;
  padding: 64px 0 28px;
  border-top: 2px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 16px;
  line-height: 1.85;
  color: #555555;
}

.footer-nav h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #EB6403;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 16px;
  color: #555555;
}
.footer-nav a:hover {
  color: #132381;
}

.footer-contact .footer-tel {
  margin-bottom: 10px;
}

.footer-tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #132381;
  letter-spacing: -0.02em;
}
.footer-tel a:hover {
  color: #0d1035;
}

.footer-hours {
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
}

.footer-address {
  font-size: 14px;
  color: #777;
  line-height: 1.95;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: #888;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.05em;
}

.page-hero {
  background-color: #132381;
  background-image: url("../img/page-hero-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 108px 0 94px;
  position: relative;
}
@media (max-width: 1024px) {
  .page-hero {
    padding: 56px 0 48px;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(19, 35, 129, 0.55)), color-stop(55%, rgba(54, 168, 252, 0.32)), to(rgba(54, 168, 252, 0.12)));
  background: linear-gradient(to right, rgba(19, 35, 129, 0.55) 0%, rgba(54, 168, 252, 0.32) 55%, rgba(54, 168, 252, 0.12) 100%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero--service {
  background-image: url("../img/service-hero.webp");
}
.page-hero--works {
  background-image: url("../img/hero-1-house.webp");
}
.page-hero--voice {
  background-image: url("../img/voice-hero.webp");
}
.page-hero--company {
  background-image: url("../img/hero-3-streetscape.webp");
}
.page-hero--contact {
  background-image: url("../img/cta-bg.webp");
}
.page-hero__title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.page-hero__sub {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255, 221, 35, 0.8);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 6px;
}

.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  list-style: none;
}
.breadcrumb li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
}
.breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb li a:hover {
  color: #FFDD23;
}
.breadcrumb li[aria-current=page] {
  color: rgba(255, 255, 255, 0.9);
}

.cta-section {
  background-color: #132381;
  background-image: url("../img/cta-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 16, 53, 0.82);
  z-index: 1;
}

.cta-inner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0d1035;
  background: #FFDD23;
  padding: 6px 20px;
  margin-bottom: 20px;
}
.cta-badge strong {
  font-size: 17px;
}

.cta-lead {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.cta-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-stat {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
}
.cta-stat span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFDD23;
  line-height: 1;
}

.cta-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .cta-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.btn-cta-outline.btn-tel {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 36px;
}

.cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}

.btn-primary {
  background: #EB6403;
  color: #ffffff;
}
.btn-primary:hover {
  background: #c4540a;
}

.btn-secondary {
  background: transparent;
  border-color: #132381;
  color: #132381;
}
.btn-secondary:hover {
  background: #132381;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-cta-primary {
  background: #EB6403;
  color: #ffffff;
  padding: 18px 40px;
  font-size: 16px;
}
.btn-cta-primary:hover {
  background: #c4540a;
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  padding: 18px 40px;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 640px) {
  .btn-cta-outline {
    width: 100%;
    max-width: 340px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 640px) {
  .btn-cta-primary {
    width: 100%;
    max-width: 340px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.btn-submit {
  min-width: 240px;
  padding: 18px 48px;
  font-size: 16px;
}

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

.work-card {
  background: #ffffff;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}
.work-card:hover {
  -webkit-box-shadow: 0 8px 32px rgba(19, 35, 129, 0.12);
          box-shadow: 0 8px 32px rgba(19, 35, 129, 0.12);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.work-card:hover .work-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.work-card:hover .work-card__body h2,
.work-card:hover .work-card__body h3 {
  color: #132381;
}
.work-card__link {
  display: block;
  color: #2d2d3a;
}
.work-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.work-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
.work-card__body {
  padding: 20px 24px 24px;
}
.work-card__body h2, .work-card__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0d1035;
  margin-bottom: 6px;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.work-card__body p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.work-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: #132381;
  color: #ffffff;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.work-meta {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 8px;
}

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

.voice-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 28px 24px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.voice-card:hover {
  -webkit-box-shadow: 0 6px 24px rgba(19, 35, 129, 0.1);
          box-shadow: 0 6px 24px rgba(19, 35, 129, 0.1);
}
.voice-card__stars {
  color: #FFDD23;
  font-size: 18px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.voice-card blockquote {
  margin: 0 0 16px;
}
.voice-card blockquote p {
  font-size: 16px;
  line-height: 1.85;
  color: #2d2d3a;
}
.voice-card footer {
  font-size: 14px;
  color: #9ca3af;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  margin-top: 12px;
}
.voice-card cite {
  font-style: normal;
}

.filter-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .filter-bar {
    gap: 6px;
  }
}

.filter-btn {
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: #2d2d3a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .filter-btn {
    padding: 7px 16px;
    font-size: 14px;
  }
}
.filter-btn:hover {
  border-color: #132381;
  color: #132381;
}
.filter-btn.active {
  background: #132381;
  border-color: #132381;
  color: #ffffff;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-muted {
  color: #9ca3af;
}

.u-text-main {
  color: #132381;
}

.u-text-orange {
  color: #EB6403;
}

.u-fw-bold {
  font-weight: 700;
}

.u-serif {
  font-family: "Noto Serif JP", serif;
}/*# sourceMappingURL=style.css.map */