html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #fff;
  color: #212222;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

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

a:hover,
a:focus {
  text-decoration: none;
}

li {
  list-style: none;
}

main {
  display: block;
}

.hero {
  padding: 2rem 1rem 3rem 1rem;
  background: #0266A5;
}

.hero__inner {
  margin: 0 auto;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
  color: #ffffff;
}

.bdr_white {
  width: clamp(120px, 16vw, 220px);
  height: auto;
  margin: 0 auto clamp(1.75rem, 3vw, 2.75rem);
  display: block;
}

.hero__text-flexbox {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__text-block {
  flex: 1 1 55%;
}

.hero__description {
  margin: 0 0 30px;
  color: #ffffff;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: auto;
  padding: 0.7rem 2.2rem;
  background-color: #ffffff;
  color: #212222;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 32px;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.hero__button::after {
  content: "→";
  font-size: 1.2em;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.hero__button:hover,
.hero__button:focus-visible {
  background-color: #212222;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero__button:hover::after,
.hero__button:focus-visible::after {
  transform: translateX(4px);
}

.hero__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.hero__media {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: min(100%, 420px);
  object-fit: cover;
  border: 1px solid #212222;
}

.support {
  background-color: #ffffff;
  color: #212222;
  padding: 2rem 1rem;
}

.support__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0266A5;
}

.support__title {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.35;
  color: #212222;
}

.support__divider {
  width: clamp(90px, 12vw, 140px);
  height: 3px;
  margin: 10px auto 50px;
  display: block;
  background-color: #0266A5;
}

.support__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.2vw, 3rem);
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.support-card__media {
  position: relative;
  overflow: hidden;
}

.support-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.support-card:hover .support-card__media img,
.support-card:focus-within .support-card__media img {
  transform: scale(1.04);
}

.support-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px;
  color: #212222;
  letter-spacing: 0.08em;
}

.support-card__text {
  margin: 0;
  color: #212222;
  font-size: 1rem;
  padding: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: left;
}

.about-company {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.about-company__frame {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 3.5px solid #212222;
  padding: 2.5rem;
  text-align: center;
  border-radius: 5px;
}

.about-company__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0266A5;
}

.about-company__title {
  margin: 10px 0 0;
  font-size: 2rem;
  font-weight: 700;
  color: #212222;
  line-height: 1.35;
  position: relative;
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-company__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 12vw, 140px);
  height: 3px;
  background: #0266A5;
}

.about-company__lead {
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  max-width: 720px;
  color: #212222;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-top: 2rem;
}

.about-company__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 3px solid #EEEEEE;
  background-color: #FBFDFC;
  padding: 2.2rem clamp(1.75rem, 4vw, 3rem);
  margin: 0 auto clamp(3rem, 5vw, 3.5rem);
}

.about-company__card-content {
  flex: 1 1 55%;
  text-align: left;
}

.about-company__card-heading {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0266A5;
  letter-spacing: 0.08em;
}

.about-company__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.about-company__list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  font-size: 1rem;
  color: #212222;
  border-top: 1px solid #212222;
}

.about-company__list li:first-child {
  border-top: none;
}

.about-company__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.55rem;
  height: 0.55rem;
  background-color: #212222;
}

.about-company__illustration {
  flex: 1 1 40%;
  max-width: 320px;
  margin: 0 auto;
}

.about-company__illustration img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-company__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  background: #212222;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-company__cta::after {
  content: "→";
  font-size: 1.2em;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.about-company__cta:hover,
.about-company__cta:focus-visible {
  transform: translateY(-2px);
}

.about-company__cta:hover::after,
.about-company__cta:focus-visible::after {
  transform: translateX(4px);
}

.about-company__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.workflow {
  background-color: #ffffff;
}

.workflow__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.workflow__header {
  background: #212222;
  padding: 0.75rem 2rem;
  text-align: center;
  color: #ffffff;
}

.workflow__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.workflow__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.25rem);
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

.workflow-step:last-child {
  border-bottom: none;
}

.workflow-step__media {
  position: relative;
  overflow: hidden;
}

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

.workflow-step__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.35rem);
  text-align: left;
}

.workflow-step__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 700;
  color: #212222;
  letter-spacing: 0.08em;
}

.workflow-step__description {
  margin: 0;
  color: #212222;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.faq {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.faq__frame {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 3.5px solid #212222;
  padding: 2.5rem;
  text-align: center;
  border-radius: 5px;
}

.faq__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0266A5;
}

.faq__title {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(2rem, 3.5vw, 2.5rem);
  font-size: 2rem;
  font-weight: 700;
  color: #212222;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.faq-item {
  border-bottom: 1px dashed #212222;
  padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: clamp(0.9rem, 2vw, 1.1rem);
}

.faq-item__row--question {
  background: #ffffff;
}

.faq-item__row--answer {
  background: #ffffff;
}

.faq-item__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-item__label--q {
  color: #212222;
  background: #ffffff;
  border: 2px solid #212222;
}

.faq-item__label--a {
  color: #0266A5;
  background: #ffffff;
  border: 2px solid #212222;
}

.faq-item__text {
  margin: 0;
  color: #212222;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.entry {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.entry__frame {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 2px solid #212222;
  padding: 2.5rem;
  text-align: center;
  border-radius: 5px;
}

.entry__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0266A5;
}

.entry__title {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1.5rem, 3vw, 2rem);
  font-size: 2rem;
  font-weight: 700;
  color: #212222;
}

.entry__lead {
  margin: 0 0 clamp(2.25rem, 4vw, 2.75rem);
  color: #212222;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.entry__location {
  margin-bottom: 20px;
  background: #212222;
  color: #ffffff;
  padding: 0.75rem 2rem;
}

.entry__location-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.entry__table {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.entry__row {
  display: grid;
  grid-template-columns: minmax(140px, 240px) minmax(0, 1fr);
  border-bottom: 1px dotted #212222;
}

.entry__row:first-child {
  border-top: 1px dotted #212222;
}

.entry__term {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1rem, 2.5vw, 1.4rem);
  background: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #212222;
}

.entry__description {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1rem, 3vw, 2rem);
  text-align: left;
  color: #212222;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.entry-form {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.entry-form__frame {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 2px solid #212222;
  padding: 2.5rem;
  text-align: center;
  border-radius: 5px;
}

.entry-form__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0266A5;
}

.entry-form__title {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1.5rem, 3vw, 2rem);
  font-size: 2rem;
  font-weight: 700;
  color: #212222;
}

.entry-form__lead {
  margin: 0 0 clamp(2.5rem, 4vw, 3rem);
  color: #212222;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.entry-form__form {
  display: grid;
  margin-bottom: clamp(2.75rem, 5vw, 3.5rem);
}

.entry-form__row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px dotted #212222;
}

.entry-form__row--textarea {
  align-items: stretch;
}

.entry-form__label {
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 2.2vw, 1.5rem);
  background: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  color: #212222;
}

.entry-form__input,
.entry-form__textarea {
  margin: 10px;
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #212222;
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: #ffffff;
  color: #212222;
}

.entry-form__input::placeholder,
.entry-form__textarea::placeholder {
  color: #9d9b9bda;
}

.entry-form__textarea {
  resize: vertical;
}

.entry-form__submit {
  justify-self: center;
  padding: 0.65rem 3.2rem;
  background: #212222;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  border-radius: 5px;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.entry-form__submit:hover,
.entry-form__submit:focus-visible {
  transform: translateY(-2px);
}

.entry-form__submit:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.entry-form__privacy {
  text-align: left;
  color: #212222;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  line-height: 1.7;
  border: 1px solid #212222;
  padding: clamp(1.25rem, 3vw, 2rem);
  max-height: 220px;
  overflow: auto;
  background: #ffffff;
}

.entry-form__privacy-title {
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  font-size: 1rem;
  font-weight: 700;
  color: #212222;
}

.entry-form__privacy-text {
  margin: 0 0 clamp(0.75rem, 2vw, 1.1rem);
}

.company {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.company__frame {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 3.5px solid #212222;
  padding: 2.5rem;
  text-align: center;
  border-radius: 5px;
}

.company__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0266A5;
}

.company__title {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1.75rem, 3vw, 2.25rem);
  font-size: 2rem;
  font-weight: 700;
  color: #212222;
}

.company__table {
  margin: 0 0 clamp(2.5rem, 4vw, 3rem);
  padding: 0;
  display: grid;
  gap: 0;
}

.company__row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  border-bottom: 1px dotted #212222;
}

.company__row:first-child {
  border-top: 1px dotted #212222;
}

.company__term {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1rem, 2.5vw, 1.4rem);
  background: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #212222;
  text-align: left;
}

.company__description {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1rem, 3vw, 2rem);
  text-align: left;
  color: #212222;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.company__map {
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.company__map-iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid #212222;
}

.contact {
  background-color: #ffffff;
  padding: 2rem 1rem 4rem 1rem;
}

.contact__frame {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 2px solid #212222;
  padding: 2.5rem;
  text-align: center;
  border-radius: 5px;
  display: flex;
  align-items: stretch;
  gap: clamp(2rem, 6vw, 3.5rem);
}

.contact__column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__column--info {
  text-align: left;
  padding-right: clamp(1.5rem, 5vw, 2.5rem);
  border-right: 1px solid #212222;
  gap: 0.75rem;
}

.contact__column--action {
  text-align: center;
  align-items: center;
  gap: 0.75rem;
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.contact__title {
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #212222;
}

.contact__subtitle {
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0266A5;
}

.contact__text {
  margin: 0;
  color: #212222;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.contact__phone {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #212222;
}

.contact__hours {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  color: #212222;
}

.contact__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 3.2rem;
  background: #0266A5;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  transition: background 0.3s ease, transform 0.3s ease;
  width: min(100%, 220px);
  margin: 0 auto;
}

.contact__button:hover,
.contact__button:focus-visible {
  transform: translateY(-2px);
}

.contact__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.footer {
  background: #0266A5;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 6vw, 2.5rem);
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: #ffffff;
}

.footer__logo {
  width: clamp(140px, 20vw, 400px);
  height: auto;
}

.footer__address,
.footer__copy {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.about-placeholder {
  padding: 4rem 1.5rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  color: #ffffff;
  font-size: 0.95rem;
}

@media (min-width: 961px) {
  .support-card:nth-child(1) {
    padding: 0 15px 0 15px;
  }

  .support-card:nth-child(3) {
    padding: 0 15px 0 15px;
  }

  .support-card__media img {
    aspect-ratio: 16 / 9;
  }

  .support-card:nth-child(2) {
    border-left: 2px solid #212222;
    border-right: 2px solid #212222;
    padding: 0 15px 0 15px;
  }
}

@media (max-width: 960px) {
  .hero__text-flexbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero__text-block {
    width: 100%;
  }

  .hero__media {
    width: 100%;
  }

  .hero__image {
    width: 100%;
    max-width: 520px;
  }

  .support__cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .support-card:nth-child(2) {
    border: none;
  }

  .about-company__frame {
    max-width: 100%;
    padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.5rem, 6vw, 3rem);
  }

  .about-company__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-company__card-content {
    text-align: center;
  }

  .about-company__list li {
    text-align: left;
  }

  .about-company__illustration {
    max-width: 260px;
  }

  .about-company__cta {
    width: 100%;
  }

  .workflow__inner {
    gap: 2.5rem;
  }

  .workflow-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .workflow-step__body {
    text-align: center;
  }

  .workflow-step__description {
    text-align: left;
  }

  .faq__frame {
    padding: clamp(2.5rem, 6vw, 3.5rem);
  }

  .faq-item__row {
    gap: 0.85rem;
  }

  .faq-item__label {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .entry__frame {
    padding: clamp(2.5rem, 6vw, 3.5rem);
  }

  .entry__row {
    grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
  }

  .entry-form__frame {
    padding: clamp(2.5rem, 6vw, 3.5rem);
  }

  .entry-form__row {
    grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
  }

  .contact__frame {
    flex-direction: column;
    text-align: center;
    gap: clamp(1.5rem, 6vw, 2.5rem);
  }

  .contact__column--info {
    text-align: center;
    padding-right: 0;
    border-right: none;
  }

  .contact__column--action {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  body {
    letter-spacing: 0.04em;
  }

  .hero {
    padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1.25rem, 7vw, 2rem);
  }

  .hero__text-flexbox {
    align-items: center;
  }

  .hero__text-block {
    text-align: center;
  }

  .hero__title {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    text-align: center;
  }

  .hero__description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    justify-content: center;
  }

  .support__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .support__divider {
    margin-bottom: clamp(1.75rem, 5vw, 2.25rem);
  }

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

  .support-card {
    text-align: left;
  }

  .support-card__title {
    text-align: left;
  }

  .about-company__card {
    padding: clamp(1.75rem, 6vw, 2.5rem) clamp(1.25rem, 6vw, 2rem);
  }

  .about-company__card-heading {
    font-size: clamp(1.3rem, 6vw, 1.5rem);
  }

  .about-company__illustration {
    max-width: 220px;
  }

  .about-company__cta {
    padding: 1rem 1.5rem;
  }

  .workflow__header {
    padding: clamp(1.25rem, 6vw, 1.75rem);
  }

  .workflow-step {
    gap: clamp(1.25rem, 5vw, 1.75rem);
    padding-bottom: clamp(1.25rem, 5vw, 1.75rem);
  }

  .workflow-step__title {
    font-size: clamp(1.2rem, 6vw, 1.45rem);
  }

  .faq__frame {
    padding: clamp(2.2rem, 7vw, 3rem);
  }

  .faq-item__row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
  }

  .faq-item__label {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    padding: 0;
  }

  .entry__frame {
    padding: clamp(2rem, 7vw, 3rem);
  }

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

  .entry__term {
    text-align: center;
  }

  .entry-form__frame {
    padding: clamp(2rem, 7vw, 3rem);
  }

  .entry-form__row {
    grid-template-columns: 1fr;
  }

  .entry-form__label {
    text-align: center;
  }

  .company__frame {
    padding: clamp(2rem, 7vw, 3rem);
  }

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

  .company__term {
    text-align: center;
  }

  .company__map-iframe {
    min-height: 280px;
  }

  .contact__frame {
    flex-direction: column;
    text-align: center;
    gap: clamp(1.5rem, 6vw, 2.5rem);
  }

  .contact__column--info {
    text-align: center;
    padding-right: 0;
    border-right: none;
  }

  .contact__column--action {
    width: 100%;
  }

  .contact__button {
    width: 100%;
  }

  .footer__inner {
    gap: 0.75rem;
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

.fixed-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}
.fixed-cta img {
  width: clamp(120px, 12vw, 160px);
  height: auto;
  display: block;
}
