@import "section-bg.generated.css";

/* ========================================
   Base / Variables
   ======================================== */
:root {
  --base-font-size: 16px;
  --sp-font-size: 14px;
  --main-color: #0242b0;
  --sub-color: #333333;
  --accent-green: #41b267;
  --accent-cyan: #00a1c9;
  --bg-strength: #ebf2ff;
  --white: #ffffff;
  --font-family: "Noto Sans JP", sans-serif;
  --font-family-serif: "Noto Serif JP", serif;
  --breakpoint: 1000px;
  --max-width-container: 2000px;
  --max-width-inner: 1321px;
  --gap-section: 80px;
  --section-space: 80px;
  --gap: 24px;
  --header-height: 87px;
}

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

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--sub-color);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.wrapper {
  position: relative;
  max-width: var(--max-width-container);
  margin: 0 auto;
  overflow: clip;
  padding-top: var(--header-height);
  container-type: inline-size;
  container-name: page;
}

.wrapper:has(.page_deco--map) {
  overflow: visible;
}

.wrap {
  width: min(100% - 48px, var(--max-width-inner));
  margin: 0 auto;
}

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

/* ========================================
   Common components
   ======================================== */
.btn_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 48px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border: 2px solid transparent;
  transition:
    background-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.btn_pill--primary {
  background-color: var(--main-color);
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white);
  padding: 7px 78px 7px 64px;
  position: relative;
}

.btn_pill--primary:hover {
  background-color: var(--white);
  background: var(--white);
  color: var(--main-color);
}

.btn_pill--gradient {
  position: relative;
  isolation: isolate;
  width: 120px;
  padding: 8px 16px;
  background: linear-gradient(90deg, var(--main-color) 0%, var(--accent-cyan) 100%);
  border: none;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  overflow: hidden;
  z-index: 0;
}

.btn_pill--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--main-color) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn_pill--gradient:hover {
  border: none;
  color: var(--white);
}

.btn_pill--gradient:hover::before {
  opacity: 1;
}

.btn_pill--outline_green {
  background-color: var(--white);
  background: var(--white);
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  font-weight: 600;
  font-size: 22px;
  padding: 19px 68px;
  letter-spacing: 0.05em;
  position: relative;
}

.btn_pill--outline_green:hover {
  background-color: var(--accent-green);
  background: var(--accent-green);
  color: var(--white);
}

.btn_rect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 347px;
  min-height: 50px;
  padding: 10px 48px;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.btn_rect--primary {
  background-color: var(--main-color);
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white);
}

.btn_rect--primary:hover {
  background-color: var(--white);
  background: var(--white);
  color: var(--main-color);
}

input.btn_rect {
  appearance: none;
}

.btn_border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 224px;
  min-height: 48px;
  padding: 8px 48px;
  border: 3px solid var(--white);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: transparent;
  background: transparent;
  transition:
    background-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.btn_border:hover {
  background-color: var(--white);
  background: var(--white);
  color: var(--accent-green);
}

.btn_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 15px;
  color: inherit;
  transition: color 0.35s ease;
}

.btn_arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: fill 0.35s ease;
}

.btn_arrow svg path {
  fill: currentColor;
  transition: fill 0.35s ease;
}

.btn_pill--primary .btn_arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.btn_pill--outline_green .btn_arrow {
  position: absolute;
  right: 36px;
  top: 50%;
  width: 18px;
  height: 11px;
  transform: translateY(-50%);
}

.btn_border .btn_arrow {
  position: static;
  width: 24px;
  height: 15px;
}

/* ========================================
   Header
   ======================================== */
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #c5d0e6;
}

.site_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1512px);
  margin: 0 auto;
  padding: 16px 20px;
  min-height: var(--header-height);
}

.site_header_logo {
  flex-shrink: 0;
  padding-inline: 12px;
  font-size: inherit;
  font-weight: inherit;
}

.site_header_logo a {
  display: block;
}

.site_header_logo img {
  display: block;
  width: 214px;
  height: auto;
}

.global_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.global_nav_list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.global_nav_list a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.global_nav_list a:hover {
  color: var(--main-color);
}

.nav_toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 120;
}

.nav_toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: var(--main-color);
  transform: translateX(-50%);
  transition: top 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.nav_toggle span:nth-child(1) {
  top: 14px;
}

.nav_toggle span:nth-child(2) {
  top: 21px;
}

.nav_toggle span:nth-child(3) {
  top: 28px;
}

.nav_toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

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

.nav_toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ========================================
   MV（ファーストビュー）— FV 1枚画像 + 地図はみ出し（§1）
   FV = MV(729) のみ。地図(42:489)は .page_deco--map で下にはみ出し
   ======================================== */
.mv {
  position: relative;
  z-index: 5;
  aspect-ratio: 1512 / 729;
  overflow: visible;
}

.page_deco--map {
  position: absolute;
  /* Figma 地図 2 (42:489): page top 394 / right はみ出し 107px @1512 */
  top: calc(var(--header-height) + 17.460317cqw);
  right: -7.076719cqw;
  z-index: 6;
  width: 47.089947%;
  height: auto;
  pointer-events: none;
}

picture:has(.page_deco--map) {
  display: contents;
}

.mv picture {
  display: contents;
}

.mv_visual {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* ========================================
   News & Topics
   ======================================== */
.news {
  position: relative;
  z-index: 4;
  background: var(--white);
  padding: var(--section-space) 0;
}

.news_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.news_intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  width: min(312px, 100%);
  padding-top: 7px;
}

.news_en {
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--sub-color);
}

.news_en_n {
  color: var(--main-color);
}

.news_en_t {
  color: var(--accent-green);
}

.news_intro h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.news_desc {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-block: 8px 28px;
}

.news_list {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 0;
  padding-top: 7px;
}

.news_list > li {
  border-bottom: 1px solid #d9d9d9;
}

.news_item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 0 30px;
  min-height: 64px;
}

.news_list > li + li .news_item {
  padding-top: 30px;
}

.news_item time {
  flex-shrink: 0;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 34px;
}

.news_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
  min-height: 28px;
  padding: 2px 12px;
  background: var(--main-color);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.35s ease;
}

.news_title {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 34px;
  text-decoration: none;
  transition: color 0.35s ease;
}

.news_tag:hover {
  background-color: var(--accent-cyan);
}

.news_title:hover {
  color: var(--main-color);
}

/* ========================================
   Page MV（下層）
   ======================================== */
.page_mv {
  display: flex;
  align-items: flex-start;
  min-height: 482px;
  color: var(--white);
}

.page_mv_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 162px;
  padding-bottom: 48px;
}

.page_mv_en {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.page_mv_title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page_mv--about.section_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to top, #000 0%, transparent 70.68%);
  opacity: 0.7;
}

.page_mv--staff.section_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgb(0 0 0 / 50%) 0%, transparent 70.68%),
    rgb(255 255 255 / 20%);
}

.page_mv--contact.section_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 50%) 47.115%, rgb(0 0 0 / 35%) 100%);
}

/* ========================================
   Contact
   ======================================== */
.contact {
  padding: 100px 24px;
  background: var(--bg-strength);
}

.contact_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: min(100%, 1200px);
  padding: 80px;
  background: var(--white);
}

.contact_intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: min(100%, 890px);
}

.contact_lead {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
  text-align: center;
}

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

.contact_tel {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--main-color);
}

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

.contact_tel a:hover {
  text-decoration: underline;
}

.contact_hours {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.contact_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.contact_fields {
  display: flex;
  flex-direction: column;
  width: min(100%, 890px);
}

.contact_row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 85px;
  padding-block: 20px;
  border-top: 1px solid #000;
}

.contact_row--textarea {
  align-items: flex-start;
  border-bottom: 1px solid #000;
}

.contact_label {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  width: 230px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.contact_required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  background: var(--main-color);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.contact_field {
  flex: 1 1 auto;
  min-width: 0;
}

.contact_field input,
.contact_field textarea {
  display: block;
  width: 100%;
  max-width: 640px;
  padding: 10px 14px;
  border: 1px solid #b3b3b3;
  background: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--sub-color);
}

.contact_field input {
  height: 45px;
}

.contact_field textarea {
  min-height: 208px;
  resize: vertical;
}

.contact_field input:focus,
.contact_field textarea:focus {
  outline: 2px solid var(--main-color);
  outline-offset: 1px;
}

.contact_agree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
}

.contact_agree_check {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact_agree_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
  text-align: center;
  cursor: pointer;
}

.contact_agree_label input {
  appearance: none;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin: 0;
  border: 1px solid #b3b3b3;
  background: var(--white);
  cursor: pointer;
}

.contact_agree_label input:checked {
  border-color: var(--main-color);
  background:
    linear-gradient(var(--main-color), var(--main-color)) center / 13px 13px no-repeat,
    var(--white);
  box-shadow: inset 0 0 0 5px var(--white);
}

.contact_privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.contact_privacy_title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #787c78;
  text-align: center;
}

.contact_privacy_body {
  width: min(100%, 566px);
  height: 163px;
  padding: 10px;
  overflow-y: auto;
  border: 1px solid #cbcbcb;
  background: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #737380;
}

.contact_privacy_body p,
.contact_privacy_body ul {
  margin: 0 0 0.75em;
}

.contact_privacy_body ul {
  padding-left: 1.2em;
}

.contact_privacy_body li + li {
  margin-top: 0.25em;
}

.contact_privacy_lead {
  font-weight: 700;
}

.contact_actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.wpcf7 {
  width: 100%;
}

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

.wpcf7 .hidden-fields-container {
  display: none !important;
}

.wpcf7 .contact_form,
.wpcf7 form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  margin: 0;
}

.contact_field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  max-width: 640px;
}

.contact_field .wpcf7-form-control {
  display: block;
  width: 100%;
  max-width: 640px;
  padding: 10px 14px;
  border: 1px solid #b3b3b3;
  background: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--sub-color);
}

.contact_field input.wpcf7-form-control {
  height: 45px;
}

.contact_field textarea.wpcf7-form-control {
  min-height: 208px;
  resize: vertical;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  color: #c00;
  font-size: 13px;
}

.contact_response {
  width: min(100%, 890px);
}

.contact_response .wpcf7-response-output,
.wpcf7-response-output {
  width: 100%;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--main-color);
  background: #f7f9fc;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7-response-output:empty {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #c00;
  background: #fff5f5;
  color: #c00;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border-color: #c00;
  background: #fff5f5;
  color: #c00;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--accent-green);
  background: #f3fbf6;
  color: var(--accent-green);
}

.contact_agree .wpcf7-form-control-wrap,
.contact_agree .wpcf7-acceptance,
.contact_agree .wpcf7-list-item {
  margin: 0;
  width: 100%;
}

.contact_agree .wpcf7-list-item label,
.contact_agree .contact_agree_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.contact_agree .wpcf7-list-item-label {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.contact_agree input[type="checkbox"] {
  appearance: none;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin: 0;
  border: 1px solid #b3b3b3;
  background: var(--white);
  cursor: pointer;
}

.contact_agree input[type="checkbox"]:checked {
  border-color: var(--main-color);
  background:
    linear-gradient(var(--main-color), var(--main-color)) center / 13px 13px no-repeat,
    var(--white);
  box-shadow: inset 0 0 0 5px var(--white);
}

.contact_actions .wpcf7-spinner {
  margin-left: 12px;
}

.contact_thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 80px;
  background: var(--white);
  text-align: center;
}

.contact_thanks h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.contact_thanks_text,
.contact_thanks_note {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.contact_thanks_note {
  color: var(--sub-color);
}

.contact_thanks_action {
  padding-top: 16px;
}

/* ========================================
   Staff Voice
   ======================================== */
.staff_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--main-color);
  color: var(--white);
}

.staff_banner_text {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
}

.staff_voices {
  padding-block: 67px 80px;
  background: var(--white);
}

.staff_voices_pager {
  display: none;
}

.staff_voices_inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.staff_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  padding: 28px;
  border: 4px solid #e6e6e6;
  background: var(--white);
  box-shadow: 5px 6px 0 rgb(0 0 0 / 10%);
}

.staff_card_photo {
  width: 100%;
  overflow: hidden;
}

.staff_card_photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 403 / 242;
  object-fit: cover;
}

.staff_card_tag {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 2px 8px;
  background: var(--main-color);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.staff_card_title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.staff_card_lead {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.staff_card_qa {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
}

.staff_bubble {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.staff_bubble--q {
  align-self: flex-start;
  background: linear-gradient(90deg, var(--main-color) 0%, var(--accent-cyan) 100%);
}

.staff_bubble--a {
  align-self: flex-end;
  margin-left: 40px;
  background: linear-gradient(90deg, var(--accent-green) 0%, #42c6a5 100%);
}

.staff_bubble--q::before,
.staff_bubble--a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 14px;
  transform: translateY(-50%);
}

.staff_bubble--q::before {
  left: -8px;
  background: var(--main-color);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.staff_bubble--a::before {
  right: -8px;
  background: #42c6a5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.staff_env {
  position: relative;
  isolation: isolate;
  padding-block: 50px 80px;
  background: var(--accent-green);
}

.staff_env::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/staff_env_dots.svg") 0 0 / 24px 24px repeat;
  opacity: 0.2;
}

.staff_env > * {
  position: relative;
  z-index: 1;
}

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

.staff_env_heading {
  color: var(--white);
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}

.staff_env_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
}

.staff_env_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  box-shadow: 5px 6px 0 rgb(0 0 0 / 10%);
}

.staff_env_photo {
  width: 100%;
  overflow: hidden;
}

.staff_env_photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 236 / 157;
  object-fit: cover;
}

.staff_env_card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.staff_env_card p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ========================================
   News archive
   ======================================== */
.news_archive {
  background: var(--white);
}

.news_archive_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding-block: 100px;
}

.news_archive_inner > h2 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-align: center;
}

.news_archive_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: min(911px, 100%);
}

.news_list--archive {
  width: 100%;
  flex: none;
  padding-top: 0;
}

.news_archive .pagination {
  width: 100%;
}

.pagination_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pagination_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}

.pagination_link.is-current,
.pagination_link:hover {
  background: var(--main-color);
  color: var(--white);
}

/* ========================================
   News single
   ======================================== */
.news_single {
  background: var(--white);
}

.news_single_inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  padding-block: 100px;
  min-width: 0;
}

.news_single_inner > h2 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-align: center;
}

.news_single_body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: min(1020px, 100%);
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.news_single_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 80px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgb(0 0 0 / 10%);
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.news_single_deco {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 88px;
  height: 78px;
  background: var(--main-color);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.news_single_main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.news_single_head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--main-color);
}

.news_single_meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}

.news_single_meta time {
  flex-shrink: 0;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 34px;
}

.news_single_title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 34px;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.news_single_content {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 30px;
  overflow-wrap: anywhere;
  word-break: break-all;
  white-space: normal;
}

.news_single_content > * + * {
  margin-top: 20px;
}

.news_single_content * {
  max-width: 100% !important;
  box-sizing: border-box;
  overflow-wrap: anywhere !important;
  word-break: break-all !important;
  white-space: normal !important;
}

.news_single_content img,
.news_single_content video,
.news_single_content iframe,
.news_single_content table,
.news_single_content figure {
  height: auto !important;
}

.news_single_content pre,
.news_single_content code {
  white-space: pre-wrap !important;
}

.news_single_figure {
  margin: 0;
  width: 100%;
}

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

.news_single_nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: min(890px, 100%);
  padding-block: 20px;
}

.news_single_nav_item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(340px, 100%);
  transition: color 0.35s ease;
}

.news_single_nav_item:hover {
  color: var(--main-color);
}

.news_single_nav_item--next {
  justify-content: flex-end;
  text-align: right;
}

.news_single_nav_arrow {
  flex-shrink: 0;
  width: 6px;
  height: 12px;
  border-style: solid;
  border-color: currentColor;
}

.news_single_nav_item--prev .news_single_nav_arrow {
  border-width: 6px 6px 6px 0;
  border-color: transparent currentColor transparent transparent;
}

.news_single_nav_item--next .news_single_nav_arrow {
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent currentColor;
}

.news_single_nav_label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 25px;
}

.news_single_back {
  display: flex;
  justify-content: center;
  width: 100%;
}

.news_single_back .btn_pill--primary {
  min-height: 50px;
  padding: 6px 78px 6px 48px;
  font-size: 20px;
}

/* ========================================
   About
   ======================================== */
.about {
  position: relative;
  background: var(--white);
}

.about_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 130px;
  padding-block: 100px;
}

.about_catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.about_catch p {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
}

.about_catch span {
  display: inline-block;
  padding: 10px 16px;
  background: var(--main-color);
  color: var(--white);
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.about_catch .about_catch_sp {
  display: none;
}

.about_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.about_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.about_heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: var(--main-color);
}

.about_profile {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1242px;
  margin: 0;
}

.about_profile > div {
  display: grid;
  grid-template-columns: 37% 1fr;
}

.about_profile dt,
.about_profile dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 19px 30px;
  border: 1px solid #bbbbbb;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 34px;
}

.about_profile > div + div dt,
.about_profile > div + div dd {
  border-top: 0;
}

.about_profile dt {
  justify-content: center;
  background: #f4f4f4;
  font-weight: 500;
  text-align: center;
}

.about_profile dd {
  border-left: 0;
  background: var(--white);
  font-weight: 400;
  word-break: break-all;
}

.about_history {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(789px, 100%);
  padding-left: 0;
  list-style: none;
}

.about_history::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  width: 3px;
  height: calc(100% - 24px);
  background: var(--main-color);
}

.about_history li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 44px;
  font-size: 25px;
  line-height: 43px;
  letter-spacing: 0.04em;
}

.about_history li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--main-color);
  transform: translateY(-50%);
}

.about_history time,
.about_history_now {
  flex-shrink: 0;
  width: 180px;
  color: var(--main-color);
  font-weight: 700;
}

.about_history span:not(.about_history_now) {
  font-weight: 350;
}

.about_message {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 100%;
  max-width: 1272px;
  padding: 50px;
  font-family: var(--font-family-serif);
}

.about_message_lead {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.about_message_body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 43px;
}

.about_message_sign {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 43px;
  text-align: right;
}

/* ========================================
   Service
   ======================================== */
.service_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--accent-green);
  color: var(--white);
}

.service_banner_text {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
}

.service_list {
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: var(--white);
}

.service_item {
  --service-overlap: clamp(40px, 7.5vw, 100px);
  position: relative;
  overflow: hidden;
}

.service_item > .wrap {
  position: relative;
  z-index: 2;
  padding-block: clamp(32px, 4vw, 50px);
}

.service_item_body {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.service_item_media {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 50%;
  min-width: 0;
}

.service_item_media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 586 / 417;
}

.service_item_panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.5vw, 20px);
  width: calc(50% + var(--service-overlap));
  min-width: 0;
  padding: clamp(20px, 2.2vw, 30px);
  background: var(--white);
  box-shadow: 6px 6px 0 rgb(0 0 0 / 10%);
}

.service_item_title {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 41px;
  padding: 0 10px;
  background: linear-gradient(90deg, var(--main-color) 0%, var(--accent-cyan) 100%);
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.service_item_panel p {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.service_item_num {
  position: absolute;
  z-index: 0;
  margin: 0;
  color: var(--accent-green);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0.35;
  pointer-events: none;
}

.service_item_deco {
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  pointer-events: none;
}

/* --- 01 配送：写真左・パネル右 --- */
.service_item--01 {
  overflow: visible;
  background: #fafcff;
}

.service_item--01 .service_item_media {
  box-sizing: border-box;
  padding-left: 14%;
}

.service_item--01 .service_item_media img {
  width: 100%;
  aspect-ratio: 480 / 540;
}

.service_item--01 .service_item_panel {
  position: relative;
  overflow: visible;
  margin-left: calc(-1 * var(--service-overlap));
}

.service_item--01 .service_item_num {
  top: 0;
  right: 0;
  left: auto;
}

.service_item--01 .service_item_deco {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: min(274px, 48%);
  transform: translate(42%, 42%);
}

/* --- 02 庫内：パネル左・写真右 --- */
.service_item--02 {
  overflow: visible;
  background: #eef6fb;
}

.service_item--02 .service_item_media {
  order: 2;
  margin-left: auto;
  margin-right: 0;
}

.service_item--02 .service_item_panel {
  order: 1;
  margin-right: calc(-1 * var(--service-overlap));
}

.service_item--02 .service_item_num {
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
}

.service_item--02 .service_item_deco {
  left: 24px;
  bottom: 0;
  width: min(140px, 14%);
}

/* --- 03 人材：写真左・パネル右 --- */
.service_item--03 {
  overflow: visible;
  background: #fafcff;
}

.service_item--03 .service_item_media {
  margin-left: 0;
}

.service_item--03 .service_item_panel {
  margin-left: calc(-1 * var(--service-overlap));
}

.service_item--03 .service_item_num {
  top: 0;
  right: 0;
  left: auto;
}

.service_item--03 .service_item_deco {
  right: 24px;
  bottom: 0;
  width: min(140px, 14%);
}

/* PC狭幅：重なりを抑えて横崩れを防ぐ */
@media screen and (max-width: 1600px) and (min-width: 1001px) {
  .service_item--02 .service_item_deco,
  .service_item--03 .service_item_deco {
    width: min(110px, 11%);
  }
}

@media screen and (max-width: 1500px) and (min-width: 1001px) {
  .service_item--01 .service_item_deco {
    right: 0;
    bottom: 0;
    width: min(220px, 42%);
    transform: translate(0, 48%);
  }
}

@media screen and (max-width: 1300px) and (min-width: 1001px) {
  .service_item {
    --service-overlap: clamp(32px, 5.5vw, 72px);
  }

  .service_item > .wrap {
    padding-block: 36px;
  }

  .service_item--01 .service_item_media {
    padding-left: 8%;
  }

  .service_item--01 .service_item_deco {
    width: min(200px, 40%);
    transform: translate(0, 52%);
  }

  .service_item--02 .service_item_deco,
  .service_item--03 .service_item_deco {
    width: min(100px, 12%);
  }
}

@media screen and (max-width: 1200px) and (min-width: 1001px) {
  .service_item--02 .service_item_deco,
  .service_item--03 .service_item_deco {
    width: min(80px, 9%);
  }

  .staff_voices_inner {
    gap: 16px;
  }

  .staff_card {
    padding: 18px;
  }

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

/* ========================================
   Who we are
   ======================================== */
.who {
  min-height: 673px;
  overflow: hidden;
}

.who.section_bg {
  --section-bg-fill-opacity: 1;
}

.who_media {
  display: none;
}

.who_panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: min(854px, 100%);
  min-height: 565px;
  margin-block: var(--section-space);
  padding: 50px 90px;
  background: var(--accent-green);
  color: var(--white);
}

.who_en {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.who_panel h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 20px;
}

.who_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.05em;
  max-width: 668px;
}

.who_panel .btn_border {
  margin-top: auto;
  align-self: flex-end;
}

/* ========================================
   Strengths
   ======================================== */
.strengths {
  position: relative;
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-strength) 100%);
  isolation: isolate;
}

.strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/strengths_pattern.webp") center / cover no-repeat;
  opacity: 0.5;
}

.strengths_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.strengths_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
}

.strengths_head h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: var(--sub-color);
}

.strengths_num {
  color: var(--main-color);
  font-size: 64px;
  letter-spacing: 0.1em;
}

.strengths_lead {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.strengths_bar {
  display: block;
  width: 66px;
  height: 6px;
  background: var(--main-color);
}

.strengths_list {
  display: flex;
  flex-direction: column;
  gap: 68px;
  width: 100%;
}

.strength_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 405px;
  padding: 46px 64px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.strength_card_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: min(752px, 100%);
}

.strength_card_title {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--main-color);
}

.strength_card_num {
  font-size: 88px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.18;
}

.strength_card_title h3 {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 40px;
}

.strength_card_line {
  position: relative;
  display: block;
  width: 100%;
  max-width: 748px;
  height: 7px;
}

.strength_card_line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-green);
}

.strength_card_line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 38px;
  height: 7px;
  background: var(--main-color);
}

.strength_card_body > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.05em;
}

.strength_card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 168px;
}

.strength_card_icon img {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.strength_card_icon--wide img {
  width: 215px;
}

/* ========================================
   Recruit
   ======================================== */
.recruit {
  position: relative;
  min-height: 614px;
  overflow: hidden;
  color: var(--white);
}

.recruit_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.recruit_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit_wave {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 150px;
  pointer-events: none;
  object-fit: fill;
  object-position: center bottom;
}

.recruit_inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  min-height: 614px;
  padding: var(--section-space) 0;
}

.recruit_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: min(734px, 100%);
  padding-top: 0;
}

.recruit_en {
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.recruit_content h2 {
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.26em;
  line-height: 1.35;
}

.recruit_text {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 40px;
}

.recruit_photos {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  display: block;
  width: min(800px, 56%);
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ========================================
   Footer
   ======================================== */
.site_footer {
  background: var(--white);
  padding-top: var(--section-space);
}

.site_footer_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: var(--section-space);
}

.site_footer_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: min(478px, 100%);
}

.site_footer_logo img {
  display: block;
  width: 320px;
  height: auto;
}

.site_footer_address,
.site_footer_license {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.site_footer_address {
  padding-bottom: 12px;
  border-bottom: 1px solid #c9ced8;
  width: 100%;
}

.footer_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer_nav_list a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer_nav_list a:hover {
  color: var(--main-color);
}

.site_footer_copy {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  background: var(--white);
  text-align: center;
}

.site_footer_copy small {
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ========================================
   Recruit mid（〜1100px）写真縮小でテキスト被り防止
   ======================================== */
@media screen and (max-width: 1100px) and (min-width: 1001px) {
  .recruit_photos {
    width: min(520px, 40%);
  }

  .recruit_content {
    width: min(520px, 55%);
  }

  .recruit_content h2 {
    font-size: 36px;
    letter-spacing: 0.16em;
  }

  .recruit_wave {
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .recruit {
    min-height: 0;
  }

  .recruit_inner {
    min-height: 0;
    padding: var(--section-space) 0;
  }
}

/* ========================================
   SP（〜1000px）
   ======================================== */
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 67px;
    --section-space: 48px;
  }

  html {
    font-size: var(--sp-font-size);
  }

  .wrap {
    width: min(100% - 32px, var(--max-width-inner));
  }

  .site_header_inner {
    padding: 0 0 0 12px;
    min-height: var(--header-height);
    gap: 8px;
  }

  .site_header_logo {
    padding-inline: 0;
  }

  .site_header_logo img {
    width: 147px;
  }

  .nav_toggle {
    display: block;
    flex-shrink: 0;
    width: 67px;
    height: var(--header-height);
    background: linear-gradient(90deg, var(--main-color) 0%, var(--accent-cyan) 100%);
  }

  .nav_toggle span {
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background: var(--white);
  }

  .nav_toggle span:nth-child(1) {
    top: 25px;
  }

  .nav_toggle span:nth-child(2) {
    top: 32px;
  }

  .nav_toggle span:nth-child(3) {
    top: 39px;
  }

  .nav_toggle.is-open span:nth-child(1),
  .nav_toggle.is-open span:nth-child(3) {
    top: 32px;
  }

  .mv {
    aspect-ratio: 780 / 893;
    overflow: visible;
    z-index: 5;
  }

  .page_deco--map {
    /* Figma 地図 2 (200:273) @780: MV top +568px / left 280px / w546 / right overflow 46px */
    top: calc(var(--header-height) + 72.820513cqw);
    left: 35.897436cqw;
    right: auto;
    width: 70%;
  }

  .mv_visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
  }

  .global_nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 20px 32px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;
  }

  .global_nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .global_nav_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn_pill--gradient {
    width: 100%;
  }

  .news {
    padding: var(--section-space) 0;
  }

  .news_inner {
    flex-direction: column;
    gap: 12px;
  }

  .news_intro {
    display: contents;
    width: auto;
  }

  .news_inner .news_en {
    order: 1;
    font-size: 28px;
  }

  .news_inner .news_intro h2 {
    order: 2;
    font-size: 20px;
  }

  .news_inner .news_desc {
    order: 3;
    font-size: 14px;
    margin-block: 4px 16px;
  }

  .news_inner .news_list {
    order: 4;
    margin-top: 8px;
  }

  .news_inner .news_intro .btn_pill--primary {
    order: 5;
    align-self: stretch;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .btn_pill--primary {
    padding: 10px 24px;
    font-size: 14px;
    gap: 10px;
  }

  .btn_pill--primary .btn_arrow {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    width: 18px;
    height: 11px;
  }

  .news_item {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-bottom: 16px;
  }

  .news_list > li + li .news_item {
    padding-top: 16px;
  }

  .news_item time,
  .news_title {
    font-size: 14px;
    line-height: 1.6;
  }

  .news_title {
    flex: 1 1 100%;
    overflow-wrap: anywhere;
  }

  .news_tag {
    width: auto;
    min-width: 72px;
    font-size: 12px;
  }

  .page_mv {
    min-height: 220px;
  }

  .page_mv_inner {
    gap: 6px;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .page_mv_en {
    font-size: 28px;
  }

  .page_mv_title {
    font-size: 22px;
  }

  .contact {
    padding: 56px 16px;
  }

  .contact_form {
    gap: 40px;
  }

  .contact_card {
    gap: 32px;
    padding: 40px 20px;
  }

  .contact_lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact_tel {
    font-size: 28px;
  }

  .contact_hours {
    font-size: 13px;
    text-align: center;
  }

  .contact_row,
  .contact_row--textarea {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: 0;
    padding-block: 20px;
  }

  .contact_label {
    width: 100%;
    gap: 12px;
  }

  .contact_field input,
  .contact_field textarea {
    max-width: none;
  }

  .contact_agree {
    gap: 24px;
    padding-top: 28px;
  }

  .contact_agree_label,
  .contact_agree .wpcf7-list-item-label {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact_privacy_title {
    font-size: 14px;
  }

  .contact_privacy_body {
    width: 100%;
    height: 163px;
    font-size: 14px;
  }

  .wpcf7 form {
    gap: 40px;
  }

  .contact_field .wpcf7-form-control-wrap,
  .contact_field .wpcf7-form-control {
    max-width: none;
  }

  .contact_thanks {
    gap: 20px;
    padding: 40px 20px;
  }

  .contact_thanks h2 {
    font-size: 22px;
  }

  .contact_thanks_text,
  .contact_thanks_note {
    font-size: 14px;
    line-height: 1.8;
  }

  .btn_rect {
    width: 100%;
    min-width: 0;
  }

  .staff_banner {
    padding: 28px 16px;
  }

  .staff_banner_text {
    font-size: 16px;
    line-height: 1.5;
  }

  /* スタッフカード横スクロールは SP（〜1000px）のみ */
  .staff_voices {
    --staff-card-w: min(360px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-block: 40px 48px;
    padding-inline: 0;
  }

  .staff_voices_pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .staff_voices_pager[hidden] {
    display: none;
  }

  .staff_voices_dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfd8e3;
    cursor: pointer;
  }

  .staff_voices_dot.is-active {
    background: var(--main-color);
  }

  .staff_voices_inner {
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-block: 4px 14px;
    padding-inline: calc((100% - var(--staff-card-w)) / 2);
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100% - var(--staff-card-w)) / 2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .staff_voices_inner::-webkit-scrollbar {
    display: none;
  }

  .staff_card {
    flex: 0 0 var(--staff-card-w);
    gap: 12px;
    height: auto;
    padding: 20px;
    scroll-snap-align: center;
  }

  .staff_card_title {
    font-size: 16px;
  }

  .staff_card_lead {
    font-size: 13px;
  }

  .staff_env {
    padding-block: 40px 48px;
  }

  .staff_env_heading {
    font-size: 24px;
  }

  .staff_env_list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .staff_env_card {
    gap: 10px;
    padding: 16px;
  }

  .staff_env_card h3 {
    font-size: 16px;
  }

  .staff_env_card p {
    font-size: 13px;
  }

  .news_archive_inner {
    gap: 40px;
    padding-block: var(--section-space);
  }

  .news_archive_inner > h2 {
    font-size: 24px;
  }

  .news_archive_body {
    gap: 32px;
    width: 100%;
  }

  .pagination_link {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .news_single_inner {
    gap: 32px;
    padding-block: var(--section-space);
  }

  .news_single_inner > h2 {
    font-size: 24px;
  }

  .news_single_body {
    gap: 40px;
    width: 100%;
  }

  .news_single_card {
    gap: 40px;
    padding: 40px 24px;
  }

  .news_single_deco {
    width: 56px;
    height: 50px;
  }

  .news_single_meta {
    gap: 12px;
    flex-wrap: wrap;
  }

  .news_single_meta time {
    font-size: 14px;
    line-height: 1.6;
  }

  .news_single_title {
    font-size: 18px;
    line-height: 1.5;
  }

  .news_single_content {
    font-size: 14px;
    line-height: 1.9;
  }

  .news_single_nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding-block: 0;
  }

  .news_single_nav_item {
    width: auto;
    gap: 12px;
  }

  .news_single_nav_item--next {
    justify-content: flex-end;
    text-align: right;
  }

  .news_single_back .btn_pill--primary {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }

  .about_inner {
    gap: 64px;
    padding-block: var(--section-space);
  }

  .about_catch {
    gap: 12px;
    align-items: center;
  }

  .about_catch p {
    justify-content: center;
  }

  .about_catch_lead {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .about_catch span {
    width: auto;
    max-width: 100%;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  .about_catch .about_catch_pc {
    display: none;
  }

  .about_catch .about_catch_sp {
    display: inline-block;
  }

  .about_heading {
    font-size: 24px;
  }

  .about_heading::after {
    width: 72px;
    height: 4px;
  }

  .about_profile > div {
    grid-template-columns: 1fr;
  }

  .about_profile dt,
  .about_profile dd {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .about_profile dt {
    justify-content: flex-start;
    text-align: left;
    border-bottom: 0;
  }

  .about_profile dd {
    border-left: 1px solid #bbbbbb;
  }

  .about_profile > div + div dt {
    border-top: 0;
  }

  .about_history {
    width: 100%;
  }

  .about_history li {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4px 12px;
    padding-left: 36px;
    font-size: 14px;
    line-height: 1.6;
  }

  .about_history::before {
    left: 8px;
  }

  .about_history li::before {
    width: 16px;
    height: 16px;
  }

  .about_history time,
  .about_history_now {
    width: auto;
    min-width: 7.5em;
  }

  .about_message {
    gap: 24px;
    padding: 0;
  }

  .about_message_lead {
    font-size: 18px;
  }

  .about_message_body {
    font-size: 14px;
    line-height: 1.9;
  }

  .about_message_sign {
    font-size: 14px;
    line-height: 1.6;
  }

  .service_banner {
    padding: 28px 16px;
  }

  .service_banner_text {
    font-size: 18px;
  }

  .service_item,
  .service_item--01,
  .service_item--02,
  .service_item--03 {
    min-height: 0;
    padding-block: var(--section-space);
  }

  .service_item > .wrap {
    padding-block: 0;
  }

  .service_item_body {
    flex-direction: column;
    align-items: stretch;
  }

  .service_item_media,
  .service_item--01 .service_item_media,
  .service_item--02 .service_item_media,
  .service_item--03 .service_item_media {
    order: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .service_item_panel,
  .service_item--01 .service_item_panel,
  .service_item--02 .service_item_panel,
  .service_item--03 .service_item_panel {
    order: 0;
    width: 100%;
    margin: -32px 0 0;
    padding: 24px 20px;
  }

  .service_item_num,
  .service_item--01 .service_item_num,
  .service_item--02 .service_item_num,
  .service_item--03 .service_item_num {
    top: 24px;
    right: 16px;
    bottom: auto;
    left: auto;
    font-size: 72px;
    opacity: 0.25;
  }

  .service_item--02 .service_item_num {
    right: auto;
    left: 16px;
  }

  .service_item_title {
    min-height: 34px;
    font-size: 20px;
  }

  .service_item_panel p {
    font-size: 14px;
    line-height: 1.8;
  }

  .service_item_deco,
  .service_item--01 .service_item_deco,
  .service_item--02 .service_item_deco,
  .service_item--03 .service_item_deco {
    display: none;
  }

  .who {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
  }

  .who.section_bg::before {
    display: none;
  }

  .who_media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .who_media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .who_panel {
    width: 100%;
    min-height: 0;
    margin-block: 0;
    padding: var(--section-space) 24px;
    gap: 20px;
  }

  .who_en {
    font-size: 16px;
  }

  .who_panel h2 {
    font-size: 24px;
    margin-top: 8px;
  }

  .who_text {
    font-size: 14px;
    line-height: 1.9;
  }

  .who_panel .btn_border {
    align-self: flex-start;
    min-width: 0;
    width: 100%;
    font-size: 14px;
    border-width: 2px;
  }

  .strengths {
    padding: var(--section-space) 0;
  }

  .strengths_inner {
    gap: 36px;
  }

  .strengths_head h2 {
    font-size: 22px;
    letter-spacing: 0.04em;
  }

  .strengths_num {
    font-size: 36px;
  }

  .strengths_lead {
    font-size: 14px;
  }

  .strengths_list {
    gap: 28px;
  }

  .strength_card {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    min-height: 0;
    padding: 28px 20px;
  }

  .strength_card_title {
    gap: 12px;
  }

  .strength_card_num {
    font-size: 48px;
  }

  .strength_card_title h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .strength_card_body > p {
    font-size: 14px;
    line-height: 1.8;
  }

  .strength_card_icon {
    order: -1;
  }

  .strength_card_icon img,
  .strength_card_icon--wide img {
    width: 120px;
  }

  .recruit_inner {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: var(--section-space) 0;
    gap: 32px;
    order: 1;
  }

  .recruit_content {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .recruit_content h2 {
    font-size: 28px;
    letter-spacing: 0.08em;
  }

  .recruit_en {
    font-size: 18px;
  }

  .recruit_text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn_pill--outline_green {
    width: auto;
    justify-content: center;
    font-size: 16px;
    padding: 14px 28px;
  }

  .recruit {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .recruit_photos {
    position: relative;
    right: auto;
    top: auto;
    order: 2;
    display: block;
    width: 90%;
    max-width: none;
    height: auto;
    margin: 0 0 24px auto;
    transform: none;
  }

  .recruit_wave {
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    bottom: 0;
  }

  .site_footer {
    padding-top: var(--section-space);
  }

  .site_footer_inner {
    flex-direction: column;
    gap: 28px;
    padding-bottom: var(--section-space);
  }

  .site_footer_logo img {
    width: 220px;
  }

  .footer_nav_list {
    justify-content: flex-start;
    gap: 12px 16px;
  }
}

/* ========================================
   PC overrides（1001px〜）
   ======================================== */
@media screen and (min-width: 1001px) {
  .news_intro .btn_pill--primary {
    margin-top: 20px;
  }

  .staff_voices {
    display: block;
    gap: 0;
  }

  .staff_voices_pager {
    display: none;
  }

  .staff_voices_inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .staff_card {
    flex: none;
    width: auto;
    max-width: none;
    height: 100%;
    scroll-snap-align: none;
  }
}
