:root {
  --navy: #07325d;
  --navy-deep: #031f3d;
  --blue: #0068b7;
  --green: #73b72b;
  --green-soft: #e8f4d5;
  --blue-soft: #e7f4fb;
  --paper: #f5f8fa;
  --paper-2: #fbfcfd;
  --ink: #081d34;
  --text: #445469;
  --line: #d9e0e7;
  --max: 1120px;
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(8,29,52,.08);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(3,31,61,.10);
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}

.logo-type {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .05em;
}

.logo-type em {
  margin-left: 7px;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.logo-recruit {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .34em;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.header-entry {
  display: grid;
  min-width: 126px;
  height: 52px;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 4px;
}

.menu-button {
  display: none;
  position: relative;
  z-index: 91;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 4px;
  background: var(--navy);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .25s, opacity .25s;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  padding: 110px 30px 40px;
  background: rgba(3,31,61,.96);
  color: #fff;
}

.drawer.is-open {
  display: block;
}

.drawer a {
  display: block;
  max-width: 620px;
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 22px;
  font-weight: 900;
}

.drawer a.drawer-entry {
  margin-top: 22px;
  padding: 18px 24px;
  background: var(--blue);
  border: 0;
  border-radius: 4px;
  text-align: center;
}

.kv {
  position: relative;
  padding-top: var(--header);
  background: var(--paper-2);
  overflow: hidden;
}

/* 写真の縦横比に下限(=1.38)を設定。
   広い画面では max-height に達し縦トリミング（全幅表示・没入感）、
   狭くすると横比が 1.38 を下回らないよう写真自体が縮小し、一番右の社員が切れない */
.kv-photo {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1.38;
  max-height: calc(100svh - var(--header));
}

.kv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,31,61,.86) 0%, rgba(3,31,61,.62) 16%, rgba(3,31,61,.16) 34%, rgba(3,31,61,0) 48%);
}

.kv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}

.kv-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 96px);
  right: clamp(24px, 7vw, 96px);
  bottom: clamp(56px, 9vh, 104px);
  width: min(820px, calc(100% - 48px));
}

.kv-copy p,
.kv-copy h1 span {
  opacity: 0;
  transform: translateY(28px);
  animation: kvIn .9s cubic-bezier(.22,.7,.3,1) forwards;
}

.kv-copy p { animation-delay: .15s; }
.kv-copy h1 span:nth-child(1) { animation-delay: .32s; }
.kv-copy h1 span:nth-child(2) { animation-delay: .48s; }
.kv-copy h1 span:nth-child(3) { animation-delay: .64s; }

@keyframes kvIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.kv-copy p {
  margin: 0 0 28px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.32);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.kv-copy h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 26px rgba(0,0,0,.38);
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: .02em;
}

.kv-copy h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.kv-scroll {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 132px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
}

.kv-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 72px;
  margin: 14px auto 0;
  background: #fff;
}

.intro {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  padding: 0 24px 86px;
}

.intro-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 48px;
  align-items: center;
  padding: 62px 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(115,183,43,.18) 0 4px, transparent 4px 100%),
    linear-gradient(135deg, var(--navy), #064a80);
  border-radius: 0;
  box-shadow: 0 28px 70px rgba(3,31,61,.18);
}

.intro-text p {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 800;
  line-height: 2.2;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.circle-link {
  width: 184px;
  height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.54);
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
  transition: background .2s, color .2s;
}

.circle-link::after {
  content: "↓";
  font-size: 18px;
  line-height: 1;
  transition: transform .25s;
}

.circle-link:hover {
  background: #fff;
  color: var(--navy);
}

.circle-link:hover::after {
  transform: translateY(5px);
}

.content-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), #fff 38%, var(--paper) 100%);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 46px;
  text-align: center;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
}

.section-heading h2 span {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.2;
  font-weight: 900;
}

.section-heading h2 em {
  display: block;
  margin-top: 6px;
  color: rgba(0,104,183,.12);
  font-size: clamp(40px, 7.4vw, 96px);
  line-height: .9;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
}

.anchor-list {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0 0 12px;
  list-style: none;
}

.anchor-list a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  transition: border-color .25s, color .25s;
}

.anchor-list a:hover {
  border-color: var(--green);
  color: var(--green);
}

.section-lead {
  max-width: 820px;
  margin: -18px 0 44px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 2;
}

.project-section,
.environment-section,
.recruit-section {
  position: relative;
}

.project-section::before,
.environment-section::before,
.recruit-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 38px;
  width: 100vw;
  height: calc(100% - 76px);
  transform: translateX(-50%);
}

.project-section::before {
  background: linear-gradient(90deg, rgba(0,104,183,.08), rgba(115,183,43,.06));
}

.environment-section::before {
  background: #f7f9fb;
}

.recruit-section::before {
  background: linear-gradient(90deg, rgba(7,50,93,.06), rgba(0,104,183,.08));
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.project-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #ddd;
  box-shadow: 0 18px 50px rgba(3,31,61,.10);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.project-card {
  --ty: 0px;
  transform: translateY(var(--ty));
}

.project-card:nth-child(even) {
  --ty: 58px;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,31,61,0) 34%, rgba(3,31,61,.30) 58%, rgba(3,31,61,.86));
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .6s;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-title {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}

.project-title span {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 3px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.project-title strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.4;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(3,31,61,.4);
}

.project-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  transition: background .25s, color .25s;
}

.project-card:hover .project-more {
  background: #fff;
  color: var(--navy);
}

.message-section {
  padding-top: 170px;
}

.message-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 52px;
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,104,183,.08);
  box-shadow: 0 20px 60px rgba(3,31,61,.08);
}

.message-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.4;
  font-weight: 900;
}

.message-body p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.message-body small {
  display: block;
  margin-top: 26px;
  color: #718096;
  font-weight: 800;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.member {
  position: relative;
}

.member-photo {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.member-photo.bg-a {
  background: var(--blue-soft);
}

.member-photo.bg-b {
  background: var(--green-soft);
}

.member-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .55s ease;
}

.member:hover .member-photo img {
  transform: scale(1.05);
}

.member-detail {
  margin-top: -24px;
  margin-inline: 14px;
  position: relative;
  z-index: 2;
  padding: 22px 20px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(3,31,61,.08);
}

.member-detail span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.member-detail strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-weight: 900;
}

.member-detail small {
  color: #7b8795;
  font-weight: 800;
}

.member-detail p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.member-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
}

.member-more::after {
  content: "→";
  transition: transform .25s;
}

.member:hover .member-more::after {
  transform: translateX(4px);
}

.photo-belt {
  display: flex;
  gap: 14px;
  width: 120vw;
  margin: 30px 0 20px -10vw;
  transform: rotate(-2deg);
}

.photo-belt img {
  width: 50%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.env-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.env-summary article {
  margin: 0;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.env-summary article p {
  display: flex;
  align-items: center;
  gap: 7px;
}

.env-summary article p::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
}

.env-summary article.is-people p::before {
  background: var(--green);
}

.env-summary p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.env-summary strong {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--navy);
  line-height: 1;
}

.env-summary strong span {
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 900;
}

.env-summary small {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.env-summary em {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.env-pie-card {
  display: flex;
  flex-direction: column;
  /* Safari対策：グリッド内のflexアイテムが自動で伸びない場合があるため明示的に指定 */
  height: 100%;
  align-self: stretch;
}

.env-pie-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 18px;
}

.env-pie {
  position: relative;
  flex: none;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(var(--navy) 0% var(--male), var(--blue) var(--male) 100%);
  animation: pieIn .8s ease both;
}

.env-pie::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: #fff;
}

.env-pie-legend {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.env-pie-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.env-pie-legend b {
  margin-left: 6px;
  padding-left: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.env-pie-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.env-pie-dot.is-male {
  background: var(--navy);
}

.env-pie-dot.is-female {
  background: var(--blue);
}

@keyframes pieIn {
  from {
    opacity: 0;
    transform: scale(.7);
  }
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq button {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.faq button span {
  color: var(--blue);
}

.faq button b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  line-height: 1;
  transition: background .25s;
}

.faq.is-open button b {
  background: var(--green);
}

.faq div {
  max-height: 0;
  overflow: hidden;
  padding: 0 52px;
  color: var(--text);
  font-weight: 700;
  transition: max-height .4s ease, padding .3s ease;
}

.faq.is-open div {
  max-height: 320px;
  padding: 0 52px 28px;
}

.recruit-tabs {
  width: min(620px, 100%);
  margin: -8px auto 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(3,31,61,.08);
}

.recruit-tabs button {
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.recruit-tabs button.is-active {
  background: var(--blue);
  color: #fff;
}

.recruit-panel {
  max-width: 1120px;
  margin: 0 auto;
}

.recruit-panel[hidden] {
  display: none;
}

.job-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.job-card {
  padding: 34px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(0,104,183,.08);
  box-shadow: 0 16px 42px rgba(3,31,61,.08);
}

.job-card.featured {
  max-width: 1120px;
  margin: 0 auto;
}

.job-card > span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 3px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.job-card h3 {
  margin: 20px 0;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 900;
}

.job-card table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.job-card th,
.job-card td {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.job-card th {
  width: 170px;
  padding-right: 24px;
  color: var(--navy);
  text-align: left;
  font-weight: 900;
  white-space: nowrap;
}

.job-card td {
  color: var(--text);
  font-weight: 700;
  line-height: 1.85;
}

.job-card td strong {
  color: var(--navy);
  font-weight: 900;
}

/* =========================================================
   INTERVIEW PAGE (light theme / photo + 2QA group layout)
   ========================================================= */
.interview-page {
  background: var(--paper);
}

.emp-head {
  padding: calc(var(--header) + 92px) 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.emp-head-sub {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: .06em;
}

.emp-head-en {
  margin: 0;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: clamp(48px, 9.5vw, 128px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(0,104,183,.13);
}

.emp-head-lead {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
}

.interview-index {
  width: min(var(--max), calc(100% - 48px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}

.interview-index a {
  position: relative;
  display: block;
  padding: 18px 44px 16px 22px;
  border-right: 1px solid var(--line);
  transition: background .25s;
}

.interview-index a::after {
  content: "↓";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  transition: transform .25s, color .25s;
}

.interview-index a:hover {
  background: var(--green-soft);
}

.interview-index a:hover::after {
  color: var(--green);
  transform: translateY(calc(-50% + 4px));
}

.interview-index a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--green);
}

.interview-index a:last-child {
  border-right: 0;
}

.interview-index span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}

.interview-index strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.interview-index small {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

/* --- per-person article --- */
.emp {
  padding: 110px 0 0;
}

/* main visual with name overlay */
.emp-mv {
  position: relative;
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
}

.emp-mv > img {
  width: 100%;
  aspect-ratio: 1400 / 760;
  object-fit: cover;
  object-position: center 22%;
}

.emp-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,19,51,.72), rgba(4,19,51,.05) 58%, rgba(4,19,51,0) 78%);
}

.emp-profile {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(18px, 3.5vw, 40px);
  max-width: min(72vw, 520px);
  text-align: left;
  color: #fff;
}

.emp-profile p {
  margin: 0;
}

/* keep long English names clear of the fixed ENTRY button (92px box, 24px inset) */
@media (min-width: 761px) {
  .emp-profile {
    right: clamp(112px, 8vw, 140px);
  }
}

.emp-profile .emp-no {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3em;
  color: #7db9e3;
}

.emp-post {
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 700;
}

.emp-profile .emp-name {
  margin-top: 2px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.25;
  font-weight: 900;
}

.emp-en {
  font-family: "Jost", sans-serif;
  font-size: clamp(15px, 1.9vw, 26px);
  font-weight: 500;
  letter-spacing: .06em;
  opacity: .92;
}

/* catch copy */
.emp-catch {
  width: min(1200px, calc(100% - 48px));
  margin: clamp(44px, 6vw, 68px) auto;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.6;
  font-weight: 900;
  text-align: center;
}

/* photo + 2QA groups (alternating) */
.emp-group {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 84px;
  display: flex;
  align-items: center;
  gap: clamp(36px, 4.6vw, 66px);
}

.emp-group.reverse {
  flex-direction: row-reverse;
}

.emp-photo {
  flex: 0 0 40%;
  margin: 0;
}

.emp-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(3,31,61,.12);
}

.emp-qas {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 42px;
  padding-top: 4px;
}

.emp-txt h3 {
  margin: 0 0 18px;
  padding-left: 18px;
  border-left: 3px solid var(--blue);
  color: var(--navy);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  font-weight: 900;
}

.emp-txt p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
}

/* future statement (editorial pull-quote with EN watermark) */
.emp-future {
  position: relative;
  width: min(920px, calc(100% - 48px));
  margin: 24px auto 64px;
  padding-top: clamp(78px, 10vw, 136px);
  text-align: center;
}

.emp-future::before {
  content: "FUTURE";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-size: clamp(64px, 11vw, 128px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  color: rgba(0,104,183,.08);
  white-space: nowrap;
  pointer-events: none;
}

.emp-future .en {
  position: relative;
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.emp-future h3 {
  position: relative;
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.55;
  font-weight: 900;
}

.emp-future p {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 2.05;
  text-align: left;
}

/* one day + personality (full-bleed white band, borderless columns) */
.emp-data {
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 58px max(24px, calc((100% - 1200px) / 2)) 62px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.emp-day,
.emp-off {
  padding: 0;
  background: transparent;
  border: 0;
}

.emp-off {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 3.4vw, 60px);
}

.emp-day h4,
.emp-off h4 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.emp-day h4 em,
.emp-off h4 em {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .3em;
}

.emp-day-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
}

.emp-day ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.emp-day li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 0 0 18px 22px;
}

.emp-day li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.emp-day li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  bottom: -4px;
  width: 2px;
  background: rgba(0,104,183,.15);
}

.emp-day li:last-child {
  padding-bottom: 0;
}

.emp-day li:last-child::after {
  display: none;
}

.emp-day time {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.9;
}

.emp-day li p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.emp-day-note {
  margin: 18px 0 0;
  color: #93a1b0;
  font-size: 11px;
  font-weight: 700;
}

.emp-off dl {
  margin: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.emp-off dl div {
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0,104,183,.18);
}

.emp-off dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.emp-off dt {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.emp-off dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

/* --- other interviews / cta --- */
.interview-others {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 20px;
}

.interview-others h2 {
  margin: 0 0 40px;
  text-align: center;
}

.interview-others h2 span {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 900;
}

.interview-others h2 em {
  display: block;
  margin-top: 6px;
  color: rgba(0,104,183,.14);
  font-family: "Jost", sans-serif;
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .06em;
}

.interview-others-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.interview-others-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  padding-bottom: 20px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.interview-others-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(3,31,61,.12);
}

.interview-others-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  margin-bottom: 16px;
}

.interview-others-grid span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.interview-others-grid strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.interview-others-grid small {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.interview-cta {
  width: min(880px, calc(100% - 48px));
  margin: 90px auto 120px;
  padding: 56px 40px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(115,183,43,.20) 0 4px, transparent 4px 100%),
    linear-gradient(135deg, var(--navy), #064a80);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(3,31,61,.18);
}

.interview-cta p {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  font-weight: 900;
}

.interview-cta-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.interview-cta-links a {
  min-width: 180px;
  padding: 15px 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 4px;
  font-weight: 900;
  transition: transform .25s, box-shadow .25s, background .25s;
}

.interview-cta-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.interview-cta-links a:last-child {
  background: #fff;
  color: var(--navy);
}

.voice-body {
  display: grid;
}

.voice-question {
  width: 100%;
  padding: 84px 24px;
}

.voice-question:nth-child(even) {
  background: #eef6ff;
}

.voice-question:nth-child(odd) {
  background: #fff;
}

.voice-question {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(280px, 420px);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
  justify-content: center;
}

.voice-question > div,
.voice-question > figure {
  min-width: 0;
}

.voice-question > figure {
  margin: 0;
}

.voice-question:nth-child(even) > div {
  order: 2;
}

.voice-question:nth-child(even) > figure {
  order: 1;
}

.voice-question span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.voice-question h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.55;
  font-weight: 900;
}

.voice-question p {
  margin: 16px 0 0;
  color: var(--text);
  font-weight: 700;
  line-height: 2;
}

.voice-question.no-image {
  grid-template-columns: minmax(0, 780px);
}

.voice-question img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3,31,61,.58);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(640px, 100%);
  padding: 42px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(3,31,61,.24);
}

.modal-panel h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 900;
}

.modal-panel p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 2;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.recruitment-cta {
  width: min(1120px, calc(100% - 48px));
  margin: 70px auto 130px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
}

.cta-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 82%);
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 58px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(115,183,43,.20) 0 4px, transparent 4px 100%),
    linear-gradient(135deg, var(--navy), #064a80);
  text-align: center;
  box-shadow: 0 24px 70px rgba(3,31,61,.18);
}

.cta-inner p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.45;
  font-weight: 900;
}

.cta-links {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.cta-links a {
  min-width: 180px;
  padding: 15px 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 4px;
  font-weight: 900;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}

.cta-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.cta-links a:first-child {
  background: #fff;
  color: var(--navy);
}

.cta-links a:last-child:hover {
  background: rgba(255,255,255,.14);
}

.site-footer {
  padding: 72px 24px 36px;
  background: var(--navy-deep);
  color: #fff;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}

.footer-logo .logo-type {
  color: #fff;
  font-size: 24px;
}

.footer-logo .logo-recruit {
  color: #7db9e3;
}

.footer-address {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 2.1;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
  align-content: start;
}

.footer-nav a {
  padding: 7px 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
  transition: color .2s;
}

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

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 52px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 800;
}

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

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.fixed-entry {
  position: fixed;
  z-index: 81;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 16px 32px rgba(0,104,183,.24);
  transition: transform .25s, box-shadow .25s;
}

.fixed-entry:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,104,183,.34);
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(calc(var(--ty, 0px) + 30px));
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,.7,.3,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--ty, 0px));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: translateY(var(--ty, 0px));
  }

  .kv-copy p,
  .kv-copy h1 span {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .intro {
    margin-top: 0;
    padding-top: 44px;
  }

  .logo-type {
    font-size: 19px;
  }

  .logo-type em {
    font-size: 12px;
  }

  .intro-inner,
  .message-card {
    grid-template-columns: 1fr;
  }

  .circle-link {
    margin: 0 auto;
  }

  .member-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

@media (max-width: 760px) {
  :root {
    --header: 74px;
  }

  .site-header {
    padding: 0 18px;
  }

  .menu-button {
    width: 52px;
    height: 52px;
  }

  .kv-copy {
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
    bottom: 26px;
  }

  .kv-copy h1 {
    font-size: clamp(26px, 7vw, 40px);
  }

  .kv-copy p {
    color: #fff;
    margin-bottom: 16px;
  }

  .kv-scroll {
    right: 18px;
    bottom: 84px;
  }

  .intro {
    margin-top: 0;
    padding: 40px 16px 64px;
  }

  .intro-inner {
    padding: 38px 24px;
    border-radius: 0;
  }

  .intro-text p {
    font-size: 15px;
    line-height: 2.05;
  }

  .circle-link {
    width: 150px;
    height: 150px;
    font-size: 13px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 76px 0;
  }

  .section-heading.split {
    display: block;
    text-align: center;
  }

  .section-heading h2 em {
    font-size: 54px;
  }

  .anchor-list {
    justify-content: center;
    margin-top: 22px;
  }

  .section-lead {
    margin: -12px auto 30px;
    text-align: left;
    font-size: 14px;
  }

  .project-grid,
  .job-list,
  .project-card,
  .project-card img {
    min-height: 310px;
  }

  .project-card:nth-child(even) {
    --ty: 0px;
  }

  .message-section {
    padding-top: 76px;
  }

  .message-card {
    padding: 22px;
    border-radius: 8px;
  }

  .message-body p {
    font-size: 15px;
  }

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

  .photo-belt {
    width: 160vw;
    margin-left: -30vw;
  }

  .photo-belt img {
    height: 220px;
  }

  .faq button {
    font-size: 16px;
  }

  .faq div {
    padding-left: 38px;
    padding-right: 0;
  }

  .faq.is-open div {
    padding: 0 0 24px 38px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .recruit-tabs {
    border-radius: 6px;
    grid-template-columns: 1fr;
  }

  .job-card {
    padding: 24px;
    border-radius: 6px;
  }

  .job-card h3 {
    font-size: 23px;
  }

  .job-card table,
  .job-card tbody,
  .job-card tr,
  .job-card th,
  .job-card td {
    display: block;
    width: 100%;
  }

  .job-card th {
    padding: 14px 0 0;
    border-bottom: 0;
  }

  .job-card td {
    padding: 6px 0 14px;
  }

  .modal-panel {
    padding: 34px 22px 26px;
  }

  .recruitment-cta {
    width: calc(100% - 32px);
    margin-bottom: 90px;
  }

  .cta-inner {
    width: 100%;
    min-height: 310px;
    padding: 36px 22px;
  }

  .cta-links {
    width: 100%;
    display: grid;
  }

  .fixed-entry {
    width: auto;
    height: auto;
    left: 16px;
    right: 16px;
    bottom: 14px;
    padding: 15px 20px;
    border-radius: 4px;
  }

  .emp-head {
    padding: calc(var(--header) + 52px) 18px 30px;
  }

  .interview-index {
    width: calc(100% - 32px);
    grid-template-columns: 1fr 1fr;
  }

  .interview-index a {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .emp {
    padding: 76px 0 0;
  }

  .emp-mv {
    width: calc(100% - 32px);
  }

  .emp-mv > img {
    aspect-ratio: 4 / 3;
  }

  .emp-catch {
    width: calc(100% - 32px);
    margin: 34px auto;
    font-size: clamp(21px, 6vw, 26px);
  }

  .emp-group,
  .emp-group.reverse {
    width: calc(100% - 32px);
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
  }

  .emp-photo {
    flex: none;
    width: 100%;
  }

  .emp-photo img {
    aspect-ratio: 4 / 3;
  }

  .emp-qas {
    gap: 34px;
  }

  .emp-txt h3 {
    padding-left: 14px;
    margin-bottom: 14px;
  }

  .emp-txt p {
    line-height: 2.05;
  }

  .emp-future {
    width: calc(100% - 32px);
    margin-bottom: 48px;
    padding-top: 38px;
  }

  .emp-data {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 16px 44px;
  }

  .emp-off {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 28px;
  }

  .emp-day-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .emp-day-cols ol:last-child li:first-child {
    padding-top: 0;
  }

  .interview-others {
    width: calc(100% - 32px);
    padding-top: 72px;
  }

  .interview-others-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interview-cta {
    width: calc(100% - 32px);
    margin: 64px auto 90px;
    padding: 36px 22px;
  }

  .interview-cta-links {
    display: grid;
  }

  .voice-question,
  .voice-question.no-image {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 58px 16px;
  }

  .voice-question > div,
  .voice-question > figure,
  .voice-question:nth-child(even) > div,
  .voice-question:nth-child(even) > figure,
  .voice-question.no-image > div {
    width: 100%;
    justify-self: stretch;
    order: initial;
  }

  .voice-question img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  /* 社員の声：1カラムのまま、写真の縦の長さを短くする */
  .member-photo img {
    aspect-ratio: 1 / 1;
  }

  .member:nth-child(1) .member-photo img {
    object-position: center 16% !important;
  }

  .member:nth-child(2) .member-photo img {
    object-position: center 14% !important;
  }

  .member:nth-child(3) .member-photo img {
    object-position: center 20% !important;
  }

  .member:nth-child(4) .member-photo img {
    object-position: center 15% !important;
  }

  /* 働く環境・福利厚生：スマホでも2カラムに */
  .env-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .env-summary article {
    padding: 18px 14px;
  }

  .env-summary p {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .env-summary strong span {
    font-size: clamp(30px, 9vw, 40px);
  }

  .env-summary small {
    font-size: 14px;
  }

  .env-summary em {
    margin-top: 10px;
    font-size: 11px;
  }

  .env-pie-card {
    padding: 16px 14px;
  }

  .env-pie-card .env-pie-row {
    gap: 12px 16px;
  }

  .env-pie {
    width: 76px;
    height: 76px;
  }

  /* 写真の上に文字を重ねず、写真の下にタイトル・キャッチを配置 */
  .project-grid {
    gap: 16px;
  }

  .project-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: #fff;
  }

  .project-card::after {
    content: none;
  }

  .project-card img {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-title {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 1;
    padding: 16px 14px 18px;
    color: var(--navy);
  }

  .project-title span {
    background: var(--blue-soft);
    color: var(--navy);
    padding: 5px 10px;
    font-size: 11px;
  }

  .project-title strong {
    margin-top: 10px;
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.45;
    text-shadow: none;
  }

  .project-more {
    margin-top: 10px;
    padding: 5px 12px;
    border-color: rgba(7,50,93,.3);
    font-size: 9px;
    color: var(--navy);
  }
}

@media (max-width: 380px) {
  /* 幅が狭い端末で「新卒者割合」「社員の男女比」の補足文が
     2行に折り返してカードだけ縦長になるのを防ぐ */
  .env-summary em .opt {
    display: none;
  }
}

@media (max-width: 480px) {
  .kv-photo img {
    object-position: 62% 30%;
  }

  .kv-copy {
    bottom: 20px;
  }

  .kv-copy p {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .kv-copy h1 {
    font-size: 26px;
    line-height: 1.26;
  }
}
