@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  appearance: none;
}

button {
  cursor: pointer;
}

time {
  display: inline-block;
}

small {
  font-size: inherit;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #f2f3f5;
  background-color: #0c0f15;
}
body.is-fixed {
  overflow: hidden;
}

.js-fade {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-view {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background-color 0.3s ease;
}
.header.is-scroll {
  background-color: rgba(12, 15, 21, 0.9);
  backdrop-filter: blur(0.5rem);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 64em) {
  .header__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .header__inner {
    height: 3.75rem;
  }
}

.header__logo {
  position: relative;
  z-index: 102;
  line-height: 1.3;
}
.header__logo a {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__logo a:hover {
    opacity: 0.7;
  }
}

.header__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background-color: #d3122e;
  border-radius: 0.125rem;
}

.header__logo-en {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.header__logo-ja {
  display: block;
  font-size: 0.6875rem;
  color: #9aa1ad;
}

.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 64em) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    background-color: rgba(12, 15, 21, 0.98);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__nav.is-open {
    visibility: visible;
    opacity: 1;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 64em) {
  .header__nav-list {
    flex-direction: column;
  }
}

.header__nav-item {
  margin-left: 2rem;
}
@media screen and (max-width: 64em) {
  .header__nav-item {
    margin-top: 1.5rem;
    margin-left: 0;
  }
}
.header__nav-item a {
  position: relative;
  display: inline-block;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.header__nav-item a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #d3122e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .header__nav-item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (max-width: 64em) {
  .header__nav-item a {
    font-size: 1.125rem;
  }
}

.header__contact {
  margin-left: 2.5rem;
}
@media screen and (max-width: 64em) {
  .header__contact {
    margin-top: 2.5rem;
    margin-left: 0;
  }
}

.header__cta {
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  background-color: #d3122e;
  border-radius: 0.125rem;
  transition: background-color 0.3s ease;
}
@media (hover: hover) {
  .header__cta:hover {
    background-color: #a80e24;
  }
}

.header__cta-arrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
}

.header__menu {
  position: relative;
  z-index: 102;
  display: none;
}
@media screen and (max-width: 64em) {
  .header__menu {
    display: block;
    width: 3rem;
    height: 3rem;
  }
}

.header__menu-line {
  position: absolute;
  left: 50%;
  width: 1.5rem;
  height: 2px;
  background-color: #f2f3f5;
  border-radius: 1px;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
}
.header__menu-line:nth-of-type(1) {
  top: calc(50% - 0.5rem);
}
.header__menu-line:nth-of-type(2) {
  top: 50%;
}
.header__menu-line:nth-of-type(3) {
  top: calc(50% + 0.5rem);
}
.header__menu.is-open .header__menu-line:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__menu.is-open .header__menu-line:nth-of-type(2) {
  opacity: 0;
}
.header__menu.is-open .header__menu-line:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.footer {
  padding-top: 5rem;
  background-color: #12161f;
}
@media screen and (max-width: 47.9375em) {
  .footer {
    padding-top: 3rem;
  }
}

.footer__top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 47.9375em) {
  .footer__top {
    display: block;
  }
}

.footer__logo {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  line-height: 1.3;
}

.footer__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #d3122e;
  border-radius: 0.125rem;
}

.footer__logo-en {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer__logo-ja {
  display: block;
  font-size: 0.75rem;
  color: #9aa1ad;
}

.footer__nav {
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 64em) {
  .footer__nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 47.9375em) {
  .footer__nav-group {
    margin-top: 1.5rem;
  }
}

.footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
}

.footer__nav-list {
  margin-top: 0.75rem;
}
.footer__nav-list li {
  margin-top: 0.5rem;
}
.footer__nav-list a {
  font-size: 0.8125rem;
  color: #9aa1ad;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .footer__nav-list a:hover {
    color: #f2f3f5;
  }
}

.footer__copyright {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  margin-top: 3rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  color: #9aa1ad;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .footer__copyright {
    margin-top: 2rem;
  }
}

.inner {
  width: 100%;
  max-width: calc(68.75rem + 1.25rem * 2);
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13.75rem;
  padding: 0.875rem 2.5rem 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 62.4375rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.c-button::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
@media (hover: hover) {
  .c-button:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #f2f3f5;
  }
  .c-button:hover::after {
    right: 1rem;
  }
}
.c-button--accent {
  background-color: #d3122e;
  border-color: #d3122e;
}
@media (hover: hover) {
  .c-button--accent:hover {
    background-color: #a80e24;
    border-color: #a80e24;
  }
}
.c-button--large {
  min-width: 17.5rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  font-size: 1rem;
}

.c-text-link {
  display: inline-flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.3s ease;
}
.c-text-link::after {
  font-family: "Outfit", sans-serif;
  content: "→";
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .c-text-link:hover {
    border-color: #f2f3f5;
  }
  .c-text-link:hover::after {
    transform: translateX(0.375rem);
  }
}

.c-section-head__en {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #d3122e;
  text-transform: uppercase;
}
.c-section-head__title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 47.9375em) {
  .c-section-head__title {
    font-size: 1.625rem;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 47.9375em) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 47.9375em) {
  .u-sp-only {
    display: block;
  }
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c0f15;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading.is-done {
  visibility: hidden;
  opacity: 0;
}

.loading__logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: loading-logo 1s ease 0.2s forwards;
}
@media screen and (max-width: 47.9375em) {
  .loading__logo {
    font-size: 1rem;
  }
}
.loading__logo::after {
  display: block;
  height: 2px;
  margin-top: 0.75rem;
  content: "";
  background-color: #d3122e;
  transform: scaleX(0);
  transform-origin: left;
  animation: loading-line 0.7s ease 0.7s forwards;
}

@keyframes loading-logo {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loading-line {
  to {
    transform: scaleX(1);
  }
}
.js-reveal .char {
  display: inline-block;
  opacity: 0;
  filter: blur(0.375rem);
  transform: translateY(0.4em);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  transition-delay: calc(var(--char-i, 0) * 0.035s);
}
.js-reveal.is-view .char {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--stagger-i, 0) * 0.12s);
}
.js-stagger.is-view > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fade,
  .js-stagger > *,
  .js-reveal .char {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  .loading {
    display: none;
  }
}
.c-page-header {
  padding-top: calc(5rem + 5rem);
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #12161f 0%, #0c0f15 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .c-page-header {
    padding-top: calc(3.75rem + 3rem);
    padding-bottom: 2rem;
  }
}
.c-page-header__en {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #d3122e;
  text-transform: uppercase;
}
.c-page-header__title {
  margin-top: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 47.9375em) {
  .c-page-header__title {
    font-size: 1.75rem;
  }
}

.c-breadcrumb {
  padding-top: 1.25rem;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.375rem;
}
.c-breadcrumb__item {
  font-size: 0.75rem;
  color: #9aa1ad;
}
.c-breadcrumb__item:not(:last-child)::after {
  margin-left: 0.375rem;
  content: "/";
}
.c-breadcrumb__item a {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .c-breadcrumb__item a:hover {
    color: #f2f3f5;
  }
}

.c-table {
  width: 100%;
  margin-top: 2.5rem;
  border-collapse: collapse;
}
@media screen and (max-width: 47.9375em) {
  .c-table {
    margin-top: 1.75rem;
  }
}
.c-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.c-table tr:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.c-table th {
  width: 25%;
  padding: 1.375rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 47.9375em) {
  .c-table th {
    display: block;
    width: 100%;
    padding: 1rem 0 0;
  }
}
.c-table td {
  padding: 1.375rem 1rem;
  font-size: 0.9375rem;
}
@media screen and (max-width: 47.9375em) {
  .c-table td {
    display: block;
    padding: 0.5rem 0 1rem;
  }
}

.c-flow {
  margin-top: 2.5rem;
  counter-reset: flow;
}
@media screen and (max-width: 47.9375em) {
  .c-flow {
    margin-top: 1.75rem;
  }
}

.c-flow__item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 4.25rem;
  counter-increment: flow;
}
.c-flow__item:last-child {
  padding-bottom: 0;
}
.c-flow__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #d3122e;
  content: counter(flow, decimal-leading-zero);
  border: 1px solid rgba(211, 18, 46, 0.5);
  border-radius: 50%;
}
.c-flow__item:not(:last-child)::after {
  position: absolute;
  top: 3rem;
  bottom: 0.25rem;
  left: 1.375rem;
  width: 1px;
  content: "";
  background-color: rgba(255, 255, 255, 0.12);
}

.c-flow__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 0.5rem;
}

.c-flow__text {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: #9aa1ad;
}

.c-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .c-feature {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.c-feature--col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 64em) {
  .c-feature--col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 47.9375em) {
  .c-feature--col4 {
    grid-template-columns: 1fr;
  }
}
.c-feature--col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 47.9375em) {
  .c-feature--col2 {
    grid-template-columns: 1fr;
  }
}

.c-feature__item {
  padding: 2rem 1.75rem;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}

.c-feature__num {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: #d3122e;
}

.c-feature__title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-feature__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #9aa1ad;
}

.c-banner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  margin-top: 3rem;
  background: linear-gradient(135deg, #1a2029 0%, #12161f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .c-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem;
    margin-top: 2rem;
  }
}
.c-banner--accent {
  border-left: 4px solid #d3122e;
}
.c-banner .c-button {
  flex-shrink: 0;
}

.c-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-banner__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #9aa1ad;
}

.c-faq {
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .c-faq {
    margin-top: 1.75rem;
  }
}

.c-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.c-faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.c-faq__q {
  position: relative;
  padding: 1.375rem 3rem 1.375rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.c-faq__q::-webkit-details-marker {
  display: none;
}
.c-faq__q::before {
  position: absolute;
  left: 0;
  font-family: "Outfit", sans-serif;
  color: #d3122e;
  content: "Q.";
}
.c-faq__q::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #9aa1ad;
  content: "+";
  transform: translateY(-50%);
}
.c-faq__item[open] .c-faq__q::after {
  content: "−";
}

.c-faq__a {
  position: relative;
  padding: 0 0.5rem 1.375rem 2.25rem;
  font-size: 0.9375rem;
  color: #9aa1ad;
}
.c-faq__a::before {
  position: absolute;
  left: 0;
  font-family: "Outfit", sans-serif;
  color: #f2f3f5;
  content: "A.";
}

.c-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .c-media {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.c-media__img {
  overflow: hidden;
  border-radius: 0.5rem;
}
.c-media__img img {
  width: 100%;
}

.c-media__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}
.c-media__text:first-child {
  margin-top: 0;
}

.c-media__button {
  margin-top: 2rem;
}

.c-form {
  max-width: 50rem;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 47.9375em) {
  .c-form {
    margin-top: 2rem;
  }
}

.c-form__row {
  margin-top: 1.75rem;
}
.c-form__row:first-child {
  margin-top: 0;
}

.c-form__label {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
}

.c-form__required,
.c-form__optional {
  padding: 0.0625rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  border-radius: 0.25rem;
}

.c-form__required {
  color: #fff;
  background-color: #d3122e;
}

.c-form__optional {
  color: #9aa1ad;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-top: 0.625rem;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.375rem;
  transition: border-color 0.3s ease;
}
.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  border-color: #d3122e;
  outline: none;
}
.c-form__input::placeholder,
.c-form__select::placeholder,
.c-form__textarea::placeholder {
  color: rgba(154, 161, 173, 0.6);
}

.c-form__select {
  cursor: pointer;
}

.c-form__agree {
  margin-top: 2.5rem;
  text-align: center;
}

.c-form__agree-label {
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  cursor: pointer;
}
.c-form__agree-label input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #d3122e;
  appearance: auto;
}
.c-form__agree-label a {
  text-decoration: underline;
}
@media (hover: hover) {
  .c-form__agree-label a:hover {
    color: #d3122e;
  }
}

.c-form__submit {
  margin-top: 2rem;
  text-align: center;
}

.c-prose {
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
}
.c-prose h2 {
  padding-bottom: 0.75rem;
  margin-top: 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .c-prose h2 {
    margin-top: 2.25rem;
    font-size: 1.125rem;
  }
}
.c-prose p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}
.c-prose ul {
  margin-top: 1.25rem;
}
.c-prose ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
}
.c-prose ul li::before {
  position: absolute;
  top: 0.75em;
  left: 0.25rem;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  background-color: #d3122e;
  border-radius: 50%;
}
.c-prose a {
  text-decoration: underline;
}
@media (hover: hover) {
  .c-prose a:hover {
    color: #d3122e;
  }
}

.c-prose__date {
  margin-top: 3rem;
  color: #9aa1ad;
  text-align: right;
}

.lower-intro {
  padding-top: 4.5rem;
}
@media screen and (max-width: 47.9375em) {
  .lower-intro {
    padding-top: 3rem;
  }
}

.lower-intro__catch {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 47.9375em) {
  .lower-intro__catch {
    font-size: 1.625rem;
  }
}

.lower-intro__lead {
  max-width: 50rem;
  margin-top: 1.5rem;
  font-size: 1rem;
}
.lower-intro__lead:first-child {
  margin-top: 0;
}

.lower-section {
  padding-top: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .lower-section {
    padding-top: 4.5rem;
  }
}
.lower-section--first {
  padding-top: 4.5rem;
}
@media screen and (max-width: 47.9375em) {
  .lower-section--first {
    padding-top: 3rem;
  }
}

.lower-text {
  margin-top: 1.5rem;
}

.lower-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: #9aa1ad;
}
.lower-note a {
  text-decoration: underline;
}
@media (hover: hover) {
  .lower-note a:hover {
    color: #f2f3f5;
  }
}

.lower-buttons {
  margin-top: 2.5rem;
  text-align: center;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 15, 21, 0.92) 0%, rgba(12, 15, 21, 0.55) 40%, rgba(12, 15, 21, 0.15) 70%), linear-gradient(180deg, rgba(12, 15, 21, 0.35) 0%, rgba(12, 15, 21, 0) 30%, rgba(12, 15, 21, 0.75) 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__light {
  position: absolute;
  top: 0;
  left: 0;
  width: 44rem;
  height: 44rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 60%);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero__catch {
  font-size: 4.75rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 64em) {
  .hero__catch {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .hero__catch {
    font-size: 2.75rem;
  }
}

.hero__catch-line {
  display: block;
  opacity: 0;
  transform: translateY(1.5rem);
}
body.is-loaded .hero__catch-line {
  animation: hero-catch 0.9s ease forwards;
}
body.is-loaded .hero__catch-line:nth-of-type(2) {
  animation-delay: 0.3s;
}
body.is-loaded .hero__catch-line:nth-of-type(3) {
  animation-delay: 0.6s;
}

@keyframes hero-catch {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__sub {
  margin-top: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0;
}
body.is-loaded .hero__sub {
  animation: hero-catch 0.9s ease 1s forwards;
}
@media screen and (max-width: 47.9375em) {
  .hero__sub {
    padding-right: 2.5rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .hero__scroll {
    left: 1.25rem;
  }
}

.hero__scroll-text {
  position: relative;
  display: inline-block;
  padding-bottom: 4.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: #9aa1ad;
  writing-mode: vertical-rl;
}
.hero__scroll-text::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 3.75rem;
  content: "";
  background-color: #9aa1ad;
  animation: hero-scroll 2s ease-in-out infinite;
}

@keyframes hero-scroll {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.story {
  position: relative;
  height: 300vh;
}

.story__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.story__bg-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.story__bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__bg-item.is-active {
  opacity: 1;
}

.story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 15, 21, 0.85) 0%, rgba(12, 15, 21, 0.45) 60%, rgba(12, 15, 21, 0.3) 100%), linear-gradient(180deg, rgba(12, 15, 21, 0.5) 0%, rgba(12, 15, 21, 0.2) 40%, rgba(12, 15, 21, 0.7) 100%);
}

.story__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.story__content .inner {
  display: grid;
}

.story__phase {
  grid-area: 1/1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}
.story__phase.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.story__num {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #d3122e;
}

.story__word {
  margin-top: 0.75rem;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 47.9375em) {
  .story__word {
    font-size: 3.25rem;
  }
}

.story__desc {
  margin-top: 1.75rem;
  font-size: 1rem;
  color: #f2f3f5;
}
@media screen and (max-width: 47.9375em) {
  .story__desc {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
  .story__desc br {
    display: none;
  }
}

.story__button {
  margin-top: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .story__button {
    margin-top: 1.5rem;
  }
}

.story__progress {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 47.9375em) {
  .story__progress {
    right: 1.25rem;
    bottom: 1.5rem;
    flex-direction: row;
  }
}

.story__progress-num {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  color: rgba(154, 161, 173, 0.6);
  transition: color 0.3s ease;
}
.story__progress-num.is-active {
  color: #d3122e;
}

.service {
  padding-top: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .service {
    padding-top: 4.5rem;
  }
}

.service__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
@media screen and (max-width: 47.9375em) {
  .service__head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.service__lead {
  font-size: 0.9375rem;
  color: #9aa1ad;
}

.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 47.9375em) {
  .service__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

.service__card {
  display: block;
  overflow: hidden;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) {
  .service__card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-0.375rem);
  }
  .service__card:hover .service__card-img img {
    transform: scale(1.08);
  }
  .service__card:hover .service__card-grid {
    opacity: 1;
  }
  .service__card:hover .service__card-arrow {
    transform: translateX(0.5rem);
  }
}

.service__card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service__card-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service__card-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.service__card-num {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.service__card-title {
  margin-top: 0.75rem;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
}

.service__card-copy {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.service__card-text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #9aa1ad;
}

.service__card-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service__card-arrow {
  transition: transform 0.3s ease;
}

.reason {
  padding-top: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .reason {
    padding-top: 4.5rem;
  }
}

.reason__grid {
  display: grid;
  grid-template-columns: 1.1fr 2.3fr;
  gap: 2.5rem;
  align-items: center;
}
.reason__grid .c-section-head__title {
  font-size: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 64em) {
  .reason__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reason__grid .c-section-head__title {
    white-space: normal;
  }
}

.reason__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 47.9375em) {
  .reason__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }
}

.reason__item {
  padding-right: 1rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .reason__item {
    padding-left: 1rem;
  }
  .reason__item:nth-child(odd) {
    padding-left: 0;
    border-left: none;
  }
}

.reason__label {
  font-size: 0.75rem;
  color: #9aa1ad;
  white-space: nowrap;
}
@media screen and (max-width: 47.9375em) {
  .reason__label {
    white-space: normal;
  }
}

.reason__num {
  margin-top: 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 47.9375em) {
  .reason__num {
    font-size: 2rem;
  }
}
.reason__num--text {
  padding-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 47.9375em) {
  .reason__num--text {
    font-size: 1.125rem;
  }
}

.reason__num-value {
  color: #d3122e;
}

.reason__num-unit {
  margin-left: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
}

.reason__bar {
  display: block;
  height: 2px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, #d3122e 0%, #d3122e 30%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0.12) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s ease 0.3s;
}
.reason__bar.is-view {
  transform: scaleX(1);
}

.reason__button {
  margin-top: 3rem;
  text-align: center;
}

.repair {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  margin-top: 7.5rem;
  overflow: hidden;
  background-color: #06080c;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .repair {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 4.5rem;
  }
}

.repair__caption {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.2);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
@media screen and (max-width: 47.9375em) {
  .repair__caption {
    display: none;
  }
}

.repair__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 47.9375em) {
  .repair__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.repair__visual {
  position: relative;
  overflow: hidden;
}
.repair__visual img {
  width: 100%;
}

.repair__laser {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background-color: #d3122e;
  box-shadow: 0 0 0.75rem rgba(211, 18, 46, 0.9), 0 0 2rem rgba(211, 18, 46, 0.5);
  animation: repair-laser 3.2s ease-in-out infinite;
}

@keyframes repair-laser {
  0% {
    top: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.repair__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(211, 18, 46, 0.85) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
  opacity: 0.18;
  animation: repair-dots 4s ease-in-out infinite alternate;
}

@keyframes repair-dots {
  from {
    opacity: 0.08;
  }
  to {
    opacity: 0.25;
  }
}
.repair__en {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: #d3122e;
  text-transform: uppercase;
}

.repair__title {
  margin-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .repair__title {
    font-size: 1.375rem;
  }
}

.repair__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: #9aa1ad;
}
@media screen and (max-width: 47.9375em) {
  .repair__text br {
    display: none;
  }
}

.repair__button {
  margin-top: 2.25rem;
}

.repair__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2029 0%, #12161f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid #d3122e;
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .repair__box {
    grid-template-columns: 1fr;
  }
}
.repair__box .repair__img {
  height: 100%;
}
.repair__box .repair__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 47.9375em) {
  .repair__box .repair__img {
    aspect-ratio: 16/9;
    height: auto;
  }
}
.repair__box .repair__body {
  padding: 3rem 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .repair__box .repair__body {
    padding: 1.75rem 1.25rem 2rem;
  }
}

.case {
  padding-top: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .case {
    padding-top: 4.5rem;
  }
}

.case__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 47.9375em) {
  .case__head-link {
    display: none;
  }
}

.case__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .case__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

.case__card {
  display: block;
  overflow: hidden;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) {
  .case__card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-0.375rem);
  }
  .case__card:hover .case__card-img img {
    transform: scale(1.06);
  }
}

.case__card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.case__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case__card-num {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.375rem 0.875rem;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0c0f15;
  background-color: #fff;
}

.case__card-body {
  padding: 1.375rem 1.5rem 1.5rem;
}

.case__card-tag {
  font-size: 0.75rem;
  color: #9aa1ad;
}

.case__card-title {
  margin-top: 0.625rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
}

.case__card-text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #9aa1ad;
}

.news {
  padding-top: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .news {
    padding-top: 4.5rem;
  }
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .news__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.news__more {
  text-align: right;
}
@media screen and (max-width: 47.9375em) {
  .news__more {
    text-align: left;
  }
}

.news__list {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.news__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news__link {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .news__link {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.5rem 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (hover: hover) {
  .news__link:hover .news__title {
    color: #d3122e;
  }
}

.news__date {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  color: #9aa1ad;
}

.news__category {
  display: inline-block;
  min-width: 5.5rem;
  padding: 0.125rem 0.875rem;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 62.4375rem;
}

.news__title {
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 47.9375em) {
  .news__title {
    grid-column: 1/-1;
  }
}

.company {
  padding-top: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .company {
    padding-top: 4.5rem;
  }
}

.company__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 47.9375em) {
  .company__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.company__img {
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}
.company__img img {
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .company__img {
    order: -1;
    clip-path: none;
  }
}

.company__en {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: #d3122e;
  text-transform: uppercase;
}

.company__title {
  margin-top: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .company__title {
    font-size: 1.5rem;
  }
}

.company__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: #9aa1ad;
}

.company__button {
  margin-top: 2rem;
}

.cta {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  margin-top: 7.5rem;
  background: linear-gradient(135deg, #12161f 0%, #0a0d13 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .cta {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-top: 4.5rem;
  }
}

.cta {
  text-align: center;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 64em) {
  .cta__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.cta__en {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: #d3122e;
  text-transform: uppercase;
}

.cta__title {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 47.9375em) {
  .cta__title {
    font-size: 1.625rem;
  }
}

.cta__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #9aa1ad;
}
@media screen and (max-width: 47.9375em) {
  .cta__text br {
    display: none;
  }
}

.cta__tel-wrap {
  text-align: center;
}

.cta__tel {
  display: inline-block;
  line-height: 1.4;
  text-align: left;
}

.cta__tel-num {
  position: relative;
  display: block;
  padding-left: 2.25rem;
  font-family: "Outfit", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  white-space: nowrap;
}
.cta__tel-num::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.375rem;
  height: 1.375rem;
  content: "";
  border: 2px solid #d3122e;
  border-radius: 0.375rem 0.375rem 0.375rem 1.125rem;
  transform: translateY(-50%) rotate(-15deg);
}
@media screen and (max-width: 47.9375em) {
  .cta__tel-num {
    font-size: 2rem;
  }
}

.cta__tel-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #9aa1ad;
  white-space: nowrap;
}

.cta__button {
  text-align: center;
}

.cta__buttons {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .cta__buttons {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.message {
  padding-top: 4.5rem;
}
@media screen and (max-width: 47.9375em) {
  .message {
    padding-top: 3rem;
  }
}

.message__photo {
  overflow: hidden;
  border-radius: 0.5rem;
}
.message__photo img {
  width: 100%;
}

.message__body {
  max-width: 45rem;
  margin-top: 4rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 47.9375em) {
  .message__body {
    margin-top: 2.5rem;
  }
}

.message__catch {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .message__catch {
    font-size: 1.5rem;
  }
}

.message__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .message__text {
    margin-top: 1.75rem;
  }
}
.message__text p {
  margin-top: 1.5em;
}
.message__text p:first-child {
  margin-top: 0;
}

.message__sign {
  margin-top: 3.5rem;
  text-align: right;
}
@media screen and (max-width: 47.9375em) {
  .message__sign {
    margin-top: 2.5rem;
  }
}

.message__sign-company {
  display: block;
  font-size: 0.875rem;
  color: #9aa1ad;
}

.message__sign-name {
  display: block;
  margin-top: 0.375rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.profile {
  padding-top: 4.5rem;
}
@media screen and (max-width: 47.9375em) {
  .profile {
    padding-top: 3rem;
  }
}

.profile__table {
  width: 100%;
  margin-top: 2.5rem;
  border-collapse: collapse;
}
@media screen and (max-width: 47.9375em) {
  .profile__table {
    margin-top: 1.75rem;
  }
}
.profile__table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.profile__table tr:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.profile__table th {
  width: 25%;
  padding: 1.375rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 47.9375em) {
  .profile__table th {
    display: block;
    width: 100%;
    padding: 1rem 0 0;
  }
}
.profile__table td {
  padding: 1.375rem 1rem;
  font-size: 0.9375rem;
}
@media screen and (max-width: 47.9375em) {
  .profile__table td {
    display: block;
    padding: 0.5rem 0 1rem;
  }
}

.profile__note {
  font-size: 0.8125rem;
  color: #9aa1ad;
}

.profile__business li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.375rem;
  counter-increment: business;
}
.profile__business li:first-child {
  margin-top: 0;
}
.profile__business li::before {
  position: absolute;
  left: 0;
  font-family: "Outfit", sans-serif;
  color: #d3122e;
  content: counter(business) ".";
}

.history {
  padding-top: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .history {
    padding-top: 4.5rem;
  }
}

.history__list {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .history__list {
    margin-top: 1.75rem;
  }
}
.history__list::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.3125rem;
  width: 1px;
  content: "";
  background-color: rgba(255, 255, 255, 0.12);
}

.history__item {
  position: relative;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
  padding-left: 2rem;
  margin-top: 2rem;
}
.history__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 47.9375em) {
  .history__item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin-top: 1.5rem;
  }
}
.history__item::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.6875rem;
  height: 0.6875rem;
  content: "";
  background-color: #d3122e;
  border-radius: 50%;
}

.history__year {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #9aa1ad;
}

.history__text {
  font-size: 0.9375rem;
}

.access {
  padding-top: 4.5rem;
}
@media screen and (max-width: 47.9375em) {
  .access {
    padding-top: 3rem;
  }
}

.access__map {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/7;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .access__map {
    aspect-ratio: 4/3;
  }
}

.access__map-note {
  color: #9aa1ad;
  text-align: center;
}
.access__map-note span {
  font-size: 0.8125rem;
}

.access__address {
  margin-top: 2rem;
}

.access__address-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.access__address-text {
  margin-top: 0.375rem;
  user-select: all;
}

.access__info {
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .access__info {
    margin-top: 1.75rem;
  }
}

.access__info-item {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.access__info-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .access__info-item {
    grid-template-columns: 1fr;
    gap: 0.375rem;
    padding: 1rem 0;
  }
}

.access__info-title {
  font-weight: 700;
}

.access__info-text {
  font-size: 0.9375rem;
  color: #9aa1ad;
}

.access__photo {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.access__photo img {
  width: 100%;
}

.service-map {
  margin-top: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .service-map {
    margin-top: 2rem;
  }
}

.service-map__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .service-map__pillars {
    gap: 1rem;
  }
}

.service-map__pillar {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid #d3122e;
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .service-map__pillar {
    padding: 1.5rem 0.75rem;
  }
}

.service-map__label {
  font-size: 0.8125rem;
  color: #d3122e;
}

.service-map__name {
  margin-top: 0.375rem;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 47.9375em) {
  .service-map__name {
    font-size: 1.25rem;
  }
}

.service-map__share {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: #9aa1ad;
}

.service-map__base {
  padding: 1.75rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(211, 18, 46, 0.15) 0%, rgba(211, 18, 46, 0.05) 100%);
  border: 1px solid rgba(211, 18, 46, 0.4);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .service-map__base {
    margin-top: 1rem;
  }
}

.service-map__base-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.service-map__base-text {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #9aa1ad;
}

.survey-price {
  max-width: 50rem;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  background-color: #1a2029;
  border-left: 4px solid #d3122e;
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .survey-price {
    padding: 1.5rem 1.25rem;
    margin-top: 1.75rem;
  }
}

.survey-price__text {
  font-size: 1rem;
  font-weight: 500;
}

.products__list {
  margin-top: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .products__list {
    margin-top: 2rem;
  }
}

.products__item {
  display: grid;
  grid-template-columns: 5fr 7fr;
  margin-top: 2.5rem;
  overflow: hidden;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  transition: border-color 0.3s ease;
}
.products__item:first-child {
  margin-top: 0;
}
.products__item:nth-child(even) {
  grid-template-columns: 7fr 5fr;
}
.products__item:nth-child(even) .products__img {
  order: 2;
}
@media (hover: hover) {
  .products__item:hover {
    border-color: rgba(211, 18, 46, 0.5);
  }
  .products__item:hover .products__img img {
    transform: scale(1.04);
  }
}
@media screen and (max-width: 47.9375em) {
  .products__item {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  .products__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .products__item:nth-child(even) .products__img {
    order: 0;
  }
}

.products__img {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media screen and (max-width: 47.9375em) {
  .products__img {
    aspect-ratio: 16/9;
    min-height: auto;
  }
}

.products__body {
  padding: 2.75rem 3rem;
}
@media screen and (max-width: 64em) {
  .products__body {
    padding: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .products__body {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.products__category {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #d3122e;
  border: 1px solid rgba(211, 18, 46, 0.5);
  border-radius: 62.4375rem;
}

.products__name {
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 47.9375em) {
  .products__name {
    font-size: 1.375rem;
  }
}

.products__copy {
  padding-bottom: 1.25rem;
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.products__features {
  margin-top: 1.25rem;
}
.products__features li {
  position: relative;
  padding-left: 1.625rem;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: #9aa1ad;
}
.products__features li:first-child {
  margin-top: 0;
}
.products__features li::before {
  position: absolute;
  top: 0.6em;
  left: 0.125rem;
  width: 0.75rem;
  height: 0.4375rem;
  content: "";
  border-bottom: 2px solid #d3122e;
  border-left: 2px solid #d3122e;
  transform: rotate(-45deg);
}

.products__buttons {
  margin-top: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .products__buttons {
    margin-top: 1.5rem;
    text-align: center;
  }
}

.mc-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .mc-diagram {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.mc-diagram__step {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
.mc-diagram__step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1.75rem;
  font-size: 1.25rem;
  color: #d3122e;
  content: "→";
  transform: translateY(-50%);
}
@media screen and (max-width: 47.9375em) {
  .mc-diagram__step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -1.75rem;
    content: "↓";
    transform: translateX(50%);
  }
}

.mc-diagram__label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #d3122e;
}

.mc-diagram__name {
  margin-top: 0.375rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.mc-diagram__text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #9aa1ad;
}

.mc-diagram__effect {
  max-width: 50rem;
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, rgba(211, 18, 46, 0.15) 0%, rgba(211, 18, 46, 0.05) 100%);
  border: 1px solid rgba(211, 18, 46, 0.4);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .mc-diagram__effect {
    padding: 1.25rem;
    margin-top: 2rem;
  }
}

.construction-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .construction-partners {
    margin-top: 1.75rem;
  }
}

.construction-partners__item {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .construction-partners__item {
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: center;
  }
}

.repair-trouble {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .repair-trouble {
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
  }
}

.repair-trouble__item {
  position: relative;
  padding: 1.375rem 1.5rem 1.375rem 3.25rem;
  font-weight: 500;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
.repair-trouble__item::before {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 0.875rem;
  height: 0.5rem;
  content: "";
  border-bottom: 2px solid #d3122e;
  border-left: 2px solid #d3122e;
  transform: translateY(-70%) rotate(-45deg);
}

.repair-models {
  max-width: 50rem;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .repair-models {
    padding: 1.5rem 1.25rem;
    margin-top: 1.75rem;
  }
}

.repair-models__text {
  font-size: 0.9375rem;
}

.reason-showcase {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}
@media screen and (max-width: 64em) {
  .reason-showcase {
    grid-template-columns: 18rem 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .reason-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.reason-showcase__tabs {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 47.9375em) {
  .reason-showcase__tabs {
    flex-direction: row;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
  }
}

.reason-showcase__tab {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.375rem 1rem 1.375rem 1.5rem;
  color: #9aa1ad;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.3s ease;
}
.reason-showcase__tab:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.reason-showcase__tab::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background-color: #d3122e;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .reason-showcase__tab:hover {
    color: #f2f3f5;
  }
}
.reason-showcase__tab.is-active {
  color: #f2f3f5;
}
.reason-showcase__tab.is-active::before {
  transform: scaleY(1);
}
.reason-showcase__tab.is-active .reason-showcase__tab-num {
  color: #d3122e;
}
@media screen and (max-width: 47.9375em) {
  .reason-showcase__tab {
    flex-shrink: 0;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
  }
  .reason-showcase__tab:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .reason-showcase__tab::before {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 2px;
    transform: scaleX(0);
  }
  .reason-showcase__tab.is-active::before {
    transform: scaleX(1);
  }
}

.reason-showcase__tab-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.reason-showcase__tab-title {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 47.9375em) {
  .reason-showcase__tab-title {
    font-size: 0.75rem;
    white-space: nowrap;
  }
}

.reason-showcase__stage {
  display: grid;
}

.reason-showcase__panel {
  grid-area: 1/1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
.reason-showcase__panel.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.reason-showcase__photo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.75rem;
}
.reason-showcase__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.9s ease;
}
.reason-showcase__panel.is-active .reason-showcase__photo img {
  transform: scale(1);
}
.reason-showcase__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(12, 15, 21, 0) 55%, rgba(12, 15, 21, 0.65) 100%);
}

.reason-showcase__watermark {
  position: absolute;
  right: 1.5rem;
  bottom: -1.25rem;
  z-index: 1;
  font-family: "Outfit", sans-serif;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
  user-select: none;
}
@media screen and (max-width: 47.9375em) {
  .reason-showcase__watermark {
    font-size: 5rem;
    bottom: -0.75rem;
  }
}

.reason-showcase__body {
  padding-top: 1.75rem;
}
@media screen and (max-width: 47.9375em) {
  .reason-showcase__body {
    padding-top: 1.25rem;
  }
}

.reason-showcase__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 47.9375em) {
  .reason-showcase__title {
    font-size: 1.25rem;
  }
}

.reason-showcase__text {
  max-width: 40rem;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: #9aa1ad;
}

.reason-showcase__link {
  position: relative;
  display: inline-block;
  padding-right: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d3122e;
}
.reason-showcase__link::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
@media (hover: hover) {
  .reason-showcase__link:hover {
    text-decoration: underline;
  }
  .reason-showcase__link:hover::after {
    right: 0;
  }
}

.reason-closing {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 47.9375em) {
  .reason-closing {
    font-size: 1.375rem;
  }
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.works-filter__btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9aa1ad;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 62.4375rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) {
  .works-filter__btn:hover {
    color: #f2f3f5;
    border-color: #9aa1ad;
  }
}
.works-filter__btn.is-active {
  color: #fff;
  background-color: #d3122e;
  border-color: #d3122e;
}

.works-list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .works-list {
    margin-top: 1.75rem;
  }
}

.news-pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .news-pagination {
    margin-top: 2rem;
  }
}

.news-pagination__current,
.news-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-family: "Outfit", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.news-pagination__current {
  color: #fff;
  background-color: #d3122e;
  border-color: #d3122e;
}

.news-pagination__link {
  color: #9aa1ad;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) {
  .news-pagination__link:hover {
    color: #f2f3f5;
    border-color: #9aa1ad;
  }
}

.news-article {
  padding-top: 4.5rem;
}
@media screen and (max-width: 47.9375em) {
  .news-article {
    padding-top: 3rem;
  }
}

.news-article__container {
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
}

.news-article__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.news-article__date {
  font-family: "Outfit", sans-serif;
  font-size: 0.9375rem;
  color: #9aa1ad;
}

.news-article__category {
  display: inline-block;
  min-width: 5.5rem;
  padding: 0.125rem 0.875rem;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 62.4375rem;
}

.news-article__title {
  padding-bottom: 1.5rem;
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 47.9375em) {
  .news-article__title {
    padding-bottom: 1rem;
    font-size: 1.375rem;
  }
}

.news-article__eyecatch {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.news-article__eyecatch img {
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .news-article__eyecatch {
    margin-top: 1.75rem;
  }
}

.news-article__body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .news-article__body {
    margin-top: 1.75rem;
  }
}
.news-article__body p {
  margin-top: 1.5em;
  font-size: 0.9375rem;
}
.news-article__body p:first-child {
  margin-top: 0;
}

.news-article__related {
  padding: 1.75rem 2rem;
  margin-top: 3rem;
  background-color: #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .news-article__related {
    padding: 1.25rem;
    margin-top: 2rem;
  }
}

.news-article__related-title {
  font-size: 0.9375rem;
  font-weight: 700;
}

.news-article__related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-top: 1rem;
}

.news-article__back {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 47.9375em) {
  .news-article__back {
    margin-top: 2rem;
  }
}

.contact-tel {
  padding: 2.5rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(211, 18, 46, 0.12) 0%, rgba(211, 18, 46, 0) 65%), #1a2029;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .contact-tel {
    padding: 1.75rem 1.25rem;
  }
}

.contact-tel__lead {
  font-weight: 700;
}

.contact-tel .cta__tel {
  margin-top: 1.25rem;
}
