:root {
  --fitpass-navy: #17213c;
  --fitpass-blue: #1c4f86;
  --fitpass-link: #1678b8;
  --text: #222;
  --muted: #666;
  --line: #dddddd;
  --soft: #f6f8fb;
  --danger: #b23b3b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: var(--fitpass-navy);
  text-decoration: none;
}

.wrap {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--fitpass-navy);
  background: var(--fitpass-navy);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
}

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

.brand img {
  width: 190px;
  height: auto;
  display: block;
}

.brand .fitpass-icon {
  width: 43px;
  height: auto;
  margin-left: 2px;
  margin-right: -9px;
}

.brand span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 27px;
  line-height: 1;
}

.brand strong {
  color: #ffffff;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover {
  color: #ffffff;
}

.topbar nav a {
  color: rgba(255, 255, 255, 0.78);
}

.intro {
  max-width: none;
  padding: 46px 0 34px;
}

.intro p {
  max-width: 1180px;
}

.meta {
  margin: 0 0 10px;
  color: var(--fitpass-link);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--fitpass-navy);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
}

h2 {
  margin-bottom: 18px;
  color: var(--fitpass-navy);
  font-size: 24px;
  font-weight: 600;
}

h3 {
  margin-bottom: 8px;
  color: var(--fitpass-navy);
  font-size: 17px;
  font-weight: 600;
}

.intro p,
.faq p,
.notice p,
.notice li {
  color: #444;
}

.panel {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
}

form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 6px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 41px;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
  background: var(--soft);
  color: #222;
  padding: 0 10px;
  outline: none;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--fitpass-navy) 50%),
    linear-gradient(135deg, var(--fitpass-navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 12px) 18px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 38px;
}

input[type="file"] {
  padding: 8px 10px;
}

input:focus,
select:focus {
  border-color: var(--fitpass-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(28, 79, 134, 0.12);
}

.check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #444;
  font-weight: 400;
}

.check input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 3px;
  accent-color: var(--fitpass-navy);
}

button {
  width: fit-content;
  min-height: 42px;
  border: 0;
  border-radius: 0;
  background: var(--fitpass-navy);
  color: #fff;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  background: #0f172c;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--fitpass-blue);
  font-size: 13px;
  font-weight: 700;
}

.fineprint {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  padding: 36px 0 60px;
}

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

.section-copy {
  max-width: none;
  margin-bottom: 22px;
  color: #444;
}

.section-copy a {
  color: var(--fitpass-link);
  font-weight: 700;
}

.info-card {
  display: block;
  color: inherit;
}

.faq article,
.info-card {
  overflow: hidden;
  border-top: 3px solid var(--fitpass-navy);
  background: var(--soft);
}

.faq article img,
.info-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faq article h3,
.faq article p,
.info-card h3,
.info-card p {
  padding-right: 18px;
  padding-left: 18px;
}

.faq article h3,
.info-card h3 {
  margin-top: 16px;
}

.faq article p,
.info-card p {
  padding-bottom: 18px;
}

.info-card:hover h3 {
  color: var(--fitpass-link);
}

.training {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
}

.notice {
  width: min(760px, 100%);
}

.notice .brand {
  margin-bottom: 34px;
}

.warning {
  color: var(--danger);
}

.notice ul {
  margin: 0 0 22px;
  padding-left: 20px;
}

.benefit-page {
  padding-bottom: 60px;
}

.benefit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 40px;
  align-items: center;
  padding: 46px 0 28px;
}

.benefit-copy {
  max-width: 760px;
}

.benefit-hero p {
  color: #444;
  font-size: 17px;
  max-width: 820px;
}

.benefit-hero img,
.wide-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.benefit-hero img {
  border: 1px solid var(--line);
}

.primary-link {
  display: inline-block;
  margin-top: 10px;
  background: var(--fitpass-navy);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
}

.primary-link:hover {
  background: #0f172c;
}

.benefit-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  margin: 8px 0 32px;
  background: #fff;
}

.benefit-summary article {
  padding: 22px;
}

.benefit-summary article + article {
  border-left: 1px solid var(--line);
}

.benefit-summary span {
  display: block;
  margin-bottom: 14px;
  color: var(--fitpass-link);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.benefit-summary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fitpass-navy);
  font-size: 20px;
}

.benefit-summary p {
  margin-bottom: 0;
  color: #444;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 32px;
}

.detail-grid article,
.steps,
.wide-card {
  border: 1px solid var(--line);
  background: #fff;
}

.detail-grid article {
  padding: 22px;
  border-top: 3px solid var(--fitpass-navy);
}

.detail-grid p,
.steps li,
.wide-card p {
  color: #444;
}

.steps {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  margin-bottom: 32px;
  background: var(--soft);
}

.step-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.step-list span {
  color: var(--fitpass-navy);
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

.step-list p {
  margin: 0;
}

.wide-card {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 0 32px 0 0;
  overflow: hidden;
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .brand img {
    width: 160px;
  }

  .brand .fitpass-icon {
    width: 36px;
    height: auto;
  }

  .brand strong {
    font-size: 27px;
  }

  h1 {
    font-size: 34px;
  }

  .row,
  .faq-grid,
  .benefit-hero,
  .benefit-summary,
  .detail-grid,
  .steps,
  .wide-card {
    grid-template-columns: 1fr;
  }

  .benefit-summary article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .wide-card {
    padding: 0 0 24px;
  }

  .wide-card div {
    padding: 0 24px;
  }
}
