@property --chart-reveal {
  syntax: "<angle>";
  initial-value: 360deg;
  inherits: false;
}

/* Fade-in from left (共通アニメーション) */
.js-fade-left.is-ready {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* techpit
================================================ */

/* 共通ヘッディング（ボックス型セクションタイトル）
================================================ */
.techpit-heading,
.techpit-heading--white {
  display: inline-block;
  font-size: min(calc(25 / 1366 * 100vw), 25px);
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 5px;
}

.techpit-heading {
  color: #fff;
  background-color: #152a6d;
}

.techpit-heading--white {
  background-color: #fff;
  color: #152a6d;
}

/* Section 1: Issue
================================================ */
.techpit-issue {
  padding: min(calc(100 / 1366 * 100vw), 100px) min(calc(200 / 1366 * 100vw), 200px);
  background: linear-gradient(90deg, #bcbcbc 60%, #818181 100%);
}

.techpit-issue__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(30 / 1366 * 100vw), 30px);
  text-align: center;
}

.techpit-issue__label {
  display: flex;
  align-items: center;
  gap: min(calc(5 / 1366 * 100vw), 5px);
  font-family: var(--font-family-en);
  font-size: min(calc(14 / 1366 * 100vw), 14px);
  font-weight: 700;
  color: #000;
}

.techpit-issue__label-icon {
  width: min(calc(20 / 1366 * 100vw), 20px);
  height: auto;
}

.techpit-issue__heading {
  font-size: min(calc(25 / 1366 * 100vw), 25px);
  font-weight: 700;
  color: #000;
  line-height: min(calc(40 / 1366 * 100vw), 40px);
}

.techpit-issue__heading-row {
  display: flex;
  gap: min(calc(15 / 1366 * 100vw), 15px);
  align-items: center;
  justify-content: center;
}

.techpit-issue__badge {
  background-color: #000;
  color: #fff;
  font-size: min(calc(35 / 1366 * 100vw), 35px);
  font-weight: 700;
  padding: min(calc(10 / 1366 * 100vw), 10px) min(calc(15 / 1366 * 100vw), 15px);
  border-radius: min(calc(10 / 1366 * 100vw), 10px);
  line-height: min(calc(40 / 1366 * 100vw), 40px);
}

.techpit-issue__list {
  display: flex;
  flex-direction: column;
  margin-top: min(calc(50 / 1366 * 100vw), 50px);
  max-width: min(calc(966 / 1366 * 100vw), 966px);
  margin-left: auto;
  margin-right: auto;
}

.techpit-issue__row {
  display: flex;
  gap: min(calc(10 / 1366 * 100vw), 10px);
  height: min(calc(98 / 1366 * 100vw), 98px);
}

.techpit-issue__avatar {
  width: min(calc(98 / 1366 * 100vw), 98px);
  height: 100%;
  background: #fff url("../../images/recruitment/tech-pit/avatar_person.svg") no-repeat center bottom;
  background-size: 85% auto;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.techpit-issue__row--right .techpit-issue__avatar {
  transform: scaleX(-1);
}

.techpit-issue__content {
  display: flex;
  flex: 1 0 0;
  height: 100%;
  align-items: center;
  padding: min(calc(10 / 1366 * 100vw), 10px) 0;
}

.techpit-issue__row--left .techpit-issue__content {
  justify-content: flex-end;
}

.techpit-issue__tail {
  display: flex;
  align-items: flex-end;
  height: 100%;
  flex-shrink: 0;
}

.techpit-issue__row--left .techpit-issue__tail {
  transform: scaleX(-1);
  margin-left: -1px;
}

.techpit-issue__tail-item {
  width: min(calc(19 / 1366 * 100vw), 19px);
  height: min(calc(19 / 1366 * 100vw), 19px);
  display: block;
}

.techpit-issue__bubble {
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: min(calc(10 / 1366 * 100vw), 10px);
  padding: 0 min(calc(30 / 1366 * 100vw), 30px);
  font-size: min(calc(18 / 1366 * 100vw), 18px);
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: calc(34 / 18);
}

.techpit-issue__row--right .techpit-issue__bubble {
  border-radius: min(calc(10 / 1366 * 100vw), 10px) min(calc(10 / 1366 * 100vw), 10px)
    min(calc(10 / 1366 * 100vw), 10px) 0;
  margin-left: -1px;
}

.techpit-issue__row--left .techpit-issue__bubble {
  border-radius: min(calc(10 / 1366 * 100vw), 10px) min(calc(10 / 1366 * 100vw), 10px) 0;
}

.techpit-issue__bubble p {
  font-size: inherit;
}

.techpit-issue__em {
  color: #0f76b5;
  font-size: min(calc(24 / 1366 * 100vw), 24px);
  line-height: calc(34 / 24);
}

/* Section 2: Bridge
================================================ */
.techpit-bridge {
  position: relative;
  background: linear-gradient(to right, #152a6d 49.52%, #f61a3c);
  padding: min(calc(150 / 1366 * 100vw), 150px) 0;
  text-align: center;
}

.techpit-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: min(calc(80 / 1366 * 100vw), 80px) solid transparent;
  border-right: min(calc(80 / 1366 * 100vw), 80px) solid transparent;
  border-top: min(calc(60 / 1366 * 100vw), 60px) solid #bcbcbc;
}

.techpit-bridge__inner {
  display: flex;
  flex-direction: column;
  gap: min(calc(30 / 1366 * 100vw), 30px);
  align-items: center;
}

.techpit-bridge__text {
  font-size: min(calc(35 / 1366 * 100vw), 35px);
  font-weight: 700;
  color: #fff;
}

.techpit-bridge__box {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  text-align: center;
}

.techpit-bridge__name {
  font-size: min(calc(56 / 1366 * 100vw), 56px);
  font-weight: 700;
  color: #152a6d;
  line-height: 1.3;
}

/* Section 3: Feature
================================================ */
.techpit-feature {
  background-color: #e4e7f1;
}

.techpit-feature__inner {
  max-width: 966px;
  margin: 0 auto;
  padding: min(calc(100 / 1366 * 100vw), 100px) min(calc(20 / 1366 * 100vw), 20px) 0;
}

.techpit-feature__badge {
  font-size: min(calc(35 / 1366 * 100vw), 35px);
  font-weight: 700;
  color: #fff;
  background-color: #152a6d;
  border-radius: 5px;
  padding: 10px 15px;
  width: fit-content;
  margin: 0 auto;
}

.techpit-feature__subtitle {
  font-size: min(calc(24 / 1366 * 100vw), 24px);
  font-weight: 700;
  color: #152a6d;
  text-align: center;
  margin-top: min(calc(30 / 1366 * 100vw), 30px);
}

.techpit-feature__card {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 10px;
  padding: min(calc(50 / 1366 * 100vw), 50px);
  margin-top: min(calc(100 / 1366 * 100vw), 100px);
}

.techpit-feature__card.is-ready > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.techpit-feature__card.is-animated > * {
  opacity: 1;
  transform: translateY(0);
}

.techpit-feature__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(30 / 1366 * 100vw), 30px);
}

.techpit-feature__icon {
  max-width: min(calc(200 / 1366 * 100vw), 200px);
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  background-color: #e4e7f1;
  border-radius: 50%;
}

.techpit-feature__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 105%;
  max-height: 100%;
  z-index: 1;
}

.techpit-feature__text {
  font-size: min(calc(18 / 1366 * 100vw), 18px);
  font-weight: 700;
  color: #152a6d;
  text-align: center;
  line-height: calc(26 / 18);
}

.techpit-feature__symbol {
  font-size: min(calc(40 / 1366 * 100vw), 40px);
  font-weight: 700;
  color: #152a6d;
  padding: 0 min(calc(15 / 1366 * 100vw), 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(calc(200 / 1366 * 100vw), 200px);
  flex-shrink: 0;
}

/* Section 4: Service
================================================ */
.techpit-service {
  background-color: #e4e7f1;
  padding: min(calc(100 / 1366 * 100vw), 100px) 0;
}

.techpit-service__inner {
  max-width: 966px;
  margin: 0 auto;
  padding: min(calc(100 / 1366 * 100vw), 100px) min(calc(50 / 1366 * 100vw), 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
}

.techpit-service__block {
  position: relative;
  width: 100%;
  background-color: #e4e7f1;
  border-radius: 10px;
  padding: min(calc(30 / 1366 * 100vw), 30px) min(calc(50 / 1366 * 100vw), 50px);
}

.techpit-service__block-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: min(calc(45 / 1366 * 100vw), 45px);
  height: min(calc(45 / 1366 * 100vw), 45px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(calc(24 / 1366 * 100vw), 24px);
  font-weight: 700;
  color: #fff;
  background-color: #152a6d;
}

.techpit-service__block-title {
  font-size: min(calc(35 / 1366 * 100vw), 35px);
  font-weight: 700;
  color: #152a6d;
  margin-bottom: min(calc(30 / 1366 * 100vw), 30px);
}

.techpit-service__separator {
  width: min(calc(40 / 1366 * 100vw), 40px);
  margin: min(calc(18 / 1366 * 100vw), 18px) auto;
}

.techpit-service__separator img {
  width: 100%;
}

/* Service: Consulting Flow (01) */
.techpit-consult {
  display: flex;
  flex-direction: column;
}

.techpit-consult__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: min(calc(30 / 1366 * 100vw), 30px);
  padding: calc(3px + min(calc(15 / 1366 * 100vw), 15px)) calc(3px + min(calc(20 / 1366 * 100vw), 20px));
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
  border-radius: 10px;
}

.techpit-consult__step::before {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: #fff;
  border-radius: 7px;
  z-index: 0;
}

.techpit-consult__step > *:not(.techpit-consult__num) {
  position: relative;
  z-index: 1;
}

.techpit-consult__num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
}

.techpit-consult__illust {
  width: min(calc(86 / 1366 * 100vw), 86px);
  flex-shrink: 0;
}

.techpit-consult__illust img {
  width: 100%;
}

.techpit-consult__text {
  font-size: min(calc(24 / 1366 * 100vw), 24px);
  font-weight: 600;
  color: #000;
}

.techpit-consult__detail {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.techpit-consult__detail li::before {
  content: "・";
}

.techpit-consult__arrow {
  width: min(calc(30 / 1366 * 100vw), 30px);
  margin: 10px auto;
}

.techpit-consult__arrow img {
  width: 100%;
}

/* Service: Comparison Flow (02) — refapit-rc-flow pattern */
.techpit-flow__header {
  display: flex;
  gap: min(calc(20 / 1366 * 100vw), 20px);
  margin-bottom: min(calc(20 / 1366 * 100vw), 20px);
}

.techpit-flow__header-label {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: min(calc(18 / 1366 * 100vw), 18px);
  font-weight: 700;
  color: #fff;
  height: min(calc(38 / 1366 * 100vw), 38px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.techpit-flow__header-label--techpit {
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
}

.techpit-flow__header-label--other {
  background-color: #6b738e;
}

.techpit-flow__row {
  display: flex;
  gap: min(calc(20 / 1366 * 100vw), 20px);
}

.techpit-flow__step {
  flex: 1;
  position: relative;
  background-color: #fff;
  border: 1px solid #e4e7f1;
  border-radius: 10px;
  padding: min(calc(30 / 1366 * 100vw), 30px) min(calc(20 / 1366 * 100vw), 20px) min(calc(20 / 1366 * 100vw), 20px);
}

/* TechPit step: gradient border */
.techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty) {
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
  border: none;
  padding: calc(3px + min(calc(30 / 1366 * 100vw), 30px)) calc(3px + min(calc(20 / 1366 * 100vw), 20px))
    calc(3px + min(calc(20 / 1366 * 100vw), 20px));
}

.techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty)::before {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: #fff;
  border-radius: 7px;
  z-index: 0;
}

.techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty) > *:not(.techpit-flow__step-num) {
  position: relative;
  z-index: 1;
}

.techpit-flow__step--empty {
  background: rgb(255 255 255 / 50%);
  border: 2px dashed #6b738e;
}

/* Other step: gray border */
.techpit-flow__step--other:not(.techpit-flow__step--empty) {
  border: 3px solid #6b738e;
}

.techpit-flow__step-num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.techpit-flow__step--other .techpit-flow__step-num {
  background: #6b738e;
}

.techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty) .techpit-flow__step-num {
  z-index: 1;
}

.techpit-flow__step-title {
  text-align: center;
  font-size: min(calc(24 / 1366 * 100vw), 24px);
  font-weight: 700;
  color: #152a6d;
  padding-bottom: min(calc(15 / 1366 * 100vw), 15px);
}

.techpit-flow__step--other .techpit-flow__step-title {
  color: #000;
}

.techpit-flow__step-line {
  width: 100%;
  height: 1px;
  background-color: #e4e7f1;
}

.techpit-flow__step--other .techpit-flow__step-line {
  height: 3px;
  background-color: #6b738e;
  border-radius: 2px;
}

.techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty) .techpit-flow__step-line {
  height: 3px;
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
  border-radius: 2px;
}

.techpit-flow__step-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: min(calc(20 / 1366 * 100vw), 20px);
  padding-top: min(calc(15 / 1366 * 100vw), 15px);
}

.techpit-flow__step-icon {
  width: min(calc(56 / 1366 * 100vw), 56px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.techpit-flow__step-icon img {
  max-width: 100%;
  height: auto;
}

.techpit-flow__step-content p {
  font-size: min(calc(14 / 1366 * 100vw), 14px);
  line-height: calc(20 / 14);
  color: #000;
  font-weight: 600;
}

.techpit-flow__connector {
  position: relative;
  height: min(calc(31 / 1366 * 100vw), 31px);
}

.techpit-flow__connector-bar {
  position: absolute;
  top: 0;
  left: min(calc(50 / 1366 * 100vw), 50px);
  width: 3px;
  height: min(calc(31 / 1366 * 100vw), 31px);
  background-color: #152a6d;
  border-radius: 2px;
}

.techpit-flow__connector-bar--right {
  left: calc(50% + min(calc(90 / 1366 * 100vw), 90px));
  background-color: #6b738e;
}

/* Service: Career Support (03) */
.techpit-career {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.techpit-career__heading {
  font-size: min(calc(25 / 1366 * 100vw), 25px);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
  padding: min(calc(15 / 1366 * 100vw), 15px) 10px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.techpit-career__columns {
  display: flex;
  gap: min(calc(30 / 1366 * 100vw), 30px);
  padding: min(calc(30 / 1366 * 100vw), 30px);
}

.techpit-career__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: min(calc(20 / 1366 * 100vw), 20px);
}

.techpit-career__label {
  display: flex;
  align-items: center;
  gap: min(calc(30 / 1366 * 100vw), 30px);
  font-size: min(calc(18 / 1366 * 100vw), 18px);
  font-weight: 700;
  color: #000;
  text-align: center;
}

.techpit-career__label::before,
.techpit-career__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #000;
}

.techpit-career__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.techpit-career__list li {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(calc(24 / 1366 * 100vw), 24px);
  font-weight: 700;
  color: #fff;
  background-color: #152a6d;
  padding: min(calc(20 / 1366 * 100vw), 20px) min(calc(25 / 1366 * 100vw), 25px);
  text-align: center;
  line-height: calc(30 / 24);
}

.techpit-career__list li span {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Service block: row-by-row fade-in */
.techpit-service__block.is-ready .techpit-consult__step,
.techpit-service__block.is-ready .techpit-consult__arrow,
.techpit-service__block.is-ready .techpit-flow__row,
.techpit-service__block.is-ready .techpit-flow__connector,
.techpit-service__block.is-ready .techpit-career__column {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.techpit-service__block.is-ready .techpit-consult__step.is-visible,
.techpit-service__block.is-ready .techpit-consult__arrow.is-visible,
.techpit-service__block.is-ready .techpit-flow__row.is-visible,
.techpit-service__block.is-ready .techpit-flow__connector.is-visible,
.techpit-service__block.is-ready .techpit-career__column.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.techpit-service__block.is-ready .techpit-career__column:nth-child(2).is-visible {
  transition-delay: 0.4s;
}

/* Section 5: Achievement
================================================ */
.techpit-achievement {
  background: linear-gradient(to right, #152a6d 49.52%, #f61a3c);
  padding: min(calc(100 / 1366 * 100vw), 100px) 0;
  text-align: center;
}

.techpit-achievement__wrap {
  position: relative;
  width: min(calc(966 / 1366 * 100vw), 966px);
  margin: min(calc(100 / 1366 * 100vw), 100px) auto 0;
  display: flex;
  flex-direction: column;
  gap: min(calc(50 / 1366 * 100vw), 50px);
}

.techpit-achievement__contents {
  position: relative;
  background-color: #fff;
  padding: min(calc(100 / 1366 * 100vw), 100px) 0;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}

.techpit-achievement__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(calc(30 / 1366 * 100vw), 30px);
  margin: min(calc(50 / 1366 * 100vw), 50px) min(calc(50 / 1366 * 100vw), 50px) 0;
}

.techpit-achievement__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: min(calc(50 / 1366 * 100vw), 50px);
  color: #152a6d;
  padding: min(calc(40 / 1366 * 100vw), 40px);
  background-color: #e4e7f1;
  border-radius: 10px;
  text-align: center;
}

.techpit-achievement__label {
  display: block;
  font-size: min(calc(18 / 1366 * 100vw), 18px);
  font-weight: 700;
  background: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
  color: #fff;
  padding: 10px min(calc(30 / 1366 * 100vw), 30px);
  border-radius: 5px;
}

.techpit-achievement__illust {
  width: min(calc(150 / 1366 * 100vw), 150px);
  height: min(calc(150 / 1366 * 100vw), 150px);
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: center;
}

.techpit-achievement__number {
  font-size: min(calc(90 / 1366 * 100vw), 90px);
  font-weight: 700;
  white-space: nowrap;
}

.techpit-achievement__number {
  font-family: var(--font-family-en);
}

.techpit-achievement__number small {
  font-size: min(calc(50 / 1366 * 100vw), 50px);
}

.techpit-achievement__number small span {
  font-size: min(calc(30 / 1366 * 100vw), 30px);
  font-family: var(--font-family-primary);
}

/* Achievement: Profiles */
.techpit-achievement__profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(calc(30 / 1366 * 100vw), 30px);
  margin: min(calc(50 / 1366 * 100vw), 50px) min(calc(50 / 1366 * 100vw), 50px) 0;
}

.techpit-achievement__profile {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #152a6d;
  overflow: hidden;
}

.techpit-achievement__profile-header {
  display: flex;
  align-items: center;
  gap: min(calc(20 / 1366 * 100vw), 20px);
  padding: min(calc(25 / 1366 * 100vw), 25px) min(calc(30 / 1366 * 100vw), 30px);
  background-color: #152a6d;
}

.techpit-achievement__profile-avatar {
  width: min(calc(77 / 1366 * 100vw), 77px);
  height: min(calc(77 / 1366 * 100vw), 77px);
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.techpit-achievement__profile-avatar img {
  width: auto;
  max-height: 100%;
}

.techpit-achievement__profile-career {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.techpit-achievement__profile-salary {
  font-size: min(calc(20 / 1366 * 100vw), 20px);
  font-weight: 700;
  color: #fff;
  margin-top: 5px;
  white-space: nowrap;
  text-align: left;
}

.techpit-achievement__profile-salary small {
  font-size: min(calc(10 / 1366 * 100vw), 10px);
  vertical-align: baseline;
}

.techpit-achievement__profile-salary .arrow {
  display: inline-block;
  background-color: #fff;
  width: min(calc(10 / 1366 * 100vw), 10px);
  height: min(calc(10 / 1366 * 100vw), 10px);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.techpit-achievement__profile-salary span {
  font-size: min(calc(30 / 1366 * 100vw), 30px);
  vertical-align: baseline;
}

.techpit-achievement__profile-arrow {
  background-color: #fff;
  width: min(calc(10 / 1366 * 100vw), 10px);
  height: min(calc(10 / 1366 * 100vw), 10px);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.techpit-achievement__profile-name {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

.techpit-achievement__profile-text {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: #000;
  line-height: 1.6;
  padding: min(calc(20 / 1366 * 100vw), 20px) min(calc(30 / 1366 * 100vw), 30px);
}

/* Section 6: Voice
================================================ */
.techpit-voice {
  padding: min(calc(100 / 1366 * 100vw), 100px) 0;
  text-align: center;
}

.techpit-voice .techpit-heading {
  font-size: min(calc(35 / 1366 * 100vw), 35px);
}

.techpit-voice__wrap {
  width: min(calc(966 / 1366 * 100vw), 966px);
  background-color: #e4e7f1;
  padding: min(calc(50 / 1366 * 100vw), 50px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: min(calc(50 / 1366 * 100vw), 50px);
  margin: min(calc(100 / 1366 * 100vw), 100px) auto 0;
  text-align: left;
}

.techpit-voice__item {
  display: flex;
  align-items: flex-end;
  gap: min(calc(20 / 1366 * 100vw), 20px);
}

.techpit-voice__avatar {
  width: min(calc(150 / 1366 * 100vw), 150px);
  height: min(calc(150 / 1366 * 100vw), 150px);
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.techpit-voice__tail {
  flex-shrink: 0;
  align-self: center;
  margin-right: calc(-1 * min(calc(20 / 1366 * 100vw), 20px));
  transform: scaleX(-1);
}

.techpit-voice__tail img {
  display: block;
  width: min(calc(30 / 1366 * 100vw), 30px);
  height: min(calc(30 / 1366 * 100vw), 30px);
}

.techpit-voice__item--left .techpit-voice__tail {
  margin-right: 0;
  margin-left: calc(-1 * min(calc(20 / 1366 * 100vw), 20px));
  transform: none;
}

.techpit-voice__card {
  flex: 1;
  min-width: 0;
  background-color: #152a6d;
  color: #fff;
  padding: min(calc(30 / 1366 * 100vw), 30px) min(calc(50 / 1366 * 100vw), 50px);
  border-radius: 10px;
}

.techpit-voice__job {
  font-size: min(calc(24 / 1366 * 100vw), 24px);
  font-weight: 700;
  padding-bottom: min(calc(15 / 1366 * 100vw), 15px);
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  margin-bottom: min(calc(15 / 1366 * 100vw), 15px);
}

.techpit-voice__text {
  font-size: min(calc(14 / 1366 * 100vw), 14px);
  font-weight: 600;
  line-height: calc(21 / 14);
}

/* SP
================================================ */
@media screen and (width <= 750px) {
  .techpit-heading,
  .techpit-heading--white {
    font-size: calc(20 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(12 / 375 * 100vw);
  }

  /* Section 1: Issue */
  .techpit-issue {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw);
  }

  .techpit-issue__header {
    gap: calc(15 / 375 * 100vw);
  }

  .techpit-issue__label {
    font-size: calc(12 / 375 * 100vw);
  }

  .techpit-issue__label-icon {
    width: calc(20 / 375 * 100vw);
  }

  .techpit-issue__heading {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
  }

  .techpit-issue__heading-row {
    gap: calc(10 / 375 * 100vw);
  }

  .techpit-issue__badge {
    font-size: calc(24 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(15 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
  }

  .techpit-issue__list {
    margin-top: calc(30 / 375 * 100vw);
    max-width: none;
  }

  .techpit-issue__row {
    height: auto;
    gap: calc(5 / 375 * 100vw);
    align-items: flex-end;
  }

  .techpit-issue__avatar {
    width: calc(50 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    background-size: 85% auto;
  }

  .techpit-issue__content {
    height: auto;
    align-items: flex-end;
    padding: calc(5 / 375 * 100vw) 0;
    min-width: 0;
  }

  .techpit-issue__tail {
    height: auto;
  }

  .techpit-issue__tail-item {
    width: calc(10 / 375 * 100vw);
    height: calc(10 / 375 * 100vw);
  }

  .techpit-issue__bubble {
    display: block;
    padding: calc(12 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    flex-shrink: 1;
    line-height: calc(24 / 14);
    white-space: normal;
  }

  .techpit-issue__row--right .techpit-issue__bubble {
    border-radius: calc(5 / 375 * 100vw) calc(5 / 375 * 100vw) calc(5 / 375 * 100vw) 0;
  }

  .techpit-issue__row--left .techpit-issue__bubble {
    border-radius: calc(5 / 375 * 100vw) calc(5 / 375 * 100vw) 0;
  }

  .techpit-issue__em {
    font-size: calc(18 / 375 * 100vw);
  }

  .techpit-bridge {
    padding: calc(70 / 375 * 100vw) calc(20 / 375 * 100vw) calc(50 / 375 * 100vw);
  }

  .techpit-bridge::before {
    border-left: calc(40 / 375 * 100vw) solid transparent;
    border-right: calc(40 / 375 * 100vw) solid transparent;
    border-top: calc(30 / 375 * 100vw) solid #bcbcbc;
  }

  .techpit-bridge__inner {
    gap: calc(10 / 375 * 100vw);
  }

  .techpit-bridge__box {
    border-radius: calc(5 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(15 / 375 * 100vw);
  }

  .techpit-bridge__name {
    font-size: calc(24 / 375 * 100vw);
    line-height: 1.2;
  }

  .techpit-bridge__text {
    font-size: calc(18 / 375 * 100vw);
  }

  /* Section 3: Feature */
  .techpit-feature__inner {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw);
  }

  .techpit-feature__badge {
    font-size: calc(24 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(15 / 375 * 100vw);
  }

  .techpit-feature__subtitle {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(24 / 18);
    margin-top: calc(15 / 375 * 100vw);
  }

  .techpit-feature__card {
    flex-direction: column;
    align-items: stretch;
    padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
    margin-top: calc(50 / 375 * 100vw);
    gap: calc(10 / 375 * 100vw);
  }

  .techpit-feature__item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex: none;
    gap: calc(40 / 375 * 100vw);
    padding-left: calc(33 / 375 * 100vw);
  }

  .techpit-feature__icon {
    width: calc(60 / 375 * 100vw);
    max-width: calc(60 / 375 * 100vw);
    flex-shrink: 0;
  }

  .techpit-feature__img {
    max-height: 117%;
  }

  .techpit-feature__icon--01 img {
    max-width: calc(100 / 375 * 100vw);
    max-height: 150%;
  }

  .techpit-feature__text {
    font-size: calc(14 / 375 * 100vw);
    text-align: left;
  }

  .techpit-feature__symbol {
    font-size: calc(24 / 375 * 100vw);
    padding: 0;
    display: block;
    height: auto;
    align-self: flex-start;
    margin-left: calc(133 / 375 * 100vw);
    width: fit-content;
  }

  .techpit-feature__symbol:last-of-type {
    transform: rotate(90deg);
  }

  .techpit-consult__text {
    font-size: calc(14 / 375 * 100vw);
    text-align: center;
  }

  /* Section 4: Service */
  .techpit-service {
    padding-top: calc(50 / 375 * 100vw);
    overflow: hidden;
  }

  .techpit-service__separator {
    width: calc(30 / 375 * 100vw);
    margin: calc(10 / 375 * 100vw) auto;
  }

  .techpit-service__inner {
    padding: calc(30 / 375 * 100vw) calc(15 / 375 * 100vw);
  }

  .techpit-service__block {
    padding: calc(30 / 375 * 100vw) calc(25 / 375 * 100vw);
  }

  .techpit-service__block-number {
    width: calc(35 / 375 * 100vw);
    height: calc(35 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }

  .techpit-service__block-title {
    font-size: calc(24 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
    text-align: center;
    line-height: calc(32 / 24);
  }

  .techpit-consult__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: calc(10 / 375 * 100vw);
    padding: calc(3px + 20 / 375 * 100vw);
  }

  .techpit-consult__num {
    font-size: 11px;
  }

  .techpit-consult__illust {
    width: calc(56 / 375 * 100vw);
  }

  .techpit-consult__text {
    font-size: calc(14 / 375 * 100vw);
    text-align: center;
  }

  .techpit-consult__detail {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
    gap: 0;
    text-align: center;
  }

  .techpit-consult__arrow {
    width: calc(20 / 375 * 100vw);
    margin: calc(5 / 375 * 100vw) auto;
  }

  .techpit-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .techpit-flow__header {
    gap: calc(5 / 375 * 100vw);
    margin-bottom: 0;
  }

  .techpit-flow__header-label {
    font-size: calc(14 / 375 * 100vw);
    height: auto;
    padding: calc(10 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }

  .techpit-flow__row {
    gap: calc(5 / 375 * 100vw);
  }

  .techpit-flow__step {
    display: flex;
    flex-direction: column;
    padding: calc(10 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
  }

  .techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty) {
    background: #fff;
    border: 2px solid #152a6d;
    padding: calc(10 / 375 * 100vw);
  }

  .techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty)::before {
    display: none;
  }

  .techpit-flow__step:not(.techpit-flow__step--other, .techpit-flow__step--empty) > *:not(.techpit-flow__step-num) {
    position: static;
    z-index: auto;
  }

  .techpit-flow__step--other:not(.techpit-flow__step--empty) {
    border-width: 2px;
  }

  .techpit-flow__step-num {
    display: none;
  }

  .techpit-flow__step-title {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: 0;
    text-align: center;
    line-height: calc(25 / 14);
  }

  .techpit-flow__step-content {
    flex: 1;
    align-items: center;
  }

  .techpit-flow__step-icon {
    display: none;
  }

  .techpit-flow__step-content p {
    font-size: calc(10 / 375 * 100vw);
    line-height: calc(14 / 10);
  }

  .techpit-flow__connector {
    position: static;
    display: flex;
    justify-content: space-between;
    height: auto;
    padding: 0 calc(65 / 375 * 100vw);
  }

  .techpit-flow__connector-bar {
    position: static;
    width: 2px;
    height: calc(20 / 375 * 100vw);
  }

  .techpit-career {
    border-radius: calc(5 / 375 * 100vw);
  }

  .techpit-career__heading {
    font-size: calc(18 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw) calc(5 / 375 * 100vw) 0 0;
  }

  .techpit-career__columns {
    flex-direction: column;
    gap: calc(20 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw);
  }

  .techpit-career__label {
    font-size: calc(14 / 375 * 100vw);
    gap: calc(10 / 375 * 100vw);
  }

  .techpit-career__list li {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) calc(15 / 375 * 100vw);
  }

  .techpit-career__list li span {
    font-size: calc(12 / 375 * 100vw);
  }

  /* Section 6: Voice */
  .techpit-voice {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw);
  }

  .techpit-voice .techpit-heading {
    font-size: calc(20 / 375 * 100vw);
  }

  .techpit-voice__wrap {
    width: calc(335 / 375 * 100vw);
    margin-top: calc(50 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw);
    gap: calc(30 / 375 * 100vw);
  }

  .techpit-voice__item {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .techpit-voice__avatar {
    width: calc(60 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }

  .techpit-voice__tail {
    margin: 0 0 calc(-5 / 375 * 100vw) calc(100 / 375 * 100vw);
    transform: none;
  }

  .techpit-voice__tail img {
    width: calc(15 / 375 * 100vw);
    height: calc(15 / 375 * 100vw);
  }

  .techpit-voice__item--left .techpit-voice__avatar {
    order: -2;
  }

  .techpit-voice__item--left .techpit-voice__tail {
    margin: 0 0 calc(-5 / 375 * 100vw) calc(100 / 375 * 100vw);
    order: -1;
  }

  .techpit-voice__card {
    padding: calc(20 / 375 * 100vw) calc(15 / 375 * 100vw);
  }

  .techpit-voice__job {
    font-size: calc(18 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }

  .techpit-voice__text {
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.8;
  }

  /* Section 5: Achievement */
  .techpit-achievement {
    padding-top: calc(50 / 375 * 100vw);
    overflow: hidden;
  }

  .techpit-achievement__wrap {
    margin: calc(50 / 375 * 100vw) auto 0;
    padding-bottom: calc(50 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }

  .techpit-achievement__contents {
    padding: calc(35 / 375 * 100vw) 0 calc(15 / 375 * 100vw);
    width: 100%;
  }

  .techpit-achievement__list {
    grid-template-columns: 1fr;
    gap: calc(10 / 375 * 100vw);
    margin: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw) calc(50 / 375 * 100vw);
  }

  .techpit-achievement__item {
    display: grid;
    grid-template-columns: calc(65 / 375 * 100vw) 1fr;
    gap: calc(20 / 375 * 100vw);
    align-items: center;
    padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
    text-align: left;
  }

  .techpit-achievement__label {
    grid-column: 1 / -1;
    font-size: calc(14 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(20 / 375 * 100vw);
    text-align: center;
  }

  .techpit-achievement__illust {
    width: calc(65 / 375 * 100vw);
    height: calc(65 / 375 * 100vw);
  }

  .techpit-achievement__number {
    font-size: calc(48 / 375 * 100vw);
    text-align: center;
    white-space: normal;
  }

  .techpit-achievement__number small {
    font-size: calc(20 / 375 * 100vw);
  }

  .techpit-achievement__number small span {
    font-size: calc(20 / 375 * 100vw);
  }

  .techpit-achievement__profiles {
    grid-template-columns: 1fr;
    gap: calc(15 / 375 * 100vw);
    margin: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw) 0;
  }

  .techpit-achievement__profile-header {
    gap: calc(10 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw);
  }

  .techpit-achievement__profile-avatar {
    width: calc(55 / 375 * 100vw);
    height: calc(55 / 375 * 100vw);
  }

  .techpit-achievement__profile-salary {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }

  .techpit-achievement__profile-salary small {
    font-size: calc(10 / 375 * 100vw);
  }

  .techpit-achievement__profile-salary .arrow {
    width: calc(8 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
    margin: 0 3px;
  }

  .techpit-achievement__profile-arrow {
    width: calc(8 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
    margin: 0 3px;
  }

  .techpit-achievement__profile-salary span {
    font-size: calc(24 / 375 * 100vw);
  }

  .techpit-achievement__profile-text {
    font-size: calc(12 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
