/*
Theme Name: KAITAI Theme
Author: Ayumi
Version: 1.0
*/
:root {
  --header-height: 70px;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;
  --font-weight-medium: 500;
  --font-weight-heading: 700;
  --font-weight-en-heading: 600;
  --font-size-hero: clamp(38px, 3.7vw, 56px);
  --font-size-hero-description: clamp(16px, 1.47vw, 20px);
  --font-size-page-hero: 46px;
  --font-size-page-title: 40px;
  --font-size-page-description: 16px;
  --font-size-section-title: 40px;
  --font-size-lead: 17px;
  --font-size-small: 14px;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  :root {
    --font-size-hero: clamp(30px, 3.5vw, 36px);
    --font-size-hero-description: clamp(13px, 1.56vw, 16px);
    --font-size-page-hero: 40px;
    --font-size-section-title: 36px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 64px;
    --font-size-hero: clamp(27px, 8.5vw, 36px);
    --font-size-hero-description: 14px;
    --font-size-page-hero: 36px;
    --font-size-page-title: 32px;
    --font-size-page-description: 14px;
    --font-size-section-title: 32px;
    --font-size-lead: 16px;
    --font-size-small: 13px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-ja);
  color: #1f1f1f;
  background-color: #fff;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin-inline: auto;
}

html {
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  padding-top: var(--header-height);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner.container {
  max-width: 1200px;
}

.header-right {
  position: absolute;
  right: 360px;
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
}

.header-brand {
  font-size: 36px;
  font-weight: var(--font-weight-en-heading);
  letter-spacing: 0;
  color: #1f1f1f;
}

.nav {
  margin-right: 24px;
}

.nav-mobile-only {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-list a {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: #1f1f1f;
  white-space: nowrap;
}

@media screen and (min-width: 901px) {
  .nav-list a {
    position: relative;
    display: inline-block;
    transition: color 0.25s ease;
  }
  .nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #f5821f;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-list a:hover, .nav-list a:focus-visible {
    color: #0f2853;
  }
  .nav-list a:hover::after, .nav-list a:focus-visible::after {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-list a::after {
    transition: none;
  }
}
.header-actions {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: var(--header-height);
}

.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 200px;
  height: 100%;
  background-color: #fff;
  color: #1f1f1f;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header-phone:hover, .header-phone:focus-visible {
  background-color: #edf3fa;
  color: #0f2853;
}
.header-phone:focus-visible {
  outline: 3px solid #f5821f;
  outline-offset: -3px;
}

.header-phone-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: none;
}

.contact-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 160px;
  height: 100%;
  background-color: #0f2853;
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.contact-button:hover, .contact-button:focus-visible {
  background-color: #1b4176;
}
.contact-button:focus-visible {
  outline: 3px solid #f5821f;
  outline-offset: -3px;
}

.contact-button-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: none;
}

body.admin-bar .header,
body.admin-bar .header-actions {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header,
  body.admin-bar .header-actions {
    top: 46px;
  }
}
.hero {
  position: relative;
  height: calc(100vh - 70px);
  height: calc(100svh - 70px);
  background-image: url("./assets/img/top/hero-excavator-blue.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero .hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero .hero-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  height: 100%;
}
.hero .hero-text {
  grid-column: 2;
  justify-self: end;
  z-index: 2;
  width: calc(100% - clamp(70px, 10vw, 140px));
  max-width: 600px;
  margin-right: 8px;
  color: #fff;
}
.hero .hero-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: var(--font-size-hero);
  line-height: 1.28;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.02em;
}
.hero .hero-title-line {
  display: block;
}
.hero .hero-description {
  margin: 0;
  color: #fff;
  font-size: var(--font-size-hero-description);
  line-height: 1.8;
  font-weight: var(--font-weight-medium);
}

.about {
  position: relative;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
}
.about::after {
  content: "";
  position: absolute;
  top: -4%;
  right: -20px;
  bottom: -4%;
  width: clamp(350px, 29vw, 460px);
  background-image: url("./assets/img/top/about-blue-corner.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% 100%;
  z-index: 0;
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  padding-right: clamp(170px, 18vw, 180px);
}

.about-text {
  min-width: 0;
}

.section-label {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.12em;
  color: #002b5c;
  margin-bottom: 0;
}

.section-title {
  font-size: clamp(30px, 2.4vw, var(--font-size-section-title));
  line-height: 1.4;
  font-weight: var(--font-weight-heading);
  color: #002b5c;
  margin-bottom: 40px;
}

.about-catch {
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.6;
  font-weight: var(--font-weight-heading);
  color: #002b5c;
  margin-bottom: 32px;
}

.about-description {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.about-image-sp {
  display: none;
}

.about-image-pc {
  display: block;
}

.about-image {
  min-width: 0;
}
.about-image img {
  display: block;
  width: 100%;
  height: clamp(300px, 27vw, 400px);
  object-fit: cover;
}

.about-button {
  margin-top: 24px;
}

.service {
  background-color: #002b5c;
  color: #fff;
}

.service-heading {
  padding: 0;
  background-color: #002b5c;
}

.service-label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.service-title {
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.08em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  background-color: #002b5c;
}
.service-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.service-image {
  height: 260px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.service-image--wood {
  background-image: url("./assets/img/service/wooden-house-demolition.webp");
}
.service-image--steel {
  background-image: url("./assets/img/service/steel-frame-excavator.webp");
}
.service-image--rc {
  background-image: url("./assets/img/service/concrete-building-demolition.webp");
}
.service-image--civil {
  background-image: url("./assets/img/service/graded-land-excavator.webp");
}

.service-body {
  padding: 42px 36px 56px;
}
.service-body .service-number {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1;
}
.service-body h3 {
  font-size: 30px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 28px;
}
.service-body h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.65);
  margin-top: 24px;
}
.service-body > p:not(.service-number) {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.works {
  padding: 0 0 24px;
  background-color: #fff;
}

.works + .contact .contact-inner {
  padding-block-start: 36px;
}

.works-heading {
  margin-bottom: 0;
}

.works-heading-top {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 0;
}

.works-label {
  color: #002b5c;
  font-size: 18px;
  font-weight: var(--font-weight-medium);
}

.works-line {
  flex: 1;
  height: 1px;
  background-color: #002b5c;
}

.works-title {
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-heading);
  color: #1f1f1f;
  margin-bottom: 24px;
}

.works-description {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  color: #1f1f1f;
}

.works-slider {
  --works-gap: clamp(16px, 2vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 58%) minmax(0, 1fr);
  align-items: center;
  gap: var(--works-gap);
  width: 100%;
  padding: 0 40px;
  overflow: hidden;
}

.works-stage {
  position: relative;
  min-width: 0;
  z-index: 2;
}

.works-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #eee;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.works-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}
.works-card:focus-visible {
  outline: 3px solid #f5821f;
  outline-offset: 3px;
}

.works-card-main {
  height: 520px;
}

.works-card-side {
  height: 460px;
  opacity: 0.6;
}
.works-card-side:hover, .works-card-side:focus-visible {
  opacity: 1;
}

.works-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #ddd;
}

.works-empty {
  padding: 48px 20px;
  color: #0f2853;
  text-align: center;
}

.works-project-name {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  padding: 14px 22px;
  background-color: #fff;
  border-radius: 6px;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.works-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid #0f2853;
  border-radius: 50%;
  background-color: #fff;
  color: #0f2853;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.works-arrow::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: url("./assets/img/common/arrow-right.svg") center/contain no-repeat;
  mask: url("./assets/img/common/arrow-right.svg") center/contain no-repeat;
  transition: transform 0.25s ease;
}
.works-arrow:hover {
  background-color: #0f2853;
  color: #fff;
}
.works-arrow:focus-visible {
  outline: 3px solid #f5821f;
  outline-offset: 3px;
}
.works-arrow:disabled {
  opacity: 0.5;
  cursor: default;
}

.works-arrow-left {
  left: 0;
  transform: translate(-50%, -50%);
}
.works-arrow-left::before {
  transform: rotate(180deg);
}
.works-arrow-left:hover::before {
  transform: rotate(180deg) translateX(3px);
}

.works-arrow-right {
  right: 0;
  transform: translate(50%, -50%);
}
.works-arrow-right:hover::before {
  transform: translateX(3px);
}

.works-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.works-dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.works-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd2db;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.works-dot:hover::before, .works-dot.active::before {
  background-color: #0f2853;
  transform: scale(1.2);
}
.works-dot:focus-visible {
  outline: 2px solid #f5821f;
  outline-offset: 2px;
}

.works-slider-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.works-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.contact {
  padding: 0;
  background-color: #fff;
}

.contact-heading {
  text-align: center;
  margin-bottom: 56px;
}

.contact-label {
  color: #002b5c;
  font-size: 22px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.28em;
  margin-bottom: 0;
}

.contact-title {
  color: #002b5c;
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.contact-description {
  font-size: 18px;
  line-height: 2;
  color: #1f1f1f;
}

.contact-boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
}

.contact-box {
  width: 390px;
  height: 180px;
  padding: 20px 28px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-box:hover, .contact-box:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 25, 58, 0.2);
}
.contact-box:focus-visible {
  outline: 3px solid #f5821f;
  outline-offset: 3px;
}

.contact-tel {
  background: linear-gradient(135deg, #e97818, #c95c10);
}
.contact-tel .contact-main {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: var(--font-weight-en-heading);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.contact-mail {
  background-color: #002b5c;
}
.contact-mail .contact-main {
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.contact-main-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.contact-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-main {
  margin: 0;
  color: #fff;
  font-weight: var(--font-weight-heading);
  line-height: 1;
  display: flex;
  align-items: center;
}

.contact-sub {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.contact-sub-break {
  display: none;
}

.contact-mail-sub {
  text-align: center;
}

.contact-form-area {
  margin-top: 60px;
}

.contact-heading {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
  padding: 44px 0 42px;
  background-image: url("./assets/img/top/contact-heading-frame.webp");
  background-repeat: no-repeat;
  background-position: center 7px;
  background-size: 760px auto;
}

.contact-label,
.contact-title,
.contact-description {
  position: relative;
  z-index: 1;
}

.strengths {
  padding: 0;
  background-color: #fff;
}

.strength-list {
  max-width: 1100px;
  margin: 0 auto;
}

.strength-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 420px;
  align-items: center;
  column-gap: 38px;
  padding: 30px 0;
  border-bottom: 1px solid #d8dde3;
}
.strength-item:first-child {
  border-top: none;
}

.strength-number {
  color: #ff4b00;
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-align: center;
  border-right: 1px solid #d8dde3;
}

.strength-text h2 {
  color: #002b5c;
  font-size: 28px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.strength-text p {
  font-size: 16px;
  line-height: 1.9;
  font-weight: var(--font-weight-medium);
  color: #1f1f1f;
}

.strength-image {
  height: 240px;
  background-color: #ddd;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.strength-image--01 {
  background-image: url("./assets/img/about/excavators-concrete-rubble.webp");
  background-position: center 20%;
}

.strength-image--02 {
  background-image: url("./assets/img/service/concrete-building-demolition.webp");
  background-position: center 20%;
}

.strength-image--03 {
  background-image: url("./assets/img/about/dust-control-wooden-demolition.webp");
}

.strength-image--04 {
  background-image: url("./assets/img/about/steel-frame-demolition-site.webp");
}

.about-flow {
  background-color: #002b5c;
  padding: 0;
  color: #fff;
}

.about-flow-inner {
  text-align: center;
}

.about-flow-label {
  color: #fff;
  font-size: 14px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.about-flow-title {
  font-size: clamp(30px, 2.4vw, var(--font-size-section-title));
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  margin-bottom: 52px;
}

.about-flow-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

.about-flow-item {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 6px;
  text-align: center;
}
.about-flow-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8em;
  font-size: 18px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.about-flow-item p:last-child {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}

.about-flow-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 52px 52px;
}

.about-flow-icon--01 {
  background-image: url("./assets/img/about/flow-phone-consultation.webp");
}

.about-flow-icon--02 {
  background-image: url("./assets/img/about/flow-estimate-document.webp");
}

.about-flow-icon--03 {
  background-image: url("./assets/img/about/flow-contract-document.webp");
}

.about-flow-icon--04 {
  background-image: url("./assets/img/about/flow-demolition-excavator.webp");
}

.about-flow-icon--05 {
  background-image: url("./assets/img/about/flow-completed-home.webp");
}

.about-flow-number {
  font-size: 20px;
  font-weight: var(--font-weight-heading);
  line-height: 1;
}

.about-flow-connector {
  flex: 0 0 32px;
  width: 32px;
  height: 1px;
  margin-top: 131px;
  background-color: #fff;
}

.service-business {
  padding: 0;
  background-color: #fff;
}

.service-business-list {
  max-width: 1120px;
  margin: 0 auto;
}

.service-business-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-business-image {
  min-height: 300px;
  background-color: #ddd;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-business-image--wood {
  background-image: url("./assets/img/top/wooden-house-demolition-with-water.webp");
}

.service-business-image--steel {
  background-image: url("./assets/img/about/steel-frame-demolition-site.webp");
}

.service-business-image--rc {
  background-image: url("./assets/img/service/concrete-building-demolition.webp");
}

.service-business-image--civil {
  background-image: url("./assets/img/service/graded-land-excavator.webp");
}

.service-business-text {
  padding: 32px 36px;
}
.service-business-text p {
  font-size: 14px;
  line-height: 2;
  font-weight: var(--font-weight-medium);
  color: #1f1f1f;
  margin-bottom: 18px;
}
.service-business-text p:last-child {
  margin-bottom: 0;
}

.service-business-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.service-business-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #002b5c;
  color: #fff;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
}
.service-business-title h2 {
  color: #002b5c;
  font-size: 30px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.12em;
}

.recruit-requirements {
  padding: 0;
  background-color: #fff;
}
.recruit-requirements .c-page-heading {
  max-width: none;
}

.recruit-requirements-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.recruit-table {
  width: 520px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #d6e0ea;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 28px rgba(15, 40, 83, 0.08);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
}
.recruit-table th,
.recruit-table td {
  padding: 16px 18px;
  vertical-align: top;
  line-height: 1.7;
}
.recruit-table tr + tr th,
.recruit-table tr + tr td {
  border-top: 1px solid #e2e8f0;
}
.recruit-table th {
  width: 150px;
  color: #0f2853;
  text-align: left;
  font-weight: var(--font-weight-heading);
  background-color: #f0f4f9;
  border-right: 1px solid #d6e0ea;
  white-space: nowrap;
}
.recruit-table td {
  color: #1f1f1f;
}
.recruit-table tr:nth-child(even) td {
  background-color: #fbfcfe;
}
.recruit-table ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}

.recruit-requirements-image {
  width: 520px;
  border-radius: 12px;
  background-image: url("./assets/img/recruit/team-shrine-visit.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-requirements-content {
    flex-direction: column;
    align-items: center;
  }
  .recruit-table,
  .recruit-requirements-image {
    width: min(100%, 720px);
  }
  .recruit-requirements-image {
    min-height: 360px;
  }
}
.recruit-work {
  padding: 0;
  background-color: #fff;
}

.recruit-work-heading {
  text-align: center;
  margin-bottom: 42px;
}
.recruit-work-heading h2 {
  color: #002b5c;
  font-size: clamp(30px, 2.4vw, var(--font-size-section-title));
  font-weight: var(--font-weight-heading);
  letter-spacing: normal;
  line-height: 1.4;
}

.recruit-work-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 18px;
}

.recruit-work-card {
  border: 1px solid #d8dde3;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.recruit-work-image {
  height: 210px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recruit-work-image--01 {
  background-image: url("./assets/img/service/concrete-building-demolition.webp");
  background-size: 110%;
  background-position: center 20%;
}

.recruit-work-image--02 {
  background-image: url("./assets/img/recruit/wooden-house-demolition-excavator.webp");
}

.recruit-work-image--03 {
  background-image: url("./assets/img/service/wooden-house-demolition.webp");
}

.recruit-work-image--04 {
  background-image: url("./assets/img/about/dust-control-wooden-demolition.webp");
}

.recruit-work-image--05 {
  background-image: url("./assets/img/recruit/concrete-demolition-excavator.webp");
}

.recruit-work-image--06 {
  background-image: url("./assets/img/recruit/dump-truck.webp");
}

.recruit-work-body {
  padding: 26px 22px 34px;
}
.recruit-work-body h3 {
  color: #002b5c;
  font-size: 22px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.recruit-work-body p {
  color: #1f1f1f;
  font-size: 16px;
  line-height: 2;
  font-weight: var(--font-weight-medium);
}

.recruit-work-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.works-page {
  padding: 0;
  background-color: #fff;
}

.works-page-heading {
  text-align: center;
  margin-bottom: 54px;
}
.works-page-heading p:last-child {
  color: #002b5c;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
}

.works-page-list {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.works-page-card {
  display: block;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
  border-radius: 6px;
  padding: 3px 3px 0;
  box-sizing: border-box;
  transition: 0.3s;
}
.works-page-card:focus-visible {
  outline: 3px solid #f5821f;
  outline-offset: 4px;
}
.works-page-card:hover {
  transform: scale(1.03);
  z-index: 10;
}
.works-page-card:hover::before {
  opacity: 1;
}
.works-page-card:hover::after {
  opacity: 1;
}
.works-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background-color: #f5821f;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0;
  transition: 0.3s;
  z-index: 5;
  pointer-events: none;
}
.works-page-card::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-right: 4px solid #f5821f;
  border-bottom: 4px solid #f5821f;
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
  pointer-events: none;
}

.works-page-image {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: #ddd;
  border-radius: 4px;
}

.works-page-empty {
  grid-column: 1/-1;
  padding: 48px 20px;
  color: #0f2853;
  text-align: center;
}

.works-page-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.works-page-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.works-page-pagination a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #0f2853;
  border-radius: 50%;
  color: #0f2853;
  font-family: var(--font-en);
}
.works-page-pagination a:hover, .works-page-pagination a[aria-current=page] {
  background: #0f2853;
  color: #fff;
}
.works-page-pagination a:focus-visible {
  outline: 2px solid #f5821f;
  outline-offset: 3px;
}
.works-page-pagination .page-numbers.current {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0f2853;
  color: #fff;
  font-family: var(--font-en);
}

.works-page-body {
  position: relative;
  padding: 24px 20px 32px;
  background-color: #fff;
  overflow: hidden;
  z-index: 2;
}
.works-page-body::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(circle, #ff9a3c 1.4px, transparent 1.4px);
  background-size: 6px 6px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.55) 65%, #000 100%);
  mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.55) 65%, #000 100%);
}
.works-page-body h2 {
  color: #002b5c;
  font-size: 20px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 20px;
  z-index: 2;
}
.works-page-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  height: 28px;
  background-color: #ff5a00;
  transform: rotate(18deg);
}

.gallery-page {
  background-color: #fff;
}

.gallery-page-heading {
  margin-bottom: 48px;
}
.gallery-page-heading p:last-child {
  color: #002b5c;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
}

.gallery-description {
  max-width: 760px;
  margin: 0 auto 40px;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.9;
}
.gallery-description > * + * {
  margin-top: 1em;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.gallery-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.gallery-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.1;
  object-fit: cover;
}

.gallery-button-wrap {
  margin-top: 48px;
  text-align: center;
}

.company-page {
  padding: 0;
  background-color: #fff;
}

.company-page-heading {
  text-align: center;
  margin-bottom: 56px;
}
.company-page-heading p:last-child {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
}

.company-section-heading {
  margin-bottom: 18px;
}
.company-section-heading h2 {
  color: #002b5c;
  font-size: 24px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.06em;
  padding-left: 18px;
  border-left: 3px solid #ff5a00;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.company-table tr {
  border-top: 1px solid #d8dde3;
}
.company-table tr:last-child {
  border-bottom: 1px solid #d8dde3;
}
.company-table th,
.company-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.company-table th {
  width: 190px;
  color: #1f1f1f;
  font-weight: var(--font-weight-medium);
}
.company-table td {
  color: #1f1f1f;
  font-weight: 500;
}

.company-access-heading {
  margin-top: 28px;
}

.company-address {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: #1f1f1f;
  margin-bottom: 14px;
}

.company-map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.company-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-page {
  padding: 0;
  background-color: #fff;
}

.contact-page-heading {
  text-align: center;
  margin-bottom: 48px;
}
.contact-page-heading p:last-child {
  color: #1f1f1f;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
}

.contact-form-area {
  max-width: 760px;
  margin: 0 auto;
}
.contact-form-area .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form-area .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b4232f;
  font-size: 13px;
  line-height: 1.5;
}
.contact-form-area .wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.contact-form-area .wpcf7-spinner {
  margin: 0;
}

.contact-form-box {
  padding: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.contact-form-row--textarea {
  align-items: start;
}
.contact-form-row--textarea .contact-form-label {
  padding-top: 10px;
}

.contact-form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: var(--font-weight-heading);
  line-height: 1.5;
}

.contact-required {
  flex: none;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #f36b21;
  color: #fff;
  font-size: 11px;
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
}

.contact-form-field {
  min-width: 0;
}

.contact-input,
.contact-textarea {
  display: block;
  width: 100%;
  border: 1px solid #8faed6;
  border-radius: 8px;
  padding: 12px 14px;
  background-color: #fff;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: #0f2853;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(15, 40, 83, 0.12);
}
.contact-input.wpcf7-not-valid,
.contact-textarea.wpcf7-not-valid {
  border-color: #b4232f;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #777;
  font-size: 14px;
}

.contact-input {
  min-height: 46px;
}

.contact-textarea {
  min-height: 130px;
  resize: vertical;
}

p.contact-privacy {
  margin: 22px 0 16px;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
  text-align: center;
}
p.contact-privacy a {
  color: #005bd8;
  text-decoration: underline;
}

.contact-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-submit,
.contact-form-area .wpcf7-submit {
  display: block;
  width: min(100%, 280px);
  min-height: 52px;
  margin: 0 auto;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a00, #ff3d00);
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.contact-submit:not(:disabled):hover, .contact-submit:focus-visible,
.contact-form-area .wpcf7-submit:not(:disabled):hover,
.contact-form-area .wpcf7-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 72, 0, 0.2);
  filter: brightness(1.06);
}
.contact-submit:focus-visible,
.contact-form-area .wpcf7-submit:focus-visible {
  outline: 3px solid #0f2853;
  outline-offset: 3px;
}

.privacy-page {
  padding: 0;
  background-color: #fff;
}

.privacy-section {
  margin-bottom: 28px;
}
.privacy-section h2 {
  color: #002b5c;
  font-size: 20px;
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.04em;
  padding: 0 0 10px 16px;
  border-left: 4px solid #ff5a00;
  border-bottom: 1px solid #ff8a2a;
  margin-bottom: 14px;
}
.privacy-section p {
  color: #1f1f1f;
  font-size: var(--font-size-small);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.footer,
.footer *,
.footer *::before,
.footer *::after {
  box-sizing: border-box;
}
.footer {
  width: 100%;
  background-color: #002b5c;
  color: #fff;
}

.footer-inner.container {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin-inline: auto;
  padding: 48px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-info {
  min-width: 0;
}

.footer-company {
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0;
}

.footer-brand {
  margin: 0 0 22px;
  color: #fff;
  font-size: 46px;
  font-weight: var(--font-weight-en-heading);
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-address {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.footer-nav {
  width: 100%;
  min-width: 0;
}
.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 35px;
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.footer-nav li {
  min-width: 0;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}
.footer-nav li:nth-child(4n+1) {
  border-left: none;
}
.footer-nav a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  white-space: normal;
  transition: opacity 0.3s;
}
.footer-nav a:hover {
  opacity: 0.7;
}
.footer-nav a::after {
  content: none;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  * {
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 900px) {
  html.menu-open {
    overflow: hidden;
  }
  body.menu-open {
    position: fixed;
    top: var(--menu-scroll-y, 0px);
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .header-inner {
    justify-content: space-between;
  }
  .header-right {
    position: static;
  }
  .header-actions {
    display: none;
  }
  .header-brand {
    position: relative;
    z-index: 2;
    font-size: 28px;
  }
  .nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    margin: 0;
    padding: 24px 24px 32px;
    overflow-y: auto;
    background-color: #fff;
    color: #0f2853;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.25s ease, opacity 0.25s ease;
  }
  .header.is-open .nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .nav-list li {
    display: block;
    border-bottom: 1px solid #d9e4f0;
  }
  .nav-list a {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 12px 16px;
    color: #0f2853;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.04em;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .nav-list a:hover, .nav-list a:focus-visible {
    background-color: #f1f5fa;
    color: #002b5c;
  }
  .nav-list a:focus-visible {
    outline: 2px solid #f5821f;
    outline-offset: -3px;
  }
  .nav-list .nav-contact {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    border: 0;
  }
  .nav-list .nav-contact a {
    justify-content: center;
    width: min(100%, 280px);
    min-height: 54px;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: #0f2853;
    color: #fff;
    font-size: 16px;
    text-align: center;
  }
  .nav-list .nav-contact a:hover,
  .nav-list .nav-contact a:focus-visible {
    background-color: #1b4176;
    color: #fff;
  }
  .hamburger {
    position: relative;
    z-index: 2;
    display: block;
    flex: none;
    width: 58px;
    height: 52px;
    margin-right: -8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0f2853;
    cursor: pointer;
  }
  .hamburger:focus-visible {
    outline: 2px solid #f5821f;
    outline-offset: 2px;
  }
  .hamburger-line {
    position: absolute;
    left: 14px;
    width: 30px;
    height: 2px;
    background: currentColor;
    transition: top 0.25s ease, transform 0.25s ease, width 0.25s ease;
  }
  .hamburger-line:nth-child(1) {
    top: 12px;
  }
  .hamburger-line:nth-child(2) {
    top: 21px;
  }
  .hamburger-line:nth-child(3) {
    top: 30px;
  }
  .hamburger-label {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    color: currentColor;
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
  }
  .header.is-open .hamburger-line:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }
  .header.is-open .hamburger-line:nth-child(2) {
    width: 0;
  }
  .header.is-open .hamburger-line:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }
  .header.is-open .hamburger-label {
    letter-spacing: 0.12em;
  }
  body.admin-bar .nav {
    height: calc(100dvh - var(--header-height) - 32px);
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    height: calc(100dvh - var(--header-height) - 46px);
  }
}
@media screen and (max-width: 600px) {
  .header-brand {
    font-size: 24px;
  }
  .nav {
    padding: 12px 24px 20px;
  }
  .nav-list a {
    min-height: 56px;
    font-size: 17px;
  }
  .nav-list .nav-contact {
    margin-top: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav-list a,
  .hamburger-line {
    transition-duration: 0.01ms;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
    height: calc(100svh - 64px);
    background-size: cover;
    background-position: 80% center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .hero .hero-inner {
    position: relative;
    height: 100%;
  }
  .hero .hero-content {
    grid-template-columns: minmax(0, 1fr);
    height: 100%;
  }
  .hero .hero-text {
    grid-column: 1;
    justify-self: end;
    width: max-content;
    max-width: calc(100% - 40px);
    margin-right: clamp(16px, 3vw, 32px);
    color: #fff;
    z-index: 2;
    text-align: left;
  }
  .hero .hero-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: var(--font-size-hero);
    line-height: 1.3;
    font-weight: var(--font-weight-heading);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .hero .hero-description {
    margin: 0;
    color: #fff;
    font-size: var(--font-size-hero-description);
    line-height: 1.8;
    font-weight: 400;
  }
  .about {
    padding: 0;
    background-color: #fff;
    background-image: none;
    position: relative;
    overflow: hidden;
  }
  .about::before {
    display: none;
  }
  .about::after {
    top: -4%;
    right: -10px;
    bottom: -4%;
    width: clamp(110px, 32vw, 160px);
    background-size: 100% 100%;
    z-index: 0;
  }
  .about-inner {
    display: block;
    position: relative;
    z-index: 2;
    padding-right: 0;
  }
  .about-text {
    width: 100%;
  }
  .section-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 0;
  }
  .section-title {
    font-size: var(--font-size-section-title);
    line-height: 1.35;
    margin-bottom: 24px;
  }
  .about-catch {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.7;
    margin-bottom: 15px;
  }
  .about-image-pc {
    display: none;
  }
  .about-image-sp {
    display: block;
    width: 100%;
    margin: 0 0 22px;
    position: static;
  }
  .about-image-sp img {
    display: block;
    width: 90%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
  }
  .about-description {
    position: relative;
    width: 80%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-bottom: 1px;
  }
  .about-button.c-more-button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    column-gap: 8px;
    width: min(280px, 100vw - 90px);
    padding-inline: 14px;
    margin: 24px 0 0;
  }
  .about-button.c-more-button::before {
    display: none;
  }
  .about-button.c-more-button .c-more-button__label {
    grid-column: 1;
  }
  .about-button.c-more-button::after {
    grid-column: 2;
  }
}
@media screen and (max-width: 768px) and (max-width: 360px) {
  .about-button.c-more-button {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .service {
    padding: 0 0 56px;
    background-color: #002b5c;
  }
  .service-heading {
    padding: 0;
    margin-bottom: 0;
  }
  .service-label {
    font-size: 13px;
    line-height: 1;
    margin-bottom: 0;
  }
  .service-title {
    font-size: var(--font-size-section-title);
    line-height: 1.3;
    margin-bottom: 0;
  }
  .service-list {
    width: calc(100% - 40px);
    max-width: 350px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: #002b5c;
  }
  .service-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .service-image--rc {
    background-position: center calc(50% + 30px);
  }
  .service-body {
    padding: 18px 16px 16px;
  }
  .service-body h3 {
    display: inline-block;
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .service-body h3::after {
    display: none;
  }
  .service-body > p:not(.service-number) {
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 18px;
  }
  .service-number {
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    margin: 0 18px 10px 0;
  }
  .works {
    padding: 0 0 16px;
    background-color: #fff;
  }
  .works + .contact .contact-inner {
    padding-block-start: 16px;
  }
  .works-heading-top {
    display: block;
    margin-bottom: 0;
  }
  .works-line {
    display: none;
  }
  .works-label {
    font-size: 14px;
    font-weight: var(--font-weight-heading);
    color: #002b5c;
    margin: 0;
  }
  .works-title {
    font-size: var(--font-size-section-title);
    line-height: 1.4;
    margin: 0 0 18px;
  }
  .works-description {
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
  }
  .works-slider {
    grid-template-columns: minmax(0, 1fr) minmax(0, calc(100vw - 70px)) minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
  }
  .works-card-main {
    height: 320px;
  }
  .works-card-side {
    height: 280px;
    opacity: 0.45;
  }
  .works-card-side .works-project-name {
    display: none;
  }
  .works-project-name {
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 12px;
  }
  .works-arrow {
    width: 46px;
    height: 46px;
  }
  .works-arrow::before {
    width: 18px;
    height: 18px;
  }
  .works-dots {
    margin-top: 14px;
  }
  .works-button-wrap {
    margin-top: 18px;
    padding: 0 20px;
  }
  .contact {
    padding: 0;
    background-color: #fff;
  }
  .contact-heading {
    padding: 28px 20px 15px;
    margin-bottom: 28px;
    background-image: url("./assets/img/top/contact-heading-frame.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 380px auto;
  }
  .contact-label {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background-color: #fff;
    color: #002b5c;
    font-size: 16px;
    font-weight: var(--font-weight-heading);
    letter-spacing: 0.3em;
    line-height: 1;
    margin-bottom: 0;
    z-index: 2;
  }
  .contact-title {
    font-size: 25px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    white-space: nowrap;
  }
  .contact-description {
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
  }
  .contact-sub-break {
    display: initial;
  }
  .contact-boxes {
    width: calc(100% - 72px);
    max-width: 420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-box {
    width: 100%;
    height: auto;
    min-height: 130px;
    padding: 20px 14px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }
  .contact-tel {
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    background: linear-gradient(135deg, #e97818, #c95c10);
  }
  .contact-tel .contact-main {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
  .contact-mail {
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    background-color: #002b5c;
  }
  .contact-mail .contact-main {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
  .contact-main-row {
    gap: 10px;
  }
  .contact-icon-img {
    width: 32px;
    height: 32px;
  }
  .contact-sub {
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .hero {
    background-image: url("./assets/img/top/hero-sp.webp");
    background-position: center;
  }
  .hero .hero-content {
    align-items: start;
  }
  .hero .hero-text {
    margin-top: clamp(48px, 7svh, 110px);
  }
}
@media screen and (max-width: 768px) {
  .footer-inner.container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-inline: auto;
    padding: clamp(50px, 10vw, 85px) 0 clamp(35px, 7vw, 55px);
  }
  .footer-top {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer-info {
    width: 100%;
  }
  .footer-company {
    margin: 0 0 8px;
    font-size: clamp(16px, 3vw, 23px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .footer-brand {
    margin: 0;
    font-size: clamp(42px, 10vw, 76px);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    letter-spacing: 0;
    text-shadow: none;
  }
  .footer-address {
    margin: clamp(28px, 4vw, 24px) 0 clamp(30px, 4vw, 26px);
    font-size: clamp(14px, 2.8vw, 21px);
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 0;
    row-gap: 0;
    column-gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-nav li {
    min-width: 0;
    margin: 0;
    padding: 0;
    text-align: left;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-nav li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-nav li:nth-child(7) a {
    padding-right: 6px;
    padding-left: 6px;
    font-size: clamp(11px, 3.4vw, 16px);
    white-space: nowrap;
  }
  .footer-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(82px, 14vw, 114px);
    padding: 12px clamp(12px, 3vw, 24px) 12px clamp(12px, 3vw, 24px);
    font-size: clamp(14px, 3vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    white-space: normal;
  }
  .footer-bottom {
    padding-top: clamp(28px, 5vw, 38px);
    text-align: center;
  }
  .footer-bottom p {
    font-size: clamp(12px, 2.5vw, 19px);
  }
}
@media screen and (max-width: 768px) {
  .strengths {
    padding: 0;
    background-color: #fff;
  }
  .strength-list {
    max-width: 540px;
    margin: 0 auto;
    padding: 0;
  }
  .strength-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 24px 0 28px;
    border-top: 1px solid #e5e5e5;
  }
  .strength-item:first-child {
    border-top: none;
  }
  .strength-number {
    grid-column: 1;
    grid-row: 1;
    color: #ff5a00;
    font-size: 38px;
    font-weight: var(--font-weight-medium);
    line-height: 1;
    margin: 0;
    text-align: left;
    border-right: none;
  }
  .strength-text {
    display: contents;
  }
  .strength-text h2 {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    line-height: 1.35;
    color: #002b5c;
    margin: 0;
    writing-mode: horizontal-tb;
    white-space: normal;
  }
  .strength-text p {
    grid-column: 1/-1;
    grid-row: 2;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    writing-mode: horizontal-tb;
    white-space: normal;
  }
  .strength-image {
    grid-column: 1/-1;
    grid-row: 3;
    width: 100%;
    height: clamp(190px, 52vw, 280px);
    border-radius: 6px;
    background-color: #ddd;
  }
  .about-flow {
    padding: 0;
    background-color: #002b5c;
    color: #fff;
    overflow: hidden;
  }
  .about-flow-label {
    color: #fff;
    font-size: 12px;
    font-weight: var(--font-weight-heading);
    letter-spacing: 0.18em;
    text-align: center;
    margin: 0 0 14px;
  }
  .about-flow-title {
    color: #fff;
    font-size: clamp(16px, 5.5vw, 20px);
    line-height: 1.35;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 30px;
    white-space: nowrap;
  }
  .about-flow-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: visible;
  }
  .about-flow-item {
    flex: none;
    width: 100%;
    max-width: 340px;
    padding-inline: 0;
    text-align: center;
    color: #fff;
  }
  .about-flow-item h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: var(--font-weight-heading);
    min-height: 0;
    margin: 0 0 12px;
  }
  .about-flow-item p:last-child {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
  }
  .about-flow-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 14px;
  }
  .about-flow-number {
    color: #fff;
    font-size: 20px;
    font-weight: var(--font-weight-heading);
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .about-flow-connector {
    flex: 0 0 48px;
    width: 1px;
    height: 48px;
    margin: 18px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .service-business {
    padding: 0;
    background-color: #fff;
  }
  .service-business-list {
    display: block;
    margin: 0;
    padding: 0;
  }
  .service-business-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 44px;
  }
  .service-business-item:last-child {
    margin-bottom: 0;
  }
  .service-business-text {
    order: 1;
    width: calc(100% - 25px);
    max-width: 340px;
    margin: 0 auto;
    padding: 0;
  }
  .service-business-text p {
    font-size: var(--font-size-small);
    line-height: 1.8;
    font-weight: 400;
    margin: 0 0 18px;
  }
  .service-business-text p:last-child {
    margin-bottom: 0;
  }
  .service-business-image {
    order: 2;
    width: calc(100% - 25px);
    max-width: 340px;
    height: 200px;
    min-height: 200px;
    margin: 24px auto 0;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    overflow: hidden;
  }
  .service-business-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .service-business-title span {
    width: 34px;
    height: 34px;
    background-color: #002b5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: var(--font-weight-heading);
    line-height: 1;
  }
  .service-business-title h2 {
    color: #002b5c;
    font-size: 22px;
    line-height: 1.3;
    font-weight: var(--font-weight-heading);
    letter-spacing: 0.08em;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit-requirements {
    padding: 0;
    background-color: #fff;
  }
  .recruit-requirements-content {
    display: block;
  }
  .recruit-table {
    width: 100%;
    table-layout: fixed;
    border-radius: 10px;
    margin: 0 auto 28px;
  }
  .recruit-table th,
  .recruit-table td {
    padding: 13px 12px;
    box-sizing: border-box;
  }
  .recruit-table th {
    width: 34%;
    font-size: 13px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .recruit-table td {
    width: 66%;
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .recruit-table ul {
    margin: 0;
    padding-left: 1.2em;
  }
  .recruit-table li {
    margin: 0 0 4px;
  }
  .recruit-table li:last-child {
    margin-bottom: 0;
  }
  .recruit-requirements-image {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    background-color: #ddd;
  }
  .recruit-work {
    padding: 0;
    background-color: #fff;
  }
  .recruit-work-heading {
    text-align: center;
    margin-bottom: 28px;
  }
  .recruit-work-heading h2 {
    color: #002b5c;
    font-size: var(--font-size-section-title);
    line-height: 1.35;
    font-weight: var(--font-weight-heading);
    letter-spacing: normal;
    margin: 0;
  }
  .recruit-work-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }
  .recruit-work-card {
    display: grid;
    grid-template-columns: 46% 54%;
    width: 100%;
    min-height: 106px;
    background-color: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .recruit-work-image {
    width: 100%;
    height: 100%;
    min-height: 106px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    overflow: hidden;
  }
  .recruit-work-body {
    padding: 14px 12px;
    box-sizing: border-box;
  }
  .recruit-work-body h3 {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #002b5c;
    font-size: 13px;
    line-height: 1.35;
    font-weight: var(--font-weight-heading);
    margin: 0 0 8px;
    white-space: nowrap;
  }
  .recruit-work-body p {
    color: #1f1f1f;
    font-size: var(--font-size-small);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
  }
  .recruit-work-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .works-page {
    padding: 0;
    background-color: #fff;
  }
  .works-page-heading {
    text-align: center;
    margin-bottom: 28px;
  }
  .works-page-heading p:last-child {
    color: #002b5c;
    font-size: 12px;
    line-height: 1.7;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.04em;
    margin: 0;
  }
  .works-page-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 320px;
    margin: 0 auto;
  }
  .works-page-card {
    width: 100%;
    padding: 4px 4px 0;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    transform: none;
  }
  .works-page-card:hover {
    transform: none;
  }
  .works-page-card::before, .works-page-card::after {
    opacity: 0;
  }
  .works-page-card:hover::before {
    opacity: 1;
  }
  .works-page-card:hover::after {
    opacity: 1;
  }
  .works-page-image {
    width: 100%;
    height: 190px;
    border-radius: 4px;
    background-color: #ddd;
    overflow: hidden;
  }
  .works-page-body {
    position: relative;
    padding: 16px 18px 22px;
    background-color: #fff;
    overflow: hidden;
    z-index: 2;
  }
  .works-page-body::after {
    opacity: 0.85;
  }
  .works-page-body h2 {
    color: #002b5c;
    font-size: 16px;
    line-height: 1.4;
    font-weight: var(--font-weight-heading);
    letter-spacing: 0.06em;
    position: relative;
    padding-left: 18px;
    margin: 0;
    z-index: 2;
  }
  .works-page-body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 2px;
    height: 22px;
    background-color: #ff5a00;
    transform: rotate(18deg);
  }
}
@media screen and (max-width: 768px) {
  .gallery-page-heading {
    margin-bottom: 32px;
  }
  .gallery-page-heading p:last-child {
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
  .gallery-description {
    margin-bottom: 28px;
    font-size: 14px;
  }
  .gallery-list {
    gap: 4px;
  }
  .gallery-button-wrap {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .contact-page {
    padding: 0;
    background-color: #fff;
  }
  .contact-page-heading {
    text-align: center;
    margin-bottom: 32px;
  }
  .contact-page-heading p:last-child {
    color: #1f1f1f;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
  }
  .contact-form-area {
    max-width: 540px;
    margin: 0 auto;
  }
  .contact-form-box {
    padding: 0;
  }
  .contact-form-row {
    display: block;
    padding: 16px 0;
  }
  .contact-form-label {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
  }
  .contact-form-row--textarea .contact-form-label {
    padding-top: 0;
  }
  .contact-input,
  .contact-textarea {
    font-size: 16px;
  }
  .contact-input {
    min-height: 50px;
  }
  .contact-textarea {
    min-height: 150px;
  }
  p.contact-privacy {
    margin: 18px 0 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .company-page {
    padding: 0;
    background-color: #fff;
  }
  .company-page-heading {
    text-align: center;
    margin-bottom: 36px;
  }
  .company-page-heading p:last-child {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.7;
    font-weight: var(--font-weight-medium);
    margin: 0;
  }
  .company-section-heading {
    margin-bottom: 16px;
  }
  .company-section-heading h2 {
    color: #002b5c;
    font-size: 20px;
    line-height: 1.4;
    font-weight: var(--font-weight-heading);
    letter-spacing: 0.04em;
    padding-left: 14px;
    border-left: 3px solid #ff5a00;
    margin: 0;
  }
  .company-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom: 28px;
  }
  .company-table tr {
    border-top: 1px solid #d8dde3;
  }
  .company-table tr:last-child {
    border-bottom: 1px solid #d8dde3;
  }
  .company-table th,
  .company-table td {
    padding: 14px 8px;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    vertical-align: top;
    overflow-wrap: anywhere;
  }
  .company-table th {
    width: 34%;
    color: #1f1f1f;
    font-weight: var(--font-weight-heading);
  }
  .company-table td {
    width: 66%;
    color: #1f1f1f;
    font-weight: 500;
  }
  .company-access-heading {
    margin-top: 30px;
    margin-bottom: 14px;
  }
  .company-address {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.7;
    font-weight: var(--font-weight-medium);
    margin: 0 0 14px;
  }
  .company-map {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
  }
  .company-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .privacy-page {
    padding: 0;
    background-color: #fff;
  }
  .privacy-section {
    margin-bottom: 28px;
  }
  .privacy-section h2 {
    color: #002b5c;
    font-size: 17px;
    line-height: 1.45;
    font-weight: var(--font-weight-heading);
    letter-spacing: 0.02em;
    padding: 0 0 9px 12px;
    border-left: 3px solid #ff5a00;
    border-bottom: 1px solid #ff8a2a;
    margin: 0 0 12px;
  }
  .privacy-section p {
    color: #1f1f1f;
    font-size: var(--font-size-small);
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
  }
}
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .header-brand {
    font-size: 28px;
  }
  .header-right {
    right: 330px;
  }
  .nav {
    margin-right: 20px;
  }
  .nav-list {
    gap: clamp(12px, 2vw, 30px);
  }
  .header-phone {
    width: 180px;
    font-size: 20px;
  }
  .contact-button {
    width: 150px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero {
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
  }
  .hero .hero-text {
    width: calc(100% - 70px);
  }
  .hero .hero-title {
    font-size: var(--font-size-hero);
    line-height: 1.3;
  }
  .hero .hero-description {
    font-size: var(--font-size-hero-description);
    line-height: 1.8;
  }
  .about {
    padding: 0;
  }
  .about-inner {
    gap: 40px;
    align-items: center;
  }
  .about-text {
    width: 100%;
  }
  .about-image {
    width: 100%;
  }
  .about-image img {
    height: clamp(270px, 31vw, 340px);
  }
  .section-title {
    font-size: clamp(28px, 3.2vw, 34px);
    margin-bottom: 32px;
  }
  .about-catch {
    font-size: clamp(19px, 2.2vw, 24px);
    margin-bottom: 24px;
  }
  .about-description {
    font-size: 16px;
    line-height: 1.9;
  }
  .service-heading {
    padding: 60px 32px 40px;
  }
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-image {
    height: 220px;
  }
  .service-body {
    padding: 30px 28px 40px;
  }
  .service-body h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .service-body > p:not(.service-number) {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .service-card {
    display: flex;
    flex-direction: column;
  }
  .service-body {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .service-body > p:not(.service-number) {
    flex: 1;
  }
  .service-button {
    margin-top: auto;
  }
  .works {
    padding: 0 0 24px;
  }
  .works-slider {
    grid-template-columns: minmax(0, 1fr) minmax(0, 62%) minmax(0, 1fr);
    gap: 24px;
    padding: 0 24px;
  }
  .works-card-main {
    height: 460px;
  }
  .works-card-side {
    height: 400px;
  }
  .works-project-name {
    right: 16px;
    bottom: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
  .contact {
    padding: 0;
  }
  .contact-title {
    font-size: var(--font-size-section-title);
  }
  .contact-boxes {
    gap: 20px;
    margin-top: 10px;
  }
  .contact-box {
    width: calc(50% - 10px);
    height: 180px;
    padding: 20px 18px;
  }
  .contact-heading {
    margin-bottom: 10px;
  }
  .contact-tel .contact-main,
  .contact-mail .contact-main {
    font-size: 24px;
  }
  .contact-icon-img {
    width: 50px;
    height: 50px;
  }
  .contact-sub {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-inner.container {
    padding: 40px 0 24px;
  }
  .footer-top {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
  .footer-brand {
    font-size: 44px;
  }
  .footer-address {
    font-size: 16px;
  }
  .footer-nav ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    margin-top: 10px;
  }
  .footer-nav li {
    padding: 0 12px;
  }
  .footer-nav li:nth-child(4n+1) {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }
  .footer-nav li:nth-child(2n+1) {
    border-left: none;
  }
  .footer-nav a {
    font-size: 16px;
  }
  .footer-bottom {
    padding-top: 20px;
  }
  .footer-bottom p {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .strengths {
    padding: 0;
  }
  .strength-list {
    max-width: 100%;
  }
  .strength-item {
    grid-template-columns: 80px minmax(0, 1fr) clamp(300px, 34vw, 350px);
    column-gap: 28px;
  }
  .strength-number {
    font-size: 50px;
  }
  .strength-text h2 {
    font-size: 26px;
  }
  .strength-text p {
    font-size: 14px;
  }
  .strength-image {
    height: clamp(175px, 20vw, 210px);
  }
  .about-flow {
    padding: 0;
  }
  .about-flow-title {
    margin-bottom: 42px;
  }
  .about-flow-item {
    width: auto;
    flex: 1 1 0;
  }
  .about-flow-item h3 {
    font-size: 13px;
    min-height: 2.8em;
  }
  .about-flow-item p:last-child {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
  }
  .about-flow-icon {
    width: 90px;
    height: 90px;
    background-size: 52px 52px;
    margin-bottom: 16px;
  }
  .about-flow-number {
    font-size: 17px;
  }
  .about-flow-connector {
    flex: 0 0 20px;
    width: 20px;
    margin-top: 114px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-business {
    padding: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works-page-list {
    width: calc(100% - 64px);
    max-width: 760px;
    margin: 0 auto;
    gap: 24px;
  }
  .works-page-image {
    height: 200px;
  }
  .works-page-body h2 {
    font-size: 16px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .company-page-inner {
    max-width: 720px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .privacy-page-inner {
    max-width: 720px;
    margin: 0 auto;
  }
}
.section-label,
.service-label,
.works-label,
.contact-label,
.about-flow-label {
  font-family: var(--font-en);
  font-weight: var(--font-weight-en-heading);
}

.header-brand,
.footer-brand,
.footer-bottom,
.about-flow-number {
  font-family: var(--font-en);
}

.about-flow-label,
.c-page-heading__label {
  margin-bottom: 0;
}

.works-title,
.contact-title,
.company-page-heading h1,
.contact-page-heading h1,
.works-page-heading h1,
.gallery-page-heading h1 {
  margin-bottom: 0;
}

.works-page-heading > p:last-child,
.company-page-heading > p:last-child,
.contact-page-heading > p:last-child,
.gallery-page-heading > p:last-child {
  font-size: var(--font-size-page-description);
}

.l-inner {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 60px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: calc(100% - 40px);
    padding-block: 30px;
  }
}
.l-inner--narrow {
  max-width: 960px;
}

.c-more-button {
  display: inline-grid;
  grid-template-columns: 18px minmax(0, 1fr) 18px;
  align-items: center;
  column-gap: 12px;
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  padding: 12px 18px 12px 20px;
  border: 1px solid #0f2853;
  border-radius: 999px;
  background-color: #fff;
  color: #0f2853;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.c-more-button::before, .c-more-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
}
.c-more-button__label {
  grid-column: 2;
  min-width: 0;
  text-align: center;
}
.c-more-button::before {
  grid-column: 1;
}
.c-more-button::after {
  grid-column: 3;
  background-color: currentColor;
  -webkit-mask: url("./assets/img/common/arrow-right.svg") center/contain no-repeat;
  mask: url("./assets/img/common/arrow-right.svg") center/contain no-repeat;
  transition: transform 0.25s ease;
}
.c-more-button:hover {
  background-color: #0f2853;
  border-color: #fff;
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 40, 83, 0.18);
  transform: translateY(-2px);
}
.c-more-button:hover::after {
  transform: translateX(4px);
}
.c-more-button:focus-visible {
  outline: 2px solid #f5821f;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .c-more-button,
  .c-more-button::before,
  .c-more-button::after {
    transition: none;
  }
  .c-more-button:hover,
  .c-more-button:hover::before,
  .c-more-button:hover::after {
    transform: none;
  }
}
.c-page-heading {
  max-width: 960px;
  margin: 0 auto 56px;
  text-align: center;
}
.c-page-heading h1 {
  margin: 0;
  color: #002b5c;
  font-size: clamp(30px, 2.4vw, var(--font-size-section-title));
  font-weight: var(--font-weight-heading);
  letter-spacing: normal;
  line-height: 1.4;
}

.c-page-heading__title-group {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 24px;
  text-align: center;
}

:where(.c-page-heading) > p:last-child {
  margin: 0;
  color: #1f1f1f;
  font-size: var(--font-size-page-description);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.c-page-heading__sp-break {
  display: none;
}

.c-page-heading__label {
  display: block;
  margin: 0;
  color: #002b5c;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: var(--font-weight-en-heading);
  letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
  .c-page-heading {
    margin-bottom: 36px;
  }
  .c-page-heading h1 {
    font-size: var(--font-size-section-title);
    line-height: 1.35;
  }
  .c-page-heading > p:last-child {
    text-align: center;
  }
  .c-page-heading__sp-break {
    display: initial;
  }
  .c-page-heading--long h1 {
    font-size: clamp(24px, 7vw, var(--font-size-page-title));
  }
  .c-page-heading__label {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes site-intro {
    from {
      opacity: 0;
      translate: 0 12px;
    }
    to {
      opacity: 1;
      translate: 0 0;
    }
  }
  @keyframes hero-line-enter {
    from {
      opacity: 0;
      transform: translateX(-32px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes hero-description-enter {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .hero-title-line {
    animation: hero-line-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-title-line:first-child {
    animation-delay: 0.1s;
  }
  .hero-title-line:nth-child(2) {
    animation-delay: 0.42s;
  }
  .hero-description {
    animation: hero-description-enter 0.65s ease-out 0.96s both;
  }
  .c-page-heading__label,
  .c-page-heading h1,
  .c-page-heading > p:last-child {
    animation: site-intro 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .c-page-heading__label {
    animation-delay: 0.08s;
  }
  .c-page-heading h1 {
    animation-delay: 0.24s;
  }
  .c-page-heading > p:last-child {
    animation-delay: 0.4s;
  }
  .motion-reveal {
    opacity: 0;
    translate: 0 16px;
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), translate 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0ms);
  }
  .motion-reveal.is-visible,
  .motion-reveal:focus-within {
    opacity: 1;
    translate: 0 0;
  }
  .service-card {
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  .works-image,
  .gallery-image {
    transition: transform 0.35s ease;
  }
  .service-card.motion-reveal,
  .works-page-card.motion-reveal {
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms), translate 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay, 0ms), transform 0.28s ease, box-shadow 0.28s ease;
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .service-card:hover {
    z-index: 1;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 16, 43, 0.18);
  }
  .works-card:hover .works-image,
  .works-card:focus-visible .works-image,
  .gallery-item:hover .gallery-image {
    transform: scale(1.035);
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-reveal {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }
}
