.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: #0d1035;
}
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 480px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(54, 168, 252, 0.45)), color-stop(55%, rgba(54, 168, 252, 0.22)), to(rgba(54, 168, 252, 0.04)));
  background: linear-gradient(to right, rgba(54, 168, 252, 0.45) 0%, rgba(54, 168, 252, 0.22) 55%, rgba(54, 168, 252, 0.04) 100%);
}
.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
  }
}

.hero-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: rgba(255, 221, 35, 0.18);
  border: 1px solid rgba(255, 221, 35, 0.5);
  color: #FFDD23;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.hero-tag strong {
  color: #FFDD23;
}

.hero-heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(28px, 8vw, 44px);
  }
}
.hero-heading .hero-heading__accent {
  color: #FF6B9A;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  max-width: 560px;
  text-shadow: 0 1px 5px rgba(13, 16, 53, 0.6);
}

.hero-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 640px) {
  .hero-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 44px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.hero-dot.active {
  background: #FFDD23;
}

.strengths {
  background: -webkit-gradient(linear, left top, left bottom, from(#fffaef), to(#f7f8fc));
  background: linear-gradient(180deg, #fffaef 0%, #f7f8fc 100%);
  padding: 100px 0 110px;
  position: relative;
}
@media (max-width: 640px) {
  .strengths {
    padding: 72px 0 80px;
  }
}
.strengths::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #FFDD23;
}
.strengths .section-sub {
  color: #EB6403;
}
.strengths .section-title {
  color: #0d1035;
  word-break: keep-all;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.strengths .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  background: #FFDD23;
}
@media (max-width: 1024px) {
  .strengths .section-title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.strengths__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .strengths__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strengths__inner .strengths__lead .section-header {
    text-align: center;
  }
}

.strengths__lead-text {
  font-size: 16px;
  color: #555555;
  line-height: 1.95;
  margin-top: 20px;
}

.strengths-stat {
  margin-top: 24px;
  text-align: center;
}

.badge-jisseki {
  width: 100%;
  max-width: 370px;
  height: auto;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@-webkit-keyframes badgeReveal {
  from {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes badgeReveal {
  from {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.strengths-stat.in-view .badge-jisseki {
  -webkit-animation: badgeReveal 0.8s ease forwards;
          animation: badgeReveal 0.8s ease forwards;
}

.badge-catch {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #132381;
  letter-spacing: 0.14em;
  margin-top: 14px;
  opacity: 0.85;
}

.stat-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(64px, 7vw, 88px);
  font-weight: 700;
  color: #132381;
  line-height: 1;
}

.stat-unit {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: #132381;
}

.stat-sub {
  display: inline-block;
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #EB6403;
  background: rgba(255, 221, 35, 0.35);
  padding: 8px 28px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.strengths-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.strength-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 56px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  background: #ffffff;
  padding: 26px 32px;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 14px rgba(19, 35, 129, 0.06);
          box-shadow: 0 2px 14px rgba(19, 35, 129, 0.06);
  -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;
}
@media (max-width: 640px) {
  .strength-card {
    grid-template-columns: 56px 1fr;
    padding: 22px;
    gap: 16px;
  }
}
.strength-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #FFDD23;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.strength-card:hover {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-box-shadow: 0 8px 32px rgba(19, 35, 129, 0.12);
          box-shadow: 0 8px 32px rgba(19, 35, 129, 0.12);
}
.strength-card:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.strength-card__num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #FFDD23;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .strength-card__num {
    font-size: 34px;
  }
}
.strength-card__icon {
  font-size: 34px;
  color: #132381;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .strength-card__icon {
    display: none;
  }
}
.strength-card__body {
  min-width: 0;
}
.strength-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #0d1035;
  margin-bottom: 6px;
  line-height: 1.45;
}
@media (max-width: 640px) {
  .strength-card__title {
    font-size: 16px;
  }
}
.strength-card__desc {
  font-size: 16px;
  color: #555555;
  line-height: 1.85;
}

.services {
  padding: 88px 0;
}

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

.service-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f7f8fc;
  overflow: hidden;
  -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;
}
.service-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);
}
.service-card:hover .service-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-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;
}
.service-card__body {
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-card__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0d1035;
  margin-bottom: 10px;
}
.service-card__body p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service-card__body .link-arrow {
  margin-top: 16px;
}

.works-section {
  padding: 88px 0;
  background: #f7f8fc;
}

.voice-section {
  padding: 88px 0;
  position: relative;
  background-color: #f7f8fc;
  background-image: url("../img/voice-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.voice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 248, 252, 0.55);
  pointer-events: none;
}
.voice-section .container {
  position: relative;
  z-index: 1;
}

.checklist-section {
  padding: 88px 0;
  position: relative;
  background-color: #f7f8fc;
  background-image: url("../img/service-roof.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .checklist-section {
    background-attachment: scroll;
  }
}
.checklist-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 248, 252, 0.91);
  pointer-events: none;
}
.checklist-section .container {
  position: relative;
  z-index: 1;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

.checklist-group {
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e5e7eb;
}
.checklist-group__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #132381;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #132381;
}
.checklist-group__title i {
  font-size: 22px;
}

.checklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.checklist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 16px;
}
.checklist li i {
  font-size: 18px;
  color: #EB6403;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.checklist-cta {
  text-align: center;
  margin-top: 48px;
}

.flow-section {
  padding: 88px 0;
  position: relative;
  background-image: url("../img/hero-2-craftsman.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .flow-section {
    background-attachment: scroll;
  }
}
.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.91);
  pointer-events: none;
}
.flow-section .container {
  position: relative;
  z-index: 1;
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  counter-reset: flow;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .flow-list {
    padding: 0 24px;
  }
}

.flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}
@media (max-width: 768px) {
  .flow-item {
    gap: 20px;
  }
}
.flow-item:last-child {
  border-bottom: none;
}
.flow-item__num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFDD23;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 56px;
  background: #132381;
  padding: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .flow-item__num {
    width: 48px;
    font-size: 28px;
  }
}
.flow-item__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d1035;
  margin-bottom: 8px;
}
.flow-item__body p {
  font-size: 16px;
  color: #555555;
  line-height: 1.85;
}/*# sourceMappingURL=front.css.map */