:root {
  --accent: #ff8a00;
  --accent-dark: #d96f00;
  --ink: #161616;
  --muted: #5f6368;
  --brown: #3d281d;
  --line: #ebedf0;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

.btn-accent {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--accent-dark);
  --bs-btn-hover-border-color: var(--accent-dark);
  --bs-btn-active-bg: var(--accent-dark);
  --bs-btn-active-border-color: var(--accent-dark);
  align-items: center;
  border-radius: 9px;
  display: inline-flex;
  font-weight: 700;
  gap: .9rem;
  justify-content: center;
  min-height: 46px;
}

.btn-accent i {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  font-size: 1.45rem;
  height: 30px;
  justify-content: center;
  line-height: 1;
  width: 30px;
}

.site-header {
  padding-top: 18px;
  transition: background-color .2s ease, box-shadow .2s ease, padding .2s ease;
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(16, 16, 15, .9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  padding: 12px 0;
}

.site-header .navbar {
  padding: 0;
}

.site-logo {
  display: block;
  height: 58px;
  object-fit: contain;
  width: auto;
}

.site-header .nav-link {
  color: rgba(255, 255, 255, .94);
  font-size: .95rem;
  font-weight: 700;
  padding: .5rem 0;
  white-space: nowrap;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #fff;
}

.site-header .language-link {
  letter-spacing: .04em;
}

.hero-section {
  background-color: #14120f;
  min-height: 630px;
  overflow: hidden;
  padding: 130px 0 72px;
  position: relative;
}

.hero-section::before {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 4, .96) 0%, rgba(5, 5, 4, .88) 35%, rgba(5, 5, 4, .42) 67%, rgba(5, 5, 4, .28) 100%),
    url("../img/hero-cat.jpg");
  background-position: center, right 35%;
  background-repeat: no-repeat;
  background-size: cover, cover;
  content: "";
  inset: 0;
  position: absolute;
}

.hero-title {
  color: #fff;
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.45;
  margin-bottom: 1.45rem;
}

.hero-copy {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 2.2rem;
}

.btn-hero,
.btn-cta {
  min-width: 270px;
  padding: .75rem 1.3rem .75rem 1.65rem;
}

.btn-hero {
  justify-content: space-between;
}

.section-heading h2 {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 0;
}

.section-heading span {
  background: var(--accent);
  display: inline-block;
  height: 3px;
  margin-top: 12px;
  width: 34px;
}

.services-section {
  background: #fff;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(12, 18, 28, .08);
  overflow: hidden;
  position: relative;
}

.service-image {
  height: 150px;
  overflow: hidden;
}

.service-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-icon {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(12, 18, 28, .12);
  color: var(--accent);
  display: flex;
  font-size: 1.55rem;
  height: 50px;
  justify-content: center;
  left: 24px;
  position: absolute;
  top: 126px;
  width: 50px;
}

.service-body {
  display: flex;
  flex-direction: column;
  min-height: 204px;
  padding: 44px 24px 22px;
}

.service-body h3 {
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: .95rem;
}

.service-body p {
  color: #3f4651;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.service-body a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #2a2f36;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin-left: auto;
  margin-top: auto;
  width: 28px;
}

.service-body a i {
  font-size: 1.1rem;
  line-height: 1;
}

.strengths-section {
  background: #fff;
}

.strengths-grid {
  display: grid;
  grid-template-columns: 32% 37% 31%;
  min-height: 365px;
}

.strength-photo,
.strength-photo-stack {
  overflow: hidden;
}

.strength-photo img,
.strength-photo-stack img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.strength-panel {
  background: var(--brown);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 58px;
}

.strength-panel h2 {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 1.7rem;
}

.strength-item {
  align-items: flex-start;
  display: flex;
  gap: 18px;
}

.strength-item + .strength-item {
  margin-top: 1.25rem;
}

.strength-item i {
  align-items: center;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 40px;
  font-size: 1.45rem;
  height: 40px;
  justify-content: center;
  margin-top: .2rem;
  width: 40px;
}

.strength-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .2rem;
}

.strength-item p {
  color: rgba(255, 255, 255, .84);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

.strength-photo-stack {
  display: grid;
  grid-template-rows: 33% 37% 30%;
}

.cta-section {
  background-color: #3a2c22;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  background-image:
    linear-gradient(90deg, rgba(35, 28, 22, .94) 0%, rgba(35, 28, 22, .78) 42%, rgba(35, 28, 22, .18) 100%),
    url("../img/cta-cat.jpg");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, cover;
  content: "";
  inset: 0;
  position: absolute;
}

.cta-content {
  color: #fff;
  max-width: 670px;
  padding: 50px 0;
}

.cta-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: .8rem;
}

.cta-content p {
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.btn-cta {
  justify-content: space-between;
}

.site-footer {
  background: #202020;
  color: #fff;
  padding: 28px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 34px;
}

.footer-brand img {
  display: block;
  height: 48px;
  object-fit: contain;
  width: auto;
}

.footer-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: clamp(16px, 2.4vw, 34px);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: #202020;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.footer-social i {
  font-size: 1.05rem;
}

.contact-modal .modal-content {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.contact-modal .modal-header {
  align-items: flex-start;
  background: var(--brown);
  border: 0;
  color: #fff;
  padding: 26px 30px;
}

.contact-modal .btn-close {
  filter: invert(1) grayscale(1);
  opacity: .9;
}

.contact-modal .modal-body {
  padding: 30px;
}

.modal-kicker {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  margin: 0 0 8px;
}

.contact-modal .modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form .form-label {
  color: #303640;
  font-size: .92rem;
  font-weight: 800;
}

.contact-form .form-control,
.contact-form .form-select {
  border-color: #d8dde3;
  border-radius: 8px;
  min-height: 48px;
}

.contact-form textarea.form-control {
  min-height: 132px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(255, 138, 0, .16);
}

.contact-form-message {
  margin: 18px 0 0;
}

.contact-form-consent {
  color: #303640;
  font-size: .94rem;
  line-height: 1.6;
}

.contact-form-consent a {
  color: var(--accent);
  font-weight: 800;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.sub-page-main {
  padding-top: 82px;
}

.about-hero {
  background: var(--brown);
  color: #fff;
  overflow: hidden;
  padding: 78px 0 72px;
}

.page-kicker {
  color: var(--accent);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: .75rem;
}

.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.about-hero-copy {
  color: rgba(255, 255, 255, .9);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 2;
  margin: 0;
}

.about-hero-image,
.about-process-image {
  overflow: hidden;
}

.about-hero-image {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.about-process-image {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.about-hero-image img,
.about-process-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-message {
  background: #fff;
}

.lead-copy {
  border-left: 4px solid var(--accent);
  padding-left: 30px;
}

.lead-copy p {
  color: #333943;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 2.1;
  margin: 0;
}

.lead-copy p + p {
  margin-top: 1.4rem;
}

.about-values {
  background: #f7f7f5;
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(12, 18, 28, .06);
  padding: 32px 28px;
}

.value-card i {
  align-items: center;
  background: rgba(255, 138, 0, .1);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  font-size: 1.7rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 52px;
}

.value-card h3 {
  font-size: 1.16rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.value-card p {
  color: #4b525d;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.9;
  margin: 0;
}

.about-process {
  background: #fff;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  counter-increment: process;
  display: grid;
  gap: 5px;
  padding-left: 58px;
  position: relative;
}

.process-list li::before {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  content: counter(process);
  display: flex;
  font-size: 1rem;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 3px;
  width: 38px;
}

.process-list strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.process-list span {
  color: #4b525d;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.85;
}

.service-detail-hero {
  background: var(--brown);
  color: #fff;
  overflow: hidden;
  padding: 78px 0 72px;
}

.service-detail-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.65rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
  margin-bottom: 1.35rem;
}

.service-detail-copy {
  color: rgba(255, 255, 255, .9);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 2;
  margin: 0;
}

.service-detail-image {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
}

.service-detail-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-overview,
.service-flow {
  background: #fff;
}

.service-feature-list {
  display: grid;
  gap: 18px;
}

.service-feature-item {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  padding-bottom: 18px;
}

.service-feature-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-feature-item i {
  align-items: center;
  background: rgba(255, 138, 0, .1);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 1.35rem;
  height: 44px;
  justify-content: center;
  margin-top: 2px;
  width: 44px;
}

.service-feature-item h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.service-feature-item p {
  color: #4b525d;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.9;
  margin: 0;
}

.service-flow {
  background: #f7f7f5;
}

.flow-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(12, 18, 28, .06);
  height: 100%;
  padding: 28px;
}

.flow-card span {
  color: var(--accent);
  display: block;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}

.flow-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: .65rem;
}

.flow-card p {
  color: #4b525d;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.9;
  margin: 0;
}

.related-services {
  background: #fff;
}

.related-service-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-weight: 800;
  gap: 12px;
  justify-content: space-between;
  padding: 18px 20px;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.related-service-link:hover,
.related-service-link:focus {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.related-service-link i {
  color: var(--accent);
  font-size: 1.25rem;
}

.page-section {
  background: #fff;
  padding: 70px 0;
}

.page-section-soft {
  background: #f7f7f5;
}

.page-intro {
  color: #4b525d;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 2;
  margin: 0 auto;
  max-width: 760px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(12, 18, 28, .06);
  height: 100%;
  padding: 30px;
}

.service-summary-card {
  display: flex;
  flex-direction: column;
}

.content-card > i {
  align-items: center;
  background: rgba(255, 138, 0, .1);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  font-size: 1.65rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 52px;
}

.content-card h2,
.content-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: .75rem;
}

.content-card p {
  color: #4b525d;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.9;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.feature-list li {
  color: #3f4651;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.7;
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  color: var(--accent);
  content: "\F26A";
  font-family: "bootstrap-icons";
  left: 0;
  position: absolute;
  top: 0;
}

.card-more-link {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-size: .94rem;
  font-weight: 800;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
}

.card-more-link:hover,
.card-more-link:focus {
  color: var(--accent-dark);
}

.card-more-link i {
  font-size: 1.2rem;
  line-height: 1;
}

.training-course-card {
  display: flex;
  flex-direction: column;
}

.course-instructor-profile {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 1.1rem;
}

.course-instructor-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(12, 18, 28, .12);
  flex: 0 0 96px;
  height: 96px;
  object-fit: cover;
  width: 96px;
}

.course-instructor {
  align-items: center;
  color: var(--accent);
  display: flex;
  flex-wrap: wrap;
  font-size: .95rem;
  font-weight: 800;
  gap: 10px;
  margin: 0;
  min-width: 0;
  row-gap: 6px;
}

.course-instructor span {
  background: rgba(255, 138, 0, .1);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: .78rem;
  letter-spacing: .08em;
  line-height: 1;
  padding: 7px 10px;
}

.image-panel {
  border-radius: 8px;
  overflow: hidden;
}

.image-panel img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.company-table {
  border-top: 1px solid var(--line);
  margin: 0;
}

.company-table dt,
.company-table dd {
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 20px 0;
}

.company-table dt {
  color: #2e333a;
  font-weight: 800;
}

.company-table dd {
  color: #4b525d;
  font-weight: 600;
  line-height: 1.8;
}

.company-message {
  background: #fff;
}

.representative-photo {
  margin: 0 auto;
  max-width: 320px;
}

.representative-photo img {
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(12, 18, 28, .14);
  display: block;
  height: auto;
  width: 100%;
}

.representative-message {
  color: #3f4651;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 2.05;
}

.representative-message p {
  margin: 0;
}

.representative-message p + p {
  margin-top: 1.2rem;
}

.representative-signature {
  color: #2e333a;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.6;
  margin: 1.6rem 0 0;
  text-align: right;
}

.representative-signature span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  margin-right: .8rem;
}

.works-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(12, 18, 28, .06);
  overflow: hidden;
}

.works-card img {
  display: block;
  height: 210px;
  object-fit: cover;
  width: 100%;
}

.works-card-body {
  padding: 26px;
}

.works-card-body h2 {
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: .7rem;
}

.works-card-body p {
  color: #4b525d;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  background: rgba(255, 138, 0, .1);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 800;
  padding: 4px 10px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: 120px 140px 1fr auto;
  padding: 22px 0;
}

.news-item time {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.news-category {
  background: #f2f3f4;
  border-radius: 999px;
  color: #4b525d;
  font-size: .82rem;
  font-weight: 800;
  justify-self: start;
  padding: 4px 12px;
}

.news-item h2 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
  margin: 0;
}

.news-item i {
  color: var(--accent);
  font-size: 1.3rem;
}

.recruit-conditions {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(12, 18, 28, .06);
  overflow: hidden;
}

.condition-row {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.condition-row + .condition-row {
  border-top: 1px solid var(--line);
}

.condition-row-title,
.condition-row-detail {
  margin: 0;
  padding: 18px 24px;
}

.condition-row-title {
  background: #f7f7f5;
  font-weight: 800;
}

.condition-row-detail {
  color: #4b525d;
  font-weight: 600;
  line-height: 1.8;
}

.policy-content {
  color: #3f4651;
  font-weight: 600;
  line-height: 2;
  margin: 0 auto;
  max-width: 880px;
}

.policy-content > p {
  margin-bottom: 2rem;
}

.policy-content section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.policy-content h2 {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: .75rem;
}

.policy-content p {
  margin-bottom: 0;
}

.policy-content ul {
  margin: .8rem 0 1rem;
  padding-left: 1.25rem;
}

.policy-content li + li {
  margin-top: .2rem;
}

.policy-content address {
  background: #f7f7f5;
  border-radius: 8px;
  color: #3f4651;
  font-style: normal;
  line-height: 1.9;
  margin: 1rem 0 0;
  padding: 18px 20px;
}

@media (max-width: 1199.98px) {
  .site-header .nav-link {
    font-size: .82rem;
  }

  .strength-panel {
    padding: 36px 38px;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(16, 16, 15, .95);
    padding: 12px 0;
  }

  .site-logo {
    height: 48px;
  }

  .site-header .navbar-collapse {
    padding-top: 1rem;
  }

  .site-header .navbar-nav {
    align-items: stretch !important;
    gap: .2rem;
  }

  .site-header .btn-accent {
    margin: .7rem 0;
    width: 100%;
  }

  .hero-section {
    min-height: 570px;
    padding-top: 120px;
  }

  .hero-section::before {
    background-image:
      linear-gradient(90deg, rgba(5, 5, 4, .96) 0%, rgba(5, 5, 4, .86) 58%, rgba(5, 5, 4, .48) 100%),
      url("../img/hero-cat.jpg");
    background-position: center, 68% 35%;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .strength-photo-large {
    height: 320px;
  }

  .strength-photo-stack {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    height: 190px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .news-item {
    grid-template-columns: 110px 120px 1fr auto;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 15px;
  }

  .course-instructor-profile {
    gap: 14px;
  }

  .course-instructor-photo {
    flex-basis: 88px;
    height: 88px;
    width: 88px;
  }

  .hero-section {
    min-height: 610px;
    padding-bottom: 54px;
  }

  .hero-section::before {
    background-image:
      linear-gradient(180deg, rgba(5, 5, 4, .98) 0%, rgba(5, 5, 4, .82) 48%, rgba(5, 5, 4, .5) 100%),
      url("../img/hero-cat.jpg");
    background-position: center, 64% 35%;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn-hero,
  .btn-cta {
    min-width: min(100%, 290px);
  }

  .service-body {
    min-height: auto;
  }

  .strength-panel {
    padding: 34px 24px;
  }

  .strength-panel h2 {
    font-size: 1.55rem;
  }

  .strength-item {
    gap: 14px;
  }

  .strength-item i {
    flex-basis: 36px;
    font-size: 1.2rem;
    height: 36px;
    width: 36px;
  }

  .strength-photo-stack {
    grid-template-columns: 1fr;
    height: auto;
  }

  .strength-photo-stack img {
    height: 150px;
  }

  .cta-section {
    min-height: 360px;
  }

  .cta-section::before {
    background-image:
      linear-gradient(180deg, rgba(35, 28, 22, .96) 0%, rgba(35, 28, 22, .84) 55%, rgba(35, 28, 22, .44) 100%),
      url("../img/cta-cat.jpg");
    background-position: center, 72% center;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .page-section {
    padding: 52px 0;
  }

  .company-table dt,
  .company-table dd {
    padding: 12px 0;
  }

  .company-table dt {
    border-bottom: 0;
    padding-bottom: 2px;
  }

  .company-table dd {
    padding-top: 0;
  }

  .news-item {
    align-items: flex-start;
    gap: 8px;
    grid-template-columns: 1fr auto;
  }

  .news-item time,
  .news-category,
  .news-item h2 {
    grid-column: 1 / -1;
  }

  .news-item i {
    display: none;
  }

  .condition-row {
    grid-template-columns: 1fr;
  }

  .condition-row-title,
  .condition-row-detail {
    padding: 14px 18px;
  }

  .condition-row-detail {
    padding-top: 0;
  }

  .contact-modal .modal-header,
  .contact-modal .modal-body {
    padding: 24px 20px;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .btn {
    width: 100%;
  }
}
