/* 東日本建工 LP — Figma 24:331 準拠 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-accent: #005eab;
  --color-yellow: #ffb500;
  --color-line: #09a75a;
  --color-gray-bg: #e1e5e7;
  --color-solution-bg: #bde7ff;
  --color-border: #d9d9d9;
  --inner-max: 1200px;
  --page-max: 1512px;
  --scroll-margin-header: 80px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  color: var(--color-black);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: inherit;
}

.layout-root {
  width: 100%;
  max-width: 2000px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.main {
  display: flex;
  flex-direction: column;
}

.main > [id] {
  scroll-margin-top: var(--scroll-margin-header);
}

/* ----- 共通インナー・見出し ----- */

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.section-heading__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.section-heading__eyebrow {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-accent);
}

/* ----- FV ----- */
.fv {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.fv__inner {
  width: 100%;
  max-width: 2000px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.fv__inner picture {
  display: block;
  width: 100%;
}

.fv__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----- ヘッダー ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-black);
  color: var(--color-white);
}

.site-header__inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 30px;
}

.site-header__logo {
  margin: 0;
  font-weight: 600;
}

.site-header__logo a {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.site-header__logo a:hover {
  opacity: 0.9;
}

.site-header__logo-main {
  font-size: 26px;
  line-height: 33px;
}

.site-header__logo-sub {
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.site-header__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.site-header__aside {
  display: flex;
  align-items: center;
}

.site-header__cta-bar {
  display: block;
}

.site-header__tel {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.site-header__tel-label {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.site-header__tel-number {
  font-family: "Noto Sans", sans-serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.site-header__tel-number:hover {
  color: #005eab;
}

.site-header__cta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ----- CTA セクション ----- */
.section-cta--light {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 80px 0;
  width: 100%;
}

.section-cta__inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section-cta__headline-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  margin: 0;
  font-weight: inherit;
}

.section-cta__headline {
  margin: 0;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.section-cta__headline--black {
  font-size: 40px;
  color: var(--color-black);
}

.section-cta__headline--accent {
  font-size: 48px;
  color: #ff0000;
}

.section-cta__lead {
  margin: 0;
  max-width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
}

.section-cta__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* ----- CTA ボタン ----- */
@keyframes cta-button-shine {
  0%,
  72% {
    transform: translateX(-160%) skewX(-18deg);
  }
  88% {
    transform: translateX(260%) skewX(-18deg);
  }
  100% {
    transform: translateX(260%) skewX(-18deg);
  }
}

.cta-button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 350px;
  max-width: 100%;
  padding: 18.57px 37.15px;
  border-radius: 247.66px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: -20% 0;
  width: 45%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  animation: cta-button-shine 4.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.cta-button__main,
.cta-button__arrow {
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  opacity: 0.9;
  filter: brightness(1.02);
}

.cta-button--assessment {
  background: var(--color-yellow);
}

.cta-button--line {
  background: var(--color-line);
}

.cta-button--header {
  width: 230px;
  padding: 14.8px 29.6px;
}

.cta-button--header .cta-button__label {
  font-size: 16px;
}

.cta-button__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-button__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

.cta-button__icon {
  display: block;
  flex-shrink: 0;
}

.cta-button__label {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-size: 22.289px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-black);
  white-space: nowrap;
}

.cta-button__label--on-line {
  color: var(--color-white);
}

.cta-button__label--on-dark-yellow {
  color: var(--color-black);
}

.cta-button__arrow {
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-button__arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .cta-button::after {
    animation: none;
    opacity: 0;
  }
}

/* ----- PROBLEMS ----- */
.section-problems {
  padding: 80px 0;
  background: var(--color-gray-bg);
}

.section-problems__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section-problems__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: var(--inner-max);
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-card__img {
  display: block;
  width: 100%;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.problem-card__title {
  margin: 0;
  padding-top: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 33px;
  text-align: center;
}

.problem-card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

.section-problems__closing {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 33px;
  text-align: center;
}

.section-problems__closing-accent {
  color: var(--color-accent);
}

/* ----- POINT / MERITS ----- */
.section-merits {
  padding: 80px 0;
}

.section-merits__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.merit-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: var(--inner-max);
  margin: 0;
  padding: 0;
  list-style: none;
}

.merit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.merit-row--reverse {
  flex-direction: row-reverse;
}

.merit-row__img {
  flex: 1 1 50%;
  display: block;
  width: 100%;
  max-width: 600px;
}

.merit-row__body {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.merit-row__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 586px;
}

.merit-row__badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.merit-row__badge-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

.merit-row__badge {
  margin: 0;
  padding: 5px 20px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
}

.merit-row__num {
  margin: 0;
  flex-shrink: 0;
  font-family: Roboto, sans-serif;
  font-size: 84px;
  font-weight: 600;
  line-height: 84px;
  text-align: right;
}

.merit-row__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

/* ----- PROFILE ----- */
.section-profile {
  padding: 80px 0;
  background: var(--color-gray-bg);
  position: relative;
  overflow: hidden;
}

.section-profile__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.profile-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: var(--inner-max);
}

.profile-block__photo {
  flex-shrink: 0;
  display: block;
  width: 320px;
  height: 320px;
}

.profile-block__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.profile-block__texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-block__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-black);
}

.profile-card__name {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
}

.profile-card__role {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
  color: var(--color-accent);
}

.profile-card__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.profile-card__line {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

.profile-card__line a {
  color: inherit;
  text-decoration: none;
}

.profile-card__line a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.section-profile__watermark {
  position: absolute;
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
  margin: 0;
  width: 100%;
  max-width: 948px;
  font-family: Roboto, sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 53px;
  letter-spacing: 0.2em;
  text-align: center;
  color: var(--color-white);
  pointer-events: none;
  white-space: nowrap;
}

/* ----- RESOLUTION ----- */
.section-resolution {
  padding: 80px 0;
}

.section-resolution__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.resolution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: var(--inner-max);
  margin: 0;
  padding: 0;
  list-style: none;
}

.resolution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100%;
  padding: 20px;
  border: 1px solid #b3b3b3;
  background: var(--color-white);
}

.resolution-card__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
}

.resolution-card__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.resolution-card__title {
  margin: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 33px;
}

.resolution-card__tag {
  margin: 0;
  flex-shrink: 0;
  padding: 0 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 33px;
  white-space: nowrap;
}

.resolution-card__problem {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 33px;
}

.resolution-card__solution {
  margin: 0;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  background: var(--color-solution-bg);
}

/* ----- CONTRAST ----- */
.section-contrast {
  padding: 80px 0;
  background: var(--color-gray-bg);
}

.section-contrast__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contrast-table-scroll-hint {
  display: none;
  margin: 0;
  width: 100%;
  max-width: var(--inner-max);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #5a5a5a;
}

.contrast-table-scroll {
  width: 100%;
  max-width: var(--inner-max);
}

.contrast-table {
  --contrast-table-line: #b3b3b3;
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1.45fr) minmax(0, 1.45fr);
  width: 100%;
  border: 2px solid #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
  background: var(--color-white);
}

.contrast-table__row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  border-bottom: 1px solid #028fd3;
}

.contrast-table__row:last-child {
  border-bottom: none;
}

.contrast-table__row--head .contrast-table__cell {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  padding: clamp(12px, 2.8vw, 20px);
}

.contrast-table__row--head .contrast-table__cell--label {
  font-size: 16px;
}

.contrast-table__row--head .contrast-table__cell--us,
.contrast-table__row--head .contrast-table__cell--other {
  font-size: 24px;
  line-height: 1.3;
}

.contrast-table__row--head .contrast-table__cell span {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.br-768,
.br-1000,
.br-500,
.br-480 {
  display: none;
}

.contrast-table__cell {
  padding: clamp(12px, 2.8vw, 20px);
  border-right: 1px solid var(--contrast-table-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1.6vw, 10px);
  text-align: center;
  background: var(--color-white);
}

.contrast-table__cell:last-child {
  border-right: none;
}

.contrast-table__cell--label {
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.contrast-table__nowrap {
  white-space: nowrap;
}

.contrast-table__cell--us strong,
.contrast-table__cell--us .contrast-table__highlight {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #e34343;
}

.contrast-table__cell--other strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #909090;
}

.contrast-table__note {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  white-space: normal;
  text-wrap: pretty;
}

.section-contrast__note {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}

/* ----- STRENGTH ----- */
.section-strength {
  padding: 80px 0;
}

.section-strength__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section-strength__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: var(--inner-max);
  margin: 0;
  padding: 0;
  list-style: none;
}

.strength-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strength-card__img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 20px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
}

.strength-card__title {
  align-self: stretch;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 33px;
  text-align: center;
}

.strength-card__text {
  align-self: stretch;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

/* ----- FAQ ----- */
.section-faq {
  padding: 80px 0;
  background: var(--color-gray-bg);
}

.section-faq__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.faq-list {
  width: 100%;
  max-width: var(--inner-max);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.faq-item__question {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: none;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-item__question:hover {
  filter: brightness(1.05);
}

.faq-item__q {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 600;
}

.faq-item__label {
  flex: 1;
}

.faq-item__label-note {
  font-weight: 400;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item__answer {
  padding: 20px;
}

.faq-item__answer p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

.faq-item__answer[hidden] {
  display: none;
}

/* ----- COMPANY ----- */
.section-company {
  padding: 80px 0;
}

.section-company__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.company-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  max-width: var(--inner-max);
}

.company-block__map {
  flex: 1 1 50%;
  min-height: 350px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.company-block__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

.company-table {
  flex: 1 1 50%;
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.company-table th,
.company-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  text-align: left;
}

.company-table th {
  width: 120px;
  font-weight: 600;
  color: var(--color-black);
}

.company-table td a {
  color: var(--color-black);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-table td a:hover {
  color: #005eab;
}

/* ----- コンタクト＋フッター ----- */
.section-contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 80px 0;
  width: 100%;
  background: var(--color-black);
  color: var(--color-white);
}

.section-contact__inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 50px;
}

.section-contact__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section-contact__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.section-contact__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 33px;
  text-align: center;
  color: var(--color-white);
}

.section-contact__eyebrow {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: var(--color-white);
}

.section-contact__sub {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
  color: var(--color-white);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 50px 0 0;
  border-top: 2px solid var(--color-white);
}

.site-footer__company {
  width: 234px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.site-footer__company-name {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 33px;
  text-align: left;
  color: var(--color-white);
}

.site-footer__company-tag {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: left;
  color: var(--color-white);
}

.site-footer__address {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
  color: var(--color-white);
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
  color: var(--color-white);
}

/* ----- レスポンシブ ----- */
@media (max-width: 1000px) {
  .br-1000 {
    display: block;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resolution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .profile-block {
    flex-direction: column;
    align-items: center;
  }

  .profile-block__photo {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .section-profile__watermark {
    font-size: clamp(32px, 9vw, 80px);
    letter-spacing: 0.1em;
  }

  .company-block {
    flex-direction: column;
  }

  .section-cta__headline--black {
    font-size: 32px;
  }

  .section-cta__headline--accent {
    font-size: 40px;
  }

  .section-contact__title {
    font-size: 26px;
  }

}

@media (max-width: 1250px) {
  .merit-row__head {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  .merit-row,
  .merit-row--reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .merit-row__img {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .merit-row__head {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .merit-row__num {
    font-size: 64px;
    line-height: 1;
  }
}

@media (max-width: 1080px) {
  .layout-root {
    padding-bottom: 48px;
  }

  .site-header__aside {
    display: none;
  }

  .site-header__tools {
    display: contents;
  }

  .site-header__cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header__cta-bar .site-header__cta-list {
    flex-direction: row;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .site-header__cta-bar .site-header__cta-list > li {
    flex: 1;
    min-width: 0;
  }

  .site-header__cta-bar .cta-button--header {
    width: 100%;
    border-radius: 0;
    padding: 14px 12px;
  }
}

@media (max-width: 768px) {
  .section-cta--light,
  .section-problems,
  .section-merits,
  .section-resolution,
  .section-contrast,
  .section-strength,
  .section-faq,
  .section-company,
  .section-contact {
    padding: 30px 0;
  }

  .section-profile {
    padding: 83px 0 30px;
  }

  .section-cta__inner,
  .section-problems__inner,
  .problem-grid,
  .section-merits__inner,
  .merit-list,
  .merit-row,
  .merit-row__body,
  .section-profile__inner,
  .profile-block,
  .section-resolution__inner,
  .resolution-grid,
  .section-contrast__inner,
  .section-strength__inner,
  .strength-grid,
  .section-faq__inner,
  .section-company__inner,
  .company-block,
  .section-contact__block {
    gap: 20px;
  }

  .section-profile__watermark {
    top: -8px;
  }

  .section-heading__title {
    font-size: 28px;
  }

  .merit-row__head {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .merit-row__badge {
    font-size: 20px;
  }

  :root {
    --scroll-margin-header: 72px;
  }

  .site-header__inner {
    padding: 12px 16px;
  }

  .section-cta__headline-row {
    display: block;
    text-align: center;
  }

  .section-cta__headline-row .section-cta__headline {
    display: inline;
  }

  .section-cta__actions {
    flex-direction: column;
    max-width: 334px;
    width: 100%;
  }

  .cta-button {
    width: 100%;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }

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

  .contrast-table-scroll-hint {
    display: block;
    max-width: 100%;
  }

  .contrast-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .br-768 {
    display: block;
  }

  .contrast-table {
    width: max-content;
    min-width: 100%;
    grid-template-columns: minmax(0, max-content) minmax(11rem, 1fr) minmax(11rem, 1fr);
  }

  .contrast-table__row--head .contrast-table__cell--us,
  .contrast-table__row--head .contrast-table__cell--other {
    font-size: clamp(18px, 4.2vw, 24px);
  }

  .contrast-table__row--head .contrast-table__cell span {
    font-size: clamp(13px, 3.2vw, 16px);
  }

  .contrast-table__cell--us strong,
  .contrast-table__cell--us .contrast-table__highlight {
    font-size: clamp(18px, 4.5vw, 26px);
  }

  .contrast-table__cell--other strong {
    font-size: clamp(16px, 3.8vw, 20px);
  }

  .contrast-table__note {
    font-size: clamp(13px, 3.2vw, 16px);
  }

  .contrast-table__cell--label {
    font-size: clamp(14px, 3.2vw, 16px);
  }

  .section-contrast__note {
    font-size: 16px;
  }

  .section-problems__closing {
    display: block;
    text-align: center;
    font-size: 24px;
  }

  .section-problems__closing span {
    display: inline;
  }

  .company-table tr {
    display: block;
    border-bottom: 1px solid var(--color-border);
  }

  .company-table tr:last-child {
    border-bottom: none;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: none;
  }

  .company-table th {
    padding-top: 16px;
    padding-bottom: 8px;
  }

  .company-table td {
    padding-bottom: 16px;
  }

  .company-table tr:first-child th {
    padding-top: 0;
  }
}

@media (max-width: 500px) {
  .br-500 {
    display: block;
  }
}

@media (max-width: 410px) {
  .merit-row__badge-row {
    flex-direction: column;
  }

  .merit-row__badge-row .merit-row__badge {
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  :root {
    --scroll-margin-header: 64px;
  }

  .br-480 {
    display: block;
  }

  .section-heading__title {
    font-size: 24px;
  }

  .section-problems__closing {
    font-size: 22px;
  }

  .section-profile {
    padding: 60px 0 30px;
  }

  .section-profile__watermark {
    top: -11px;
  }

  .resolution-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-strength__title {
    font-size: 24px;
    line-height: 1.35;
  }

  .section-cta__headline--black {
    font-size: 26px;
  }

  .section-cta__headline--accent {
    font-size: 32px;
  }

  .merit-row__badge {
    font-size: 18px;
    line-height: 1.5;
    padding: 4px 12px;
  }

  .merit-row__num {
    font-size: 48px;
    line-height: 1;
  }

  .section-contact__title {
    font-size: 22px;
    line-height: 1.35;
  }

  .site-footer__company-name {
    font-size: 22px;
  }

  .site-header__logo-main {
    font-size: 18px;
    line-height: 1.3;
  }

  .site-header__logo-sub {
    font-size: 10px;
  }

  .contrast-table-scroll-hint {
    font-size: 13px;
  }

  .contrast-table {
    grid-template-columns: minmax(0, max-content) minmax(9.5rem, 1fr) minmax(9.5rem, 1fr);
  }
}

/* 横並びのときだけ、隣り合う帯の間の余白をなくす */
@media (min-width: 411px) {
  .merit-row__badge-row:not(:only-child) .merit-row__badge:first-child {
    padding-right: 0;
  }

  .merit-row__badge-row .merit-row__badge:last-child {
    padding-left: 0;
  }
}
