@charset "UTF-8";
.c-button {
  width: min(100%, 17.375rem);
  min-height: 3.5rem;
  padding: 1rem 1.3125rem 1rem 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.3125rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #004DA7;
  border: 1px solid #004DA7;
  color: #fff;
  text-decoration: none;
  transition: color 0.35s ease;
}

.c-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: 0;
}

.c-button > * {
  position: relative;
  z-index: 1;
}

.c-button:hover,
.c-button:focus-visible {
  color: #004DA7;
}

.c-button:hover::before,
.c-button:focus-visible::before {
  transform: scaleX(1);
}

.c-button__text {
  font-size: 1rem;
  font-weight: 700;
}

.c-button__arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -1px;
  flex: 0 0 auto;
}

@media (max-width: 599px) {
  .c-button {
    width: 100%;
    max-width: 17.375rem;
  }
}
.post-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 0.75rem;
  background-color: #f7f7f7;
  color: #333;
  text-decoration: none;
}
.post-card__thumb {
  width: 17.5rem;
  min-width: 17.5rem;
  height: 8.75rem;
  flex: 0 0 17.5rem;
  background-color: #fff;
  display: block;
  overflow: hidden;
}
.post-card__thumbnail-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.post-card__body {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.post-card__head {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.post-card__date {
  margin: 0 0 0.375rem;
  color: #333;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.3333333333;
}
.post-card__tags {
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.post-card__tag {
  margin: 0;
  padding: 0.125rem 0.375rem;
  border-radius: 0.125rem;
  background-color: #004DA7;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.post-card__title {
  margin: 0;
  color: #333;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: normal;
}
.post-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background-color 0.3s ease;
}
.post-card__icon-arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid #333;
  border-right: 1.5px solid #333;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
.post-card:hover .post-card__icon, .post-card:focus-visible .post-card__icon {
  background-color: #333;
}
.post-card:hover .post-card__icon-arrow, .post-card:focus-visible .post-card__icon-arrow {
  border-color: #fff;
}

@media (max-width: 768px) {
  .post-card {
    gap: 1rem;
  }
  .post-card__thumb {
    width: 14rem;
    min-width: 14rem;
    height: 7rem;
    flex: 0 0 14rem;
  }
  .post-card__body {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .post-card__icon {
    align-self: flex-end;
  }
}
@media (max-width: 599px) {
  .post-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    padding: 0.75rem;
  }
  .post-card__thumb {
    width: 100%;
    min-width: 0;
    height: auto;
    flex: 0 0 auto;
    aspect-ratio: 2/1;
  }
  .post-card__date, .post-card__tag, .post-card__title {
    font-size: 1.2rem;
  }
}
.works-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(17, 91, 185, 0.35);
  color: #333;
  text-decoration: none;
}
.works-card__thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.works-card__thumbnail-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.works-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.works-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.works-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}
.works-card__tag {
  margin: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #E9F0FF;
  color: #333;
  font-size: 0.75rem;
  font-weight: 700;
}
.works-card__title {
  margin: 0;
  color: #004DA7;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.works-card__more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.works-card__more-text {
  color: #333;
  font-size: 0.875rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.works-card__more-arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid #333;
  border-right: 1.5px solid #333;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
.works-card:hover .works-card__thumbnail-image, .works-card:focus-visible .works-card__thumbnail-image {
  transform: scale(1.04);
}

@media (max-width: 599px) {
  .works-card {
    padding: 0.875rem;
    gap: 0.875rem;
  }
  .works-card__body {
    gap: 1rem;
  }
  .works-card__head {
    gap: 0.75rem;
  }
  .works-card__title {
    font-size: 1.125rem;
  }
  .works-card__tag, .works-card__more-text {
    font-size: 1.2rem;
  }
}
.c-section {
  width: 100%;
  background-color: var(--color-white);
}

.c-section__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 5rem 1.125rem 5rem;
}

@media (min-width: 600px) and (max-width: 959px) {
  .c-section__inner {
    padding: 5rem 8rem 5rem;
  }
}
.js-reveal-item {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
}

.js-reveal-item.is-revealed {
  animation: section-fade-up 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}

@keyframes section-fade-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 1.5rem, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal-item,
  .js-reveal-item.is-revealed {
    animation: none;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.top-fv {
  position: relative;
  width: 100%;
  max-width: 100vw;
  background-color: #fff;
  overflow-x: clip;
}

.top-fv__visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(37rem, 56.54vw, 44rem);
  padding: clamp(3.25rem, 6vw, 4.75rem) 0 clamp(5.25rem, 8vw, 7.5rem);
  background: url("../images/top/fv-bg.jpg") center center/cover no-repeat;
}

.top-fv__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(-5.875rem, -6.9vw, -9.1875rem);
  width: clamp(62rem, 93.65vw, 88.5rem);
  height: 100%;
  background: url("../images/top/kv-vector.png") left top/auto 100% no-repeat;
  pointer-events: none;
  z-index: 1;
}

.top-fv__inner {
  position: relative;
  z-index: 3;
  width: min(100%, 94.5rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 6.8vw, 6.4375rem);
}

.top-fv__content {
  width: min(100%, 42.8125rem);
}

.top-fv__catch {
  margin: 0;
  color: #000;
  font-size: clamp(1.25rem, 2.15vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
}

.top-fv__title {
  margin: 0.625rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  font-size: clamp(2.5rem, 4.4vw, 4.125rem);
  font-weight: 700;
  line-height: 1.24;
}

.top-fv__title span {
  display: block;
  width: fit-content;
  background: linear-gradient(180deg, #29488C 0%, #5BB2F7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.top-fv__lead {
  margin: clamp(1.5rem, 2.6vw, 2.375rem) 0 0;
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.85;
}

.top-fv__metrics {
  margin-top: clamp(1.5rem, 2.6vw, 2.375rem);
  width: min(100%, 25.4625rem);
}

.top-fv__metrics img {
  display: block;
  width: 100%;
  height: auto;
}

.top-fv__catch,
.top-fv__title,
.top-fv__people {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  animation: top-fv-fade-up 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.top-fv__catch {
  animation-delay: 0.12s;
}

.top-fv__title {
  animation-delay: 0.34s;
}

.top-fv__people {
  animation-delay: 1s;
}

.top-fv__people {
  position: absolute;
  right: clamp(-13.9375rem, -13.95vw, -8.9375rem);
  top: clamp(-18rem, -17.99vw, -17rem);
  z-index: 2;
  width: clamp(33rem, 53.64vw, 50.6875rem);
  aspect-ratio: 811/321;
  pointer-events: none;
}

.top-fv__people img {
  display: block;
  width: 100%;
  height: auto;
}

.top-fv__brand {
  position: absolute;
  left: 0;
  top: clamp(-5.75rem, -6vw, -5rem);
  z-index: 3;
  margin: 0;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  font-size: clamp(5rem, 9.79vw, 9.25rem);
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(90deg, #29488c 25%, #5bb2f7 50%, #29488c 75%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  animation: top-fv-fade-up 1.35s cubic-bezier(0.16, 1, 0.3, 1) 1.22s forwards, top-fv-brand-gradation 5s linear 2.57s infinite;
}

@keyframes top-fv-fade-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 1.5rem, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes top-fv-brand-gradation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .top-fv__catch,
  .top-fv__title,
  .top-fv__lead,
  .top-fv__metrics,
  .top-fv__people,
  .top-fv__brand {
    animation: none;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.top-fv__spill {
  position: relative;
  z-index: 4;
  height: clamp(5.875rem, 8.5vw, 8rem);
  background-color: #fff;
}

@media (min-width: 600px) and (max-width: 959px) {
  .top-fv__visual {
    min-height: 46rem;
    padding: 6.5rem 0 7.5rem;
  }
  .top-fv__visual::before {
    left: -20.5rem;
    width: 80rem;
  }
  .top-fv__catch {
    font-size: 1.75rem;
  }
  .top-fv__title {
    font-size: 3.5rem;
  }
  .top-fv__lead {
    font-size: 1rem;
  }
  .top-fv__metrics {
    width: 22rem;
  }
  .top-fv__spill {
    height: clamp(5.875rem, 8.5vw, 8rem);
  }
  .top-fv__people {
    width: 30rem;
    right: -7rem;
    top: -10rem;
  }
  .top-fv__brand {
    font-size: clamp(6rem, 12vw, 7.5rem);
    top: -4.5rem;
  }
}
@media (max-width: 599px) {
  .top-fv {
    display: flex;
    flex-direction: column;
  }
  .top-fv__visual {
    order: 2;
    min-height: auto;
    padding: 3rem 0 1rem;
    background: #fff;
  }
  .top-fv__visual::before {
    display: none;
  }
  .top-fv__inner {
    padding-inline: 1.25rem;
  }
  .top-fv__content {
    width: 100%;
    max-width: none;
  }
  .top-fv__catch {
    font-size: clamp(1.25rem, 5.2vw, 2rem);
  }
  .top-fv__title {
    margin-top: 0.25rem;
    gap: 0.25rem;
    font-size: clamp(2rem, 9.8vw, 2.5rem);
    line-height: 1.25;
  }
  .top-fv__lead {
    margin-top: 1.625rem;
    font-size: 1.2rem;
    line-height: 1.65;
  }
  .top-fv__metrics {
    margin-top: 1.625rem;
    width: min(100%, 35.6875rem);
  }
  .top-fv__spill {
    order: 1;
    height: 15rem;
    background: #fff url("../images/top/fv-bg.jpg") left 86% top 10%/220% auto no-repeat;
  }
  .top-fv__people {
    width: 24.1875rem;
    right: -7.625rem;
    top: 6.75rem;
  }
  .top-fv__brand {
    top: 13.75rem;
    bottom: auto;
    font-size: clamp(3.25rem, 11vw, 5.25rem);
    letter-spacing: 0.012em;
  }
}
.about {
  overflow: hidden;
  background: linear-gradient(180deg, #29488C 0%, #5BB2F7 100%);
}

.about > .c-section__inner {
  padding: 5rem 1.125rem;
}

.about__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about__body {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__eyebrow {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.about__title {
  margin: 0;
  font-size: clamp(2rem, 9vw, 2.25rem);
  font-weight: 700;
  line-height: 1.35;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.about__button {
  width: min(100%, 17.375rem);
  min-height: 3.5rem;
  padding: 1rem 1.25rem 1rem 3.9375rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #fff;
  border: 1px solid #fff;
  color: #004DA7;
  text-decoration: none;
  transition: color 0.35s ease;
}

.about__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #004DA7;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: 0;
}

.about__button > * {
  position: relative;
  z-index: 1;
}

.about__button:hover,
.about__button:focus-visible {
  color: #fff;
}

.about__button:hover::before,
.about__button:focus-visible::before {
  transform: scaleX(1);
}

.about__button-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.about__button-arrow {
  width: 0.5625rem;
  height: 0.5625rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -1px;
  flex: 0 0 auto;
}

.about__media {
  width: 100%;
}

.about__columns {
  display: none;
}

.about__mobile-marquee {
  width: calc(100% + 2.25rem);
  margin-inline: -1.125rem;
  overflow: hidden;
}

.about__mobile-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  animation: about-marquee-right 28s linear infinite;
}

.about__mobile-item {
  margin: 0;
  width: 18.5rem;
  flex: 0 0 auto;
}

.about__mobile-item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 960px) {
  .about > .c-section__inner {
    padding: 0 2.5rem;
  }
  .about__layout {
    display: grid;
    grid-template-columns: minmax(0, 34.75rem) minmax(0, 32.5625rem);
    align-items: center;
    justify-content: space-between;
    gap: clamp(2.5rem, 9vw, 8.125rem);
  }
  .about__body {
    gap: 4.6875rem;
  }
  .about__header {
    gap: 0.75rem;
  }
  .about__eyebrow {
    font-size: 1.125rem;
  }
  .about__title {
    font-size: 2.25rem;
  }
  .about__text p {
    font-size: 1.125rem;
    line-height: 1.7;
  }
  .about__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8125rem;
  }
  .about__column {
    height: 58rem;
    overflow: hidden;
  }
  .about__track {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .about__column--left .about__track {
    animation: about-marquee-down 30s linear infinite;
  }
  .about__column--right .about__track {
    animation: about-marquee-up 30s linear infinite;
  }
  .about__item {
    width: 100%;
    margin: 0;
  }
  .about__item img {
    display: block;
    width: 100%;
    height: auto;
  }
  .about__mobile-marquee {
    display: none;
  }
}
@media (max-width: 599px) {
  .about > .c-section__inner {
    padding: 4rem 1.125rem;
  }
  .about__layout {
    gap: 4rem;
  }
  .about__body {
    gap: 2rem;
  }
  .about__eyebrow {
    font-size: 1.2rem;
  }
  .about__title {
    font-size: 1.75rem;
  }
  .about__text p {
    font-size: 1.2rem;
  }
  .about__button {
    min-height: 3.25rem;
    padding: 0.875rem 1.25rem 0.875rem 3.25rem;
  }
  .about__button-text {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about__track,
  .about__mobile-track {
    animation: none;
  }
}
@keyframes about-marquee-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes about-marquee-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes about-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.c-section[aria-label=選ばれる理由セクション] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.c-section[aria-label=選ばれる理由セクション] > .c-section__inner {
  position: relative;
  z-index: 1;
}

.c-section[aria-label=選ばれる理由セクション]::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 50%;
  width: 64rem;
  aspect-ratio: 1351/1054.78;
  transform: translateX(-40%);
  background: url("../images/top/bg-reason.svg") center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

.reason__content {
  position: relative;
  margin-top: 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.reason__media {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  order: 2;
  gap: 2rem;
}

.reason__image-wrap {
  position: relative;
  width: 100%;
  height: 13rem;
  overflow: hidden;
}

.reason__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.reason__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  order: 1;
  gap: 1rem;
}

.reason-item {
  border-bottom: 1px solid #c6c6c6;
  padding: 1rem 0;
}
.reason-item:first-child {
  padding-top: 0;
}
.reason-item__title {
  margin: 0;
  color: #004DA7;
  font-size: clamp(1.25rem, 1.04rem + 0.56vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
}
.reason-item__text {
  margin: 1.1875rem 0 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}
.reason-item__text strong {
  font-weight: 700;
}

@media (min-width: 960px) {
  .c-section[aria-label=選ばれる理由セクション]::before {
    top: -7.5rem;
    width: 78rem;
    transform: translateX(-28%);
  }
  .reason__content {
    flex-direction: row;
    align-items: stretch;
    gap: 5.9375rem;
  }
  .reason__media {
    width: 25rem;
    max-width: 25rem;
    align-items: flex-start;
    align-self: stretch;
    order: 1;
    gap: 4rem;
    flex: 0 0 auto;
  }
  .reason__image-wrap {
    height: 17rem;
  }
  .reason__body {
    width: 44.0625rem;
    order: 2;
    flex: 1 1 auto;
  }
}
@media (min-width: 1200px) {
  .c-section[aria-label=選ばれる理由セクション]::before {
    top: -8.625rem;
    left: 26.5625rem;
    width: 84.4375rem;
    transform: none;
  }
}
@media (max-width: 599px) {
  .c-section[aria-label=選ばれる理由セクション]::before {
    top: 3rem;
    left: 68%;
    width: 34rem;
  }
  .reason__content {
    margin-top: 2.5rem;
    gap: 2rem;
  }
  .reason__media {
    gap: 1.5rem;
  }
  .reason-item {
    padding: 1rem 0;
  }
  .reason-item:first-child {
    padding-top: 0;
  }
  .reason-item__title {
    font-size: 1.375rem;
  }
  .reason-item__text {
    margin-top: 0.875rem;
    font-size: 1.2rem;
  }
}
.service {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service > .c-section__inner {
  position: relative;
  z-index: 1;
}

.service::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 0;
  width: 64rem;
  aspect-ratio: 1351/1054.78;
  background: url("../images/top/bg-service.svg") left top/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

.service__content {
  position: relative;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service__cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card__image-wrap {
  width: 100%;
  height: 13rem;
  overflow: hidden;
}

.service-card__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card__title {
  margin: 0;
  color: #333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-card__text {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.service__more {
  display: flex;
  justify-content: center;
}

@media (min-width: 960px) {
  .service__content {
    margin-top: 4rem;
    gap: 4.625rem;
  }
  .service__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
  .service-card {
    gap: 1.5rem;
  }
  .service-card__image-wrap {
    height: 15.625rem;
  }
  .service-card__body {
    gap: 1.5rem;
  }
  .service-card__title {
    font-size: 1.25rem;
  }
  .service-card__text {
    font-size: 1rem;
  }
  .service::before {
    top: 5rem;
    width: 67.4375rem;
  }
}
@media (min-width: 1200px) {
  .service-card__title {
    font-size: 1.5rem;
  }
  .service::before {
    top: 5rem;
    width: 67.4375rem;
  }
}
@media (max-width: 599px) {
  .service__content {
    margin-top: 2rem;
    gap: 2.5rem;
  }
  .service__cards {
    gap: 3rem;
  }
  .service-card__image-wrap {
    height: 12rem;
  }
  .service-card__title {
    font-size: 1.375rem;
  }
  .service-card__text {
    font-size: 1.2rem;
  }
  .service::before {
    top: 3rem;
    width: 34rem;
  }
}
.works__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.works__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.works__list {
  width: 100%;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.works__more {
  display: flex;
  justify-content: center;
}
.works__empty {
  margin: 0;
  color: #333;
  font-size: 0.9375rem;
  text-align: center;
}

@media (min-width: 960px) {
  .works__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 599px) {
  .works__inner {
    gap: 2.5rem;
  }
  .works__content {
    gap: 2rem;
  }
  .works__list {
    gap: 1rem;
  }
  .works__empty {
    font-size: 1.2rem;
  }
}
.blog__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.blog__side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.blog__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.blog__more--side {
  display: none;
}
.blog__more--list {
  display: flex;
  justify-content: center;
}
.blog__empty {
  margin: 0;
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 960px) {
  .blog__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 5rem;
  }
  .blog__side {
    flex-direction: column;
    align-items: flex-start;
    width: 17.375rem;
    min-width: 17.375rem;
    gap: 4rem;
  }
  .blog__more--side {
    display: block;
    margin-top: auto;
    width: 100%;
  }
  .blog__more--list {
    display: none;
  }
  .blog__list {
    flex: 1 1 auto;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .blog__side {
    gap: 1.75rem;
  }
  .blog__list {
    gap: 1rem;
  }
  .blog__empty {
    font-size: 1.2rem;
  }
}
.faq {
  background: #f5f5f5;
}
.faq__header {
  padding-bottom: 2rem;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  width: 100%;
}
.faq-item.is-open {
  background: #fff;
}
.faq-item.is-open .faq-item__question {
  background: #fff;
}
.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}
.faq-item__question {
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background: #ededed;
  cursor: pointer;
  text-align: left;
}
.faq-item__question-text {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-item__q-label, .faq-item__a-label {
  color: #004DA7;
  font-weight: 700;
  line-height: 1;
}
.faq-item__q-label {
  font-size: 1.5rem;
}
.faq-item__q-title {
  margin: 0;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: normal;
}
.faq-item__toggle {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #333;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__answer[hidden] {
  display: none;
}
.faq-item__answer {
  padding: 0 1rem 1rem;
  background: #fff;
  overflow: hidden;
}
.faq-item__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-top: 1px solid #ccc;
  padding: 1rem 0 0.5rem;
}
.faq-item__a-label {
  font-size: 1.5rem;
  line-height: 1.3;
}
.faq-item__a-text {
  margin: 0;
  color: #333;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
}

@media (min-width: 960px) {
  .faq__header {
    padding-bottom: 4rem;
  }
  .faq__list {
    gap: 1rem;
  }
  .faq-item__question {
    padding: 1.5rem 2rem;
  }
  .faq-item__question-text {
    gap: 1.5rem;
  }
  .faq-item__q-label {
    font-size: 2rem;
    line-height: 2.625rem;
  }
  .faq-item__q-title {
    line-height: 2rem;
    white-space: nowrap;
  }
  .faq-item__toggle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .faq-item__toggle::before, .faq-item__toggle::after {
    width: 1rem;
  }
  .faq-item__answer {
    padding: 0 2rem 1rem;
  }
  .faq-item__answer-inner {
    gap: 1.5rem;
    padding-top: 1rem;
  }
  .faq-item__a-label {
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media (max-width: 599px) {
  .faq-item__q-title, .faq-item__a-text {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=front-page.css.map */
