:root {
  --text: rgba(255, 255, 255, 0.92);
  --subtext: rgba(255, 255, 255, 0.82);
  --panel: rgba(255, 255, 255, 0.92);
  --blue: #69a9e5;
  --phone: rgba(80, 80, 80, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  background: #dfeeff;
}

body {
  color: var(--text);
  background-image:
    linear-gradient(
      to bottom,
      rgba(120, 185, 245, 0.12) 0%,
      rgba(120, 185, 245, 0.02) 45%,
      rgba(255, 255, 255, 0) 70%
    ),
    url("top01.jpg");
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
}

.content {
  padding: 34px 20px 40px;
}

.company-name {
  margin: 0 0 42px;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.5;
  color: var(--text);
}

.info-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 8px;
  row-gap: 6px;
  max-width: 300px;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.12em;
  color: var(--subtext);
}

.label {
  white-space: nowrap;
}

.value {
  white-space: nowrap;
}

.section-title {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--subtext);
}

.business-text {
  max-width: 300px;
  margin: 0;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: var(--subtext);
}

.recruit-wrap {
  margin: 840px auto 40px;
  width: calc(100% - 40px);
  max-width: 540px;
}

.recruit-badge {
  width: 78%;
  margin: 0 auto -12px;
  padding: 16px 18px 14px;
  border-radius: 30px;
  background: var(--blue);
  text-align: center;
  color: #fff;
  font-size: 31px;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.contact-panel {
  background: var(--panel);
  border-radius: 28px;
  text-align: center;
  padding: 42px 20px 12px;
  color: var(--phone);
  min-height: 112px;
}

.contact-note {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.contact-phone {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1.3;
}

@media (min-width: 768px) {
  body {
    background-position: center 22%;
  }

  .content {
    padding: 36px 20px 48px;
  }

  .company-name {
    font-size: 26px;
    margin-bottom: 46px;
  }

  .info-grid,
  .business-text,
  .section-title {
    max-width: 420px;
  }

  .info-grid {
    grid-template-columns: 110px 1fr;
    font-size: 18px;
    row-gap: 10px;
  }

  .section-title,
  .business-text {
    font-size: 18px;
  }

  .recruit-wrap {
    margin: 720px auto 44px;
    max-width: 520px;
  }

  .recruit-badge {
    max-width: 410px;
    font-size: 44px;
    border-radius: 34px;
    padding: 20px 18px 18px;
  }

  .contact-panel {
    max-width: 520px;
    margin: 0 auto;
    min-height: 124px;
    padding-top: 50px;
  }

  .contact-note {
    font-size: 18px;
  }

  .contact-phone {
    font-size: 28px;
  }
}