:root {
  --color-bg: #fff8ef;
  --color-bg-soft: #fff2df;
  --color-surface: #fffdf9;
  --color-primary: #ef8f6f;
  --color-primary-dark: #c7654d;
  --color-secondary: #62b9a7;
  --color-secondary-dark: #337f73;
  --color-accent: #f6ca67;
  --color-ink: #332d29;
  --color-muted: #70655d;
  --color-line: #eadbc9;
  --shadow-soft: 0 18px 50px rgba(93, 67, 46, 0.12);
  --shadow-card: 0 10px 30px rgba(93, 67, 46, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1120px, calc(100% - 48px));
  --header-height: 86px;
  --font-sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--font-sans);
  line-height: 1.85;
  color: var(--color-ink);
  letter-spacing: 0.02em;
  background: radial-gradient(circle at 8% 4%, rgba(246, 202, 103, 0.3), transparent 24rem), radial-gradient(circle at 92% 10%, rgba(98, 185, 167, 0.18), transparent 22rem), var(--color-bg);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1.2em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

ul,
ol,
dl {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--color-ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 100;
  padding: 10px 30px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 16px 40px rgba(31, 80, 73, 0.12);
  backdrop-filter: blur(16px);
}

.page-home {
  & .site-header {
    position: fixed;
    top: 0;
    left: 0;
    background: none;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    transition:
      color 0.25s ease,
      background 0.25s ease,
      box-shadow 0.25s ease,
      min-height 0.25s ease,
      padding 0.25s ease;
  }
  & .site-header.is-scrolled {
    position: fixed;
    background: rgba(255, 253, 249, 0.9);
    box-shadow: 0 16px 40px rgba(31, 80, 73, 0.12);
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 15px;
  }
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(239, 143, 111, 0.28);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
  position: absolute;
  content: "";
  background: #fff;
}

.brand-mark::before,
.brand-mark::after {
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.brand-mark::before {
  left: 16px;
}

.brand-mark::after {
  right: 16px;
}

.brand-mark span::before {
  top: 27px;
  left: 50%;
  width: 22px;
  height: 10px;
  background: transparent;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 20px 20px;
  transform: translate(-50%);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-secondary-dark);
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.global-nav {
  display: flex;
  flex-shrink: 0;
  gap: 18px;
  align-items: center;
  margin-left: auto;
}

.global-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-muted);
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.global-nav a:hover,
.global-nav a:focus-visible,
.global-nav a.is-active {
  color: var(--color-primary-dark);
  background: #fff2e7;
}

.global-nav a:hover {
  transform: translateY(-1px);
}

.nav-contact {
  padding: 18px 25px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-primary), #f4ad82) !important;
  box-shadow: 0 8px 22px rgba(51, 45, 41, 0.18);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 48px;
  aspect-ratio: 1;
  background: #fff3e8;
  border: 0;
  border-radius: 16px;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}
.menu-toggle span:nth-child(2) {
  top: 23px;
}
.menu-toggle span:nth-child(3) {
  top: 30px;
}

body.is-menu-open .menu-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

body.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .menu-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #f4ad82);
  box-shadow: 0 12px 26px rgba(239, 143, 111, 0.32);
}

.button--ghost {
  color: var(--color-ink);
  background: #fff;
  border-color: var(--color-line);
  box-shadow: var(--shadow-card);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  color: var(--color-secondary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link::after {
  text-decoration: none;
  content: "→";
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section {
  padding: 92px 0;
}

.intro {
  background: linear-gradient(135deg, rgba(239, 143, 111, 0.16), rgba(246, 202, 103, 0.18));
}

.section--cream {
  background: rgba(255, 242, 223, 0.62);
}

.section--mint {
  background: radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.72), transparent 16rem), linear-gradient(135deg, rgba(98, 185, 167, 0.18), rgba(246, 202, 103, 0.18));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
}

.section-heading p:not(.eyebrow) {
  font-weight: 600;
  color: var(--color-muted);
}

.section-heading-row {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}

.split--center {
  align-items: center;
}

.visual-card,
.illustration-panel,
.lead-box,
.form-card,
.contact-side,
.facility-card,
.news-detail__inner {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(234, 219, 201, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.visual-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* min-height: 360px; */
  padding: 42px;
  overflow: hidden;
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* .visual-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 180px;
  aspect-ratio: 1;
  content: "";
  background: rgba(246, 202, 103, 0.26);
  border-radius: 50%;
} */

.visual-card--green::after {
  background: rgba(98, 185, 167, 0.24);
}

.visual-card__icon {
  margin-bottom: 22px;
  font-size: 4rem;
}

.visual-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.visual-card p {
  font-weight: 600;
  color: var(--color-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 230px;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  & img {
    width: auto;
    height: 7.5rem;
    margin: 0 auto;
  }
}

.feature-card span,
.process-grid span,
.remote-grid span,
.schedule-points span,
.flow-list span,
.step-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 30px;
  padding: 0 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  background: #fff2e7;
  border-radius: 999px;
}

.feature-card h3,
.process-grid h3,
.remote-grid h2,
.schedule-points h3,
.info-cards h3,
.work-list h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.feature-card p,
.process-grid p,
.remote-grid p,
.schedule-points p,
.info-cards p,
.work-list p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-muted);
}

.section-actions {
  margin-top: 34px;
  text-align: center;
}

.work-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.work-list > div,
.info-cards > div {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.illustration-panel {
  display: grid;
  place-items: center;
  aspect-ratio: 1.32;
  padding: 36px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 223, 0.72));
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.illustration-panel--remote {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(218, 241, 236, 0.76));
}

.home-flow {
  display: grid;
  gap: 16px;
}

.home-flow div {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.home-flow span {
  min-width: 78px;
  font-weight: 900;
  color: var(--color-secondary-dark);
}

.home-flow p {
  margin: 0;
  font-weight: 800;
}

.news-list--cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card a {
  display: block;
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.news-card a:hover,
.news-card a:focus-visible,
.news-row a:hover,
.news-row a:focus-visible {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.news-card p:first-child,
.news-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-muted);
}

.news-card span,
.news-row__meta span,
.news-detail__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  font-size: 0.78rem;
  color: var(--color-secondary-dark);
  background: #e8f5f2;
  border-radius: 999px;
}

.news-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.news-card p:last-child {
  font-size: 0.94rem;
  color: var(--color-muted);
}

.page-hero {
  padding: 74px 0 70px;
  background: radial-gradient(circle at 18% 10%, rgba(246, 202, 103, 0.22), transparent 16rem), radial-gradient(circle at 84% 30%, rgba(98, 185, 167, 0.16), transparent 18rem), linear-gradient(180deg, rgba(255, 253, 249, 0.82), rgba(255, 248, 239, 0.4));
  border-bottom: 1px solid rgba(234, 219, 201, 0.75);
}

.page-hero__inner {
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
}

.page-hero__lead {
  max-width: 760px;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--color-muted);
}

.feature-detail-list {
  display: grid;
  gap: 26px;
}

.feature-detail {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 150px;
  gap: 26px;
  align-items: center;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.feature-detail__number {
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 24px;
}

.feature-detail__body h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
}

.feature-detail__body p {
  font-weight: 600;
  color: var(--color-muted);
}

.feature-detail__visual {
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  padding: 15px;
  font-size: 3.1rem;
  background: #fff7ec;
  border-radius: 38px;
}

@media (max-width: 768px) {
  .feature-detail__visual img {
    width: auto;
    height: 7.5rem;
  }
}

.lead-box {
  padding: 30px;
  margin-bottom: 34px;
  & p {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}

.lead-box p:last-child {
  margin-bottom: 0;
}

.lead-box--center {
  max-width: 820px;
  text-align: center;
}

.lead-box--center h2 {
  margin-bottom: 16px;
}

.lead-box--center .button {
  margin-top: 18px;
}

.process-grid,
.remote-grid,
.schedule-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-grid article,
.remote-grid article,
.schedule-points article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.info-cards {
  display: grid;
  gap: 18px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.course-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.course-card::before {
  position: absolute;
  top: -46px;
  right: -46px;
  width: 140px;
  aspect-ratio: 1;
  content: "";
  background: rgba(239, 143, 111, 0.16);
  border-radius: 50%;
}

.course-card--green::before {
  background: rgba(98, 185, 167, 0.18);
}

.course-card__label {
  display: inline-flex;
  padding: 5px 12px;
  margin-bottom: 18px;
  font-weight: 900;
  color: var(--color-primary-dark);
  background: #fff2e7;
  border-radius: 999px;
}

.course-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.course-card p,
.course-card dd {
  font-weight: 600;
  color: var(--color-muted);
}

.course-card dt {
  margin-top: 22px;
  font-weight: 900;
}

.step-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-line > div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.fee-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

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

.fee-table thead th {
  color: var(--color-primary-dark);
  background: #fff2e7;
}

.fee-table tbody th {
  width: 140px;
  color: var(--color-secondary-dark);
}

.note {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.note-list {
  padding-left: 1rem;
  & li {
    display: flex;
    gap: 1rem;
    counter-increment: note;
    &::before {
      content: "※" counter(note) " ";
    }
  }
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 52px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  aspect-ratio: 1;
  font-size: 0.86rem;
  color: #fff;
  content: "✓";
  background: var(--color-secondary);
  border-radius: 50%;
}

.flow-list {
  display: grid;
  gap: 18px;
  counter-reset: flow;
}

.flow-list article {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: 750px;
  padding: 26px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.flow-list h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.flow-list p {
  font-weight: 600;
  color: var(--color-muted);
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.facility-card {
  padding: 28px;
}

.facility-card--wide {
  grid-row: span 2;
  grid-column: span 2;
}

.facility-card__icon {
  display: block;
  margin-bottom: 18px;
  font-size: 2.8rem;
}

.facility-card h2,
.facility-card h3 {
  margin-bottom: 14px;
}

.facility-card p,
.info-list dd {
  font-weight: 600;
  color: var(--color-muted);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.info-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--color-line);
}

.info-list dt {
  font-weight: 900;
  color: var(--color-secondary-dark);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  text-align: center;
  background: linear-gradient(90deg, rgba(239, 143, 111, 0.12) 1px, transparent 1px), linear-gradient(rgba(98, 185, 167, 0.14) 1px, transparent 1px), #fffdf9;
  background-size: 42px 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.map-placeholder div {
  display: grid;
  place-items: center;
  width: min(280px, 76%);
  aspect-ratio: 1.15;
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  box-shadow: var(--shadow-card);
}

.map-placeholder span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary-dark);
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.timeline-time {
  display: grid;
  place-items: center;
  min-height: 120px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--color-secondary), #8fd7c8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.timeline-body {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.timeline-list {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
}

@media (max-width: 1180px) {
  .timeline-list {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.timeline-image {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1.5rem;
  width: 15rem;
  & img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
  }
}

@media (max-width: 1180px) {
  .timeline-image {
    flex-direction: row;
    width: 13rem;
  }
}

@media (max-width: 768px) {
  .timeline-image {
    width: 100%;
  }
  .timeline-image--01 {
    & img {
      width: calc(50% - 0.75rem);
      height: 30vw;
    }
  }
}

.timeline-box {
  padding: 30px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(234, 219, 201, 0.9);
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .timeline-box {
    padding: 20px;
  }
}

.timeline-body h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.timeline-body p {
  font-weight: 600;
  color: var(--color-muted);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-side,
.form-card {
  padding: 30px;
}

.contact-side {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-side h2 {
  margin-bottom: 12px;
}

.contact-side p {
  font-weight: 600;
  color: var(--color-muted);
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
}

.contact-method span {
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--color-secondary-dark);
}

.contact-method a {
  font-size: 1.08rem;
  font-weight: 900;
}

.form-message {
  padding: 18px;
  margin-bottom: 24px;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.form-message--success {
  color: var(--color-secondary-dark);
  background: #e8f5f2;
}

.form-message--error {
  color: var(--color-primary-dark);
  background: #fff0ed;
}

.form-message ul {
  padding-left: 1.2em;
  margin-top: 8px;
}

.form-message li {
  list-style: disc;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  border: 0;
}

.form-row label,
.form-row legend {
  font-weight: 900;
}

.form-row label span,
.form-row legend span {
  display: inline-flex;
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 0.75rem;
  color: var(--color-primary-dark);
  background: #fff2e7;
  border-radius: 999px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(98, 185, 167, 0.18);
}

.form-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.form-radio legend {
  flex-basis: 100%;
}

.form-radio label,
.privacy-check {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
}

.privacy-box {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.privacy-box summary {
  font-weight: 900;
  cursor: pointer;
}

.privacy-box div {
  padding-top: 14px;
  font-size: 0.94rem;
  color: var(--color-muted);
}

.hp-field {
  display: none;
}

.news-index {
  display: grid;
  gap: 18px;
}

.news-row a {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.news-row__meta {
  display: grid;
  gap: 12px;
  align-content: start;
  font-weight: 900;
  color: var(--color-muted);
}

.news-row h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.news-row p {
  font-weight: 600;
  color: var(--color-muted);
}

.news-detail {
  padding: 72px 0 30px;
}

.news-detail__inner {
  max-width: 880px;
  padding: 48px;
}

.news-detail h1 {
  margin-bottom: 28px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
}

.news-detail__body {
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--color-muted);
}

.news-detail__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.contact-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(239, 143, 111, 0.16), rgba(246, 202, 103, 0.18));
}

.contact-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 38px;
  align-items: center;
  padding: 42px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.contact-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 500;
}

.contact-cta p:not(.eyebrow) {
  font-weight: 600;
  color: var(--color-muted);
}

.contact-cta__actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 58px 0 28px;
  color: #fff8ef;
  background: #3b312b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.8fr) minmax(240px, 0.8fr);
  gap: 48px;
}

.brand--footer .brand-text span,
.brand--footer .brand-text strong {
  color: #fff;
}

.footer-brand p,
.footer-note p,
.footer-nav a,
.footer-bottom {
  color: rgba(255, 248, 239, 0.78);
}

.footer-brand p {
  margin-top: 20px;
}

.footer-title {
  margin: 0 0 16px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav ul {
  display: grid;
  gap: 8px;
}

.footer-nav a:hover,
.footer-note a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 248, 239, 0.18);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  gap: 8px;
}

.floating-contact a {
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 46px;
  font-weight: 400;
  color: #fff;
  background: var(--color-ink);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1180px) {
  .global-nav a {
    padding-inline: 9px;
    font-size: 0.8rem;
  }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    flex: 0 0 auto;
  }

  .global-nav {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    right: 16px;
    left: 16px;
    display: grid;
    visibility: hidden;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid var(--color-line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  body.is-menu-open .global-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .global-nav a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .split,
  .contact-layout,
  .contact-cta__box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid,
  .remote-grid,
  .schedule-points,
  .step-line,
  .news-list--cards,
  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-card--wide {
    grid-column: span 2;
  }

  .contact-side {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - clamp(20px, 6vw, 34px), 1120px);
    --header-height: clamp(70px, 18vw, 80px);
  }

  html {
    font-size: clamp(14px, 3.75vw, 16px);
  }

  body {
    line-height: 1.78;
  }

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

  .header-inner {
    gap: clamp(10px, 3vw, 18px);
    min-height: var(--header-height);
  }

  .brand {
    gap: clamp(8px, 2.6vw, 12px);
    min-width: 0;
  }

  .brand-mark {
    width: clamp(42px, 12vw, 50px);
    border-radius: clamp(14px, 4vw, 18px);
  }

  .brand-text strong {
    font-size: clamp(0.76rem, 3.1vw, 0.95rem);
  }

  .brand-text span {
    font-size: clamp(0.62rem, 2.4vw, 0.72rem);
  }

  .menu-toggle {
    width: clamp(42px, 12vw, 48px);
    border-radius: clamp(13px, 4vw, 16px);
  }

  .global-nav {
    top: calc(var(--header-height) + 6px);
    right: clamp(10px, 4vw, 18px);
    left: clamp(10px, 4vw, 18px);
    padding: clamp(14px, 4vw, 18px);
  }

  .global-nav ul {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero,
  .news-detail,
  .contact-cta,
  .site-footer {
    padding-top: clamp(48px, 13vw, 76px);
    padding-bottom: clamp(48px, 13vw, 76px);
  }

  .page-hero__lead {
    font-size: clamp(0.96rem, 4vw, 1.06rem);
  }

  .news-detail__nav {
    gap: clamp(10px, 3vw, 14px);
  }

  .button {
    /* width: 100%; */
    min-height: clamp(48px, 13vw, 54px);
    padding-inline: clamp(18px, 5vw, 24px);
  }

  .illustration-panel,
  .map-placeholder {
    width: 100%;
    /* aspect-ratio: 1.18; */
    padding: clamp(18px, 6vw, 30px);
    border-radius: clamp(22px, 8vw, 34px);
  }

  .lead-box,
  .form-card,
  .contact-side,
  .facility-card,
  .news-detail__inner,
  .contact-cta__box {
    padding: clamp(22px, 6.5vw, 34px);
    border-radius: clamp(22px, 7vw, 34px);
  }

  .visual-card {
    padding: clamp(22px, 6.5vw, 34px);
    border-radius: clamp(22px, 7vw, 34px);
  }

  .section-heading {
    margin-bottom: clamp(24px, 7vw, 34px);
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: clamp(1.65rem, 8vw, 1.9rem);
  }

  .section-heading-row {
    display: grid;
    gap: clamp(12px, 4vw, 18px);
    margin-bottom: clamp(24px, 7vw, 34px);
  }

  .feature-grid,
  .process-grid,
  .remote-grid,
  .schedule-points,
  .course-grid,
  .step-line,
  .news-list--cards,
  .facility-grid {
    grid-template-columns: 1fr;
    gap: clamp(14px, 4vw, 20px);
  }

  .feature-card,
  .process-grid article,
  .remote-grid article,
  .schedule-points article,
  .course-card,
  .work-list > div,
  .info-cards > div,
  .flow-list article,
  .timeline-body,
  .news-row a {
    padding: clamp(20px, 6vw, 28px);
    border-radius: clamp(18px, 5.5vw, 24px);
  }

  .feature-detail {
    grid-template-columns: 1fr;
    gap: clamp(16px, 5vw, 24px);
    padding: clamp(22px, 6vw, 30px);
  }

  .feature-detail__number {
    width: clamp(58px, 16vw, 70px);
    border-radius: clamp(18px, 5vw, 24px);
  }

  .feature-detail__visual {
    width: 100%;
    aspect-ratio: 2.8;
    border-radius: clamp(18px, 6vw, 30px);
  }

  .flow-list article,
  .timeline-item,
  .news-row a,
  .info-list div {
    grid-template-columns: 1fr;
    gap: clamp(12px, 4vw, 18px);
  }

  .timeline-time {
    min-height: clamp(70px, 20vw, 96px);
  }

  .facility-card--wide {
    grid-column: span 1;
  }

  .table-wrap {
    margin-inline: calc(clamp(20px, 6vw, 34px) * -1);
    border-radius: 0;
  }

  .fee-table th,
  .fee-table td {
    padding: clamp(12px, 4vw, 18px);
  }

  .form-radio {
    display: grid;
  }

  .footer-bottom {
    display: grid;
    gap: clamp(10px, 3vw, 18px);
  }

  .floating-contact {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
  counter-reset: contact-step;
}

.contact-steps li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  font-weight: 900;
  color: var(--color-muted);
  background: #fff7ec;
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.contact-steps li::before {
  margin-right: 4px;
  color: var(--color-primary-dark);
  content: counter(contact-step) ".";
  counter-increment: contact-step;
}

.contact-steps li.is-current {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #f4ad82);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(239, 143, 111, 0.2);
}

.contact-steps li.is-current::before {
  color: #fff;
}

.confirm-box {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.confirm-list {
  display: grid;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  border-bottom: 1px solid var(--color-line);
}

.confirm-list div:last-child {
  border-bottom: 0;
}

.confirm-list dt,
.confirm-list dd {
  padding: 18px 20px;
  margin: 0;
}

.confirm-list dt {
  font-weight: 900;
  color: var(--color-secondary-dark);
  background: #fff7ec;
}

.confirm-list dd {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.muted-text {
  font-weight: 600;
  color: var(--color-muted);
}

.confirm-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.confirm-actions form {
  margin: 0;
}

.confirm-actions .button {
  width: 100%;
}

.complete-layout {
  max-width: 820px;
}

.complete-card {
  padding: 46px;
  text-align: center;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(234, 219, 201, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.complete-icon {
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  margin: 10px auto 24px;
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--color-secondary), #8fd7c8);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(98, 185, 167, 0.24);
}

.complete-icon--error {
  background: linear-gradient(135deg, var(--color-primary), #f4ad82);
  box-shadow: 0 12px 28px rgba(239, 143, 111, 0.24);
}

.complete-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.complete-card p {
  font-weight: 600;
  color: var(--color-muted);
}

.complete-card code {
  padding: 2px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  color: var(--color-primary-dark);
  background: #fff2e7;
  border-radius: 8px;
}

.complete-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 28px 0 22px;
}

.complete-contact .button {
  width: auto;
}

@media (max-width: 768px) {
  .contact-steps {
    gap: clamp(6px, 2vw, 10px);
    margin-bottom: clamp(22px, 6vw, 28px);
  }

  .contact-steps li {
    min-height: clamp(40px, 12vw, 46px);
    font-size: clamp(0.78rem, 3.3vw, 0.95rem);
  }

  .confirm-list div {
    grid-template-columns: 1fr;
  }

  .confirm-list dt,
  .confirm-list dd {
    padding: clamp(13px, 4vw, 18px);
  }

  .confirm-list dd {
    padding-top: 0;
  }

  .confirm-actions {
    grid-template-columns: 1fr;
  }

  .complete-card {
    padding: clamp(24px, 7vw, 38px);
    border-radius: clamp(22px, 7vw, 34px);
  }

  .complete-icon {
    width: clamp(66px, 20vw, 82px);
  }

  .complete-contact {
    display: grid;
  }

  .complete-contact .button {
    width: 100%;
  }
}

@keyframes scroll-btn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

.hero__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-secondary);
  letter-spacing: 0.1rem;
  & .arrow-bottom {
    height: 0.5rem;
    animation: scroll-btn 2s infinite;
  }
  & .arrow-bottom01 {
    animation-delay: 0s;
  }
  & .arrow-bottom02 {
    animation-delay: 0.15s;
  }
  & .arrow-bottom03 {
    margin-bottom: 0.75rem;
    animation-delay: 0.3s;
  }
  & i {
    font-size: 1.25rem;
  }
}

.pcmode {
  display: block;
}

.spmode {
  display: none;
}

@media (max-width: 768px) {
  .pcmode {
    display: none;
  }
  .spmode {
    display: block;
  }
}

/* First View -------------------------------------------------- */
.first-view {
  position: relative;
  min-height: 900px;
  padding: 130px clamp(20px, 4vw, 64px) clamp(50px, 8vw, 30px);
  overflow: hidden;
  background: radial-gradient(circle at 8% 4%, rgba(246, 202, 103, 0.3), transparent 24rem), #fff8ef;
}

.first-view::before,
.first-view::after {
  position: absolute;
  pointer-events: none;
  content: "";
  border-radius: 999px;
}

.first-view::before {
  top: 72px;
  right: -160px;
  width: 420px;
  aspect-ratio: 1;
  background: rgba(246, 202, 103, 0.22);
}

.first-view::after {
  bottom: 100px;
  left: -90px;
  width: 270px;
  aspect-ratio: 1;
  background: rgba(98, 185, 167, 0.22);
}

.first-view__inner {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  margin-inline: auto;
}

.hero-photos {
  position: relative;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: clamp(330px, 34vw, 390px);
  margin: 0 auto;
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: clamp(22px, 2vw, 34px);
  box-shadow: var(--shadow);
}

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

.hero-photo--left,
.hero-photo--center,
.hero-photo--right {
  aspect-ratio: 4 / 3;
}

.hero-photo--left {
  z-index: 1;
  width: min(30vw, 430px);
  /* height: 290px; */
  transform: rotate(-9deg) translateY(38px);
}

.hero-photo--center {
  z-index: 3;
  width: min(33vw, 476px);
  /* height: 330px; */
  transform: translateY(-8px);
}

.hero-photo--right {
  z-index: 2;
  width: min(30vw, 430px);
  /* height: 290px; */
  transform: rotate(8deg) translateY(34px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  /* max-width: 850px; */
  margin: 0 auto 0;
  text-align: center;
}

.hero-copy__label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  margin: 0 5px 20px;
  font-weight: 700;
  color: var(--color-secondary-dark);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.hero-copy__open {
  color: #fff;
  background: var(--color-secondary-dark);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-copy h2 {
  display: inline-block;
  padding: 0.5rem 2rem;
  margin: 0;
  margin-top: 1rem;
  font-size: clamp(18px, 4vw, 23px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  background: var(--color-primary);
}

.hero-copy__lead {
  margin: clamp(16px, 2vw, 26px) auto 0;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 2;
  color: #515151;
}

/* .work-feature-list {
  display: flex;
  gap: clamp(18px, 2.8vw, 36px);
  align-items: center;
  justify-content: center;
  width: min(760px, 100%);
  padding: 0;
  margin: clamp(24px, 3vw, 38px) auto 0;
  list-style: none;
} */

.work-feature-list__item {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: clamp(70px, 10vw, 120px);
  aspect-ratio: 1;
  font-size: clamp(8px, 1.2vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  color: #936c31;
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-accent);
  border-radius: 50%;
}

.work-feature-list__item span {
  display: inline-block;
  padding-inline: 0.5em;
}

@media (max-width: 768px) {
  .first-view {
    min-height: auto;
    padding: 110px clamp(14px, 4.2vw, 24px) 4rem;
  }

  .hero-photos {
    display: block;
    width: 100%;
    min-height: clamp(500px, 88vw, 560px);
  }

  .hero-photo {
    border-radius: clamp(16px, 5.2vw, 25px);
  }

  .hero-photo--center {
    position: absolute;
    top: 0;
    left: 50%;
    width: clamp(220px, 74vw, 400px);
    transform: translateX(-50%) rotate(0deg);
  }

  .hero-photo--left {
    position: absolute;
    top: clamp(120px, 35vw, 225px);
    left: clamp(-6px, -1.5vw, 0px);
    width: clamp(150px, 46vw, 258px);
    transform: rotate(-8deg) translateY(75px);
  }

  .hero-photo--right {
    position: absolute;
    top: clamp(134px, 38vw, 250px);
    right: clamp(-6px, -1.5vw, 0px);
    width: clamp(150px, 46vw, 258px);
    transform: rotate(8deg) translateY(75px);
  }

  .hero-copy {
    padding-inline: clamp(2px, 1vw, 8px);
  }

  .hero-copy__label {
    margin-bottom: clamp(10px, 3.3vw, 16px);
    font-size: clamp(12px, 3.5vw, 14px) !important;
  }

  .hero-copy h1 {
    font-size: 7.5vw;
  }

  .hero-copy__lead {
    margin-top: clamp(14px, 4vw, 22px);
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.9;
    text-align: left;
  }

  .hero-copy__open {
    padding: clamp(7px, 2vw, 9px) clamp(16px, 5vw, 22px);
    margin-bottom: clamp(9px, 3vw, 13px);
    font-size: clamp(13px, 4vw, 16px);
  }

  .work-feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 2.8vw, 14px);
    width: min(100%, 520px);
    margin-top: clamp(22px, 6vw, 32px);
  }

  .work-feature-list__item {
    top: 0.5rem;
    left: 0.5rem;
    width: 100px;
    font-size: 12px;
    letter-spacing: 0.01em;
    /* border-width: 1px; */
  }

  .work-feature-list__item span {
    padding-inline: clamp(2px, 1vw, 5px);
  }
}

@media (max-width: 420px) {
  .first-view {
    padding-inline: 12px;
  }

  .hero-photos {
    min-height: clamp(420px, 92vw, 500px);
  }

  .hero-photo--left,
  .hero-photo--right {
    top: clamp(124px, 39vw, 170px);
    width: clamp(138px, 47vw, 190px);
  }

  .work-feature-list {
    gap: 7px;
  }

  .work-feature-list__item {
    font-size: clamp(10px, 3.1vw, 12px);
  }
}

@media (max-width: 375px) {
  .hero-photos {
    min-height: 320px;
  }
  .hero-photo--left,
  .hero-photo--right {
    top: 110px;
  }
  .work-feature-list__item {
    width: 65px;
    font-size: 8px;
  }
}
