@charset "UTF-8";
/* リキッドレイアウト対応 */
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: 1060px;
  --padding-inner: 20px;
  /* z-index */
  --z-index-header: 900;
  /* color（mcp-log/top/variables.md 準拠） */
  --color-white: #fff;
  --color-black: #000;
  --color-text: #2c2c2c; /* 基本テキスト色 */
  --color-bg: #f7f4ef; /* ページ全体の地色（生成り） */
  --color-primary: #ff8000; /* ブランドオレンジ（ボタン・主要装飾） */
  --color-red: #d41e20; /* 赤（アイコン・装飾） */
  --color-red-accent: #c8102e; /* 濃い赤（数値強調テキスト） */
  --color-yellow: #ffdc00; /* イエロー（装飾・▶アイコン） */
  --color-cream: #fffbdc; /* 淡いクリーム（条件説明の背景） */
  --color-cream-yellow: #fff9cb; /* 淡いイエロー（Polygon背景） */
  --color-gray: #eaeaea; /* 区切りグレー背景 */
  --color-brown: #ac8a82; /* くすみブラウン（STEP/番号テキスト） */
  --color-yellow-light: #f7f587; /* 淡いイエロー（OurStory円装飾） */
  --color-orange-button: #ff7f00; /* エントリーボタン（#ff8000と微差・Figma実測） */
  /* font-weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  /* font-family */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --roboto-font-family: "Roboto", sans-serif; /* 年号「2026」等 */
  --inter-font-family: "Inter", sans-serif; /* 「Issue 01」等の英字ラベル */
  /* Base 9 Sans OT はアウトライン化画像で対応（Webフォント読み込みなし） */
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 64px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (width <= 393px) {
  html {
    font-size: 4.0712468193vw;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

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

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

body {
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background-color: var(--color-bg);
}

html {
  scroll-behavior: smooth;
}

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-inner {
  width: 100%;
  max-width: calc(var(--inner) + var(--padding-) * 2);
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}

.l-top {
  position: relative;
  overflow-x: clip;
}

.p-anyQuestions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(100 * var(--to-rem)) calc(29 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-anyQuestions {
    padding-block: calc(50 * var(--to-rem)) calc(40 * var(--to-rem));
    padding-inline: calc(30 * var(--to-rem));
  }
}

.p-anyQuestions::before {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 0;
  width: calc(1473 * var(--to-rem));
  height: auto;
  aspect-ratio: 1473/1737;
  content: "";
  background-image: url("/recruit/opencompany/assets/images/bg02.COUiXUGv.webp");
  background-position: top;
  background-size: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-anyQuestions::before {
    top: calc(-140 * var(--to-rem));
    z-index: 3;
    width: 100%;
    aspect-ratio: 393/235;
    background-image: url("/recruit/opencompany/assets/images/bgsp02.DBMkdiIu.webp");
  }
}

.p-anyQuestions__title {
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(38 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.01em;
}

.p-anyQuestions__cards {
  margin-top: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-anyQuestions__cards {
    max-width: calc(400 * var(--to-rem));
  }
}

.p-anyQuestions__img01 {
  display: block;
  max-width: calc(938 * var(--to-rem));
  height: auto;
  margin-inline: auto;
}

.p-anyQuestions__img02 {
  display: block;
  width: calc(317 * var(--to-rem));
  height: auto;
  margin: calc(-80 * var(--to-rem)) auto 0;
}
@media screen and (max-width: 767px) {
  .p-anyQuestions__img02 {
    width: calc(212 * var(--to-rem));
    margin: calc(-40 * var(--to-rem)) auto 0;
  }
}

.p-anyQuestions__item {
  position: relative;
  padding-block: calc(39 * var(--to-rem));
  padding-inline: calc(29 * var(--to-rem));
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-anyQuestions__item {
    width: calc(160 * var(--to-rem));
    padding-inline: calc(19 * var(--to-rem));
  }
}

.p-anyQuestions__item--issue01 {
  order: 1;
}

.p-anyQuestions__item--issue02 {
  order: 2;
}

.p-anyQuestions__item--issue03 {
  order: 3;
}

.p-anyQuestions__item--issue04 {
  order: 4;
}

.p-anyQuestions__item--issue05 {
  order: 5;
}

.p-anyQuestions__issueLabel {
  position: absolute;
  top: calc(10 * var(--to-rem));
  left: calc(10 * var(--to-rem));
  font-family: var(--inter-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.p-anyQuestions__itemText {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-anyQuestions__itemText {
    margin-inline: auto;
  }
}

.p-anyQuestions__item--issue01 .p-anyQuestions__itemText {
  width: calc(120 * var(--to-rem));
}

.p-anyQuestions__item--issue02 .p-anyQuestions__itemText {
  width: calc(125 * var(--to-rem));
}

.p-anyQuestions__item--issue03 .p-anyQuestions__itemText {
  width: calc(149 * var(--to-rem));
}

.p-anyQuestions__item--issue04 .p-anyQuestions__itemText {
  width: calc(139 * var(--to-rem));
}

.p-anyQuestions__item--issue05 .p-anyQuestions__itemText {
  width: calc(109 * var(--to-rem));
}

.p-bgFloat {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.p-bgFloat__inner {
  position: relative;
  width: calc(1280 * var(--to-rem));
  height: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-bgFloat__inner {
    width: 100%;
  }
}

.p-bgFloat__rice {
  position: absolute;
  height: auto;
}

.p-bgFloat__rice--senbei1p {
  top: calc(-138 * var(--to-rem));
  left: calc(1130 * var(--to-rem));
  width: calc(305 * var(--to-rem));
  transform: rotate(0.73deg);
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--senbei1p {
    top: calc(-74 * var(--to-rem));
    left: calc(304 * var(--to-rem));
    width: calc(156 * var(--to-rem));
  }
}

.p-bgFloat__rice--happy2p {
  top: calc(-71 * var(--to-rem));
  left: calc(788 * var(--to-rem));
  width: calc(185 * var(--to-rem));
  transform: rotate(-0.4deg);
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--happy2p {
    top: calc(-83 * var(--to-rem));
    left: calc(41 * var(--to-rem));
    width: calc(151 * var(--to-rem));
  }
}

.p-bgFloat__rice--kk2p2 {
  top: calc(113 * var(--to-rem));
  left: calc(-89 * var(--to-rem));
  width: calc(171 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--kk2p2 {
    top: calc(125 * var(--to-rem));
    left: calc(-81 * var(--to-rem));
    width: calc(132 * var(--to-rem));
  }
}

.p-bgFloat__rice--kkp2p {
  top: calc(288 * var(--to-rem));
  left: calc(-57 * var(--to-rem));
  width: calc(201 * var(--to-rem));
  transform: rotate(0.68deg);
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--kkp2p {
    top: calc(241 * var(--to-rem));
    left: calc(211 * var(--to-rem));
    width: calc(64 * var(--to-rem));
  }
}

.p-bgFloat__rice--kk1p {
  top: calc(87 * var(--to-rem));
  left: calc(377 * var(--to-rem));
  width: calc(111 * var(--to-rem));
  transform: rotate(-1.75deg);
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--kk1p {
    top: calc(147 * var(--to-rem));
    left: calc(315 * var(--to-rem));
    width: calc(111 * var(--to-rem));
  }
}

.p-bgFloat__rice--happy {
  top: calc(928 * var(--to-rem));
  left: calc(955 * var(--to-rem));
  width: calc(391 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--happy {
    top: calc(802 * var(--to-rem));
    left: calc(175 * var(--to-rem));
    width: calc(224 * var(--to-rem));
  }
}

.p-bgFloat__rice--oknm1 {
  top: calc(-27 * var(--to-rem));
  left: calc(539 * var(--to-rem));
  width: calc(130 * var(--to-rem));
  transform: rotate(-1.31deg);
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--oknm1 {
    top: calc(59 * var(--to-rem));
    left: calc(96 * var(--to-rem));
    width: calc(79 * var(--to-rem));
  }
}

.p-bgFloat__rice--white1p {
  top: calc(644 * var(--to-rem));
  left: calc(-107 * var(--to-rem));
  width: calc(335 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--white1p {
    top: calc(650 * var(--to-rem));
    left: calc(-81 * var(--to-rem));
    width: calc(142 * var(--to-rem));
  }
}

.p-bgFloat__rice--oknm2 {
  top: calc(698 * var(--to-rem));
  left: calc(-93 * var(--to-rem));
  width: calc(285 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--oknm2 {
    top: calc(672 * var(--to-rem));
    left: calc(-80 * var(--to-rem));
    width: calc(121 * var(--to-rem));
  }
}

.p-bgFloat__rice--senbei2p {
  top: calc(4094 * var(--to-rem));
  left: calc(1038 * var(--to-rem));
  width: calc(362 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--senbei2p {
    top: calc(4237 * var(--to-rem));
    left: calc(305 * var(--to-rem));
    width: calc(138 * var(--to-rem));
  }
}

.p-bgFloat__rice--happy1p2 {
  top: calc(4574 * var(--to-rem));
  left: calc(-42 * var(--to-rem));
  width: calc(259 * var(--to-rem));
  transform: rotate(-1.62deg);
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--happy1p2 {
    top: calc(4869 * var(--to-rem));
    left: calc(-30 * var(--to-rem));
    width: calc(120 * var(--to-rem));
  }
}

.p-bgFloat__rice--happy1p1 {
  top: calc(4611 * var(--to-rem));
  left: calc(-118 * var(--to-rem));
  width: calc(296 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--happy1p1 {
    top: calc(4869 * var(--to-rem));
    left: calc(-24 * var(--to-rem));
    width: calc(137 * var(--to-rem));
  }
}

.p-bgFloat__rice--p1p {
  top: calc(1485 * var(--to-rem));
  left: calc(134 * var(--to-rem));
  width: calc(151 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--p1p {
    top: calc(1779 * var(--to-rem));
    left: calc(40 * var(--to-rem));
    width: calc(90 * var(--to-rem));
  }
}

.p-bgFloat__rice--oknm4 {
  top: calc(2101 * var(--to-rem));
  left: calc(32 * var(--to-rem));
  width: calc(193 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--oknm4 {
    top: calc(2531 * var(--to-rem));
    left: calc(35 * var(--to-rem));
    width: calc(101 * var(--to-rem));
  }
}

.p-bgFloat__rice--oknm3 {
  top: calc(1628 * var(--to-rem));
  left: calc(1064 * var(--to-rem));
  width: calc(314 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-bgFloat__rice--oknm3 {
    top: calc(1673 * var(--to-rem));
    left: calc(236 * var(--to-rem));
    width: calc(190 * var(--to-rem));
  }
}

.p-bgFloat__glass {
  position: absolute;
  height: auto;
}

.p-bgFloat__glass--r {
  top: calc(311 * var(--to-rem));
  left: calc(1098.5 * var(--to-rem));
  width: calc(284 * var(--to-rem));
}

.p-bgFloat__glass--l {
  top: calc(450 * var(--to-rem));
  left: calc(-102.5 * var(--to-rem));
  width: calc(300 * var(--to-rem));
}

.p-bgFloat__glass--rSp {
  top: calc(324 * var(--to-rem));
  left: calc(295 * var(--to-rem));
  width: calc(176 * var(--to-rem));
}

.p-bgFloat__glass--lSp {
  top: calc(208 * var(--to-rem));
  left: calc(-181 * var(--to-rem));
  width: calc(650 * var(--to-rem));
}

.p-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(100 * var(--to-rem)) calc(150 * var(--to-rem));
  background-image: url("/recruit/opencompany/assets/images/bg05.B4B9z3e7.svg");
  background-repeat: repeat;
  background-size: calc(400 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail {
    padding-block: calc(80 * var(--to-rem)) calc(100 * var(--to-rem));
    padding-inline: var(--padding-inner);
  }
}

@media screen and (max-width: 767px) {
  .p-detail::before {
    position: absolute;
    top: calc(-100 * var(--to-rem));
    left: 0;
    z-index: 3;
    width: 100%;
    height: auto;
    aspect-ratio: 393/394;
    content: "";
    background-image: url("/recruit/opencompany/assets/images/bgsp04.DKNyH47u.webp");
    background-position: top;
    background-size: 100%;
  }
}

.p-detail::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: calc(1533 * var(--to-rem));
  height: auto;
  aspect-ratio: 1533/3060;
  content: "";
  background-image: url("/recruit/opencompany/assets/images/bg04.BXtT-z8L.webp");
  background-position: top;
  background-size: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-detail::after {
    top: 17%;
    bottom: initial;
    z-index: 0;
    width: 100%;
    aspect-ratio: 393/149;
    background-image: url("/recruit/opencompany/assets/images/bgsp05.CHQP66Vk.webp");
    background-position: top;
    background-size: 100%;
  }
}

.p-detail__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-detail__lead {
  position: relative;
  z-index: 1;
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.0833em;
}
@media screen and (max-width: 767px) {
  .p-detail__lead {
    font-size: calc(16 * var(--to-rem));
    letter-spacing: 0.125em;
  }
}

.p-detail__title {
  position: relative;
  z-index: 0;
  font-size: calc(60 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.0333em;
}
@media screen and (max-width: 767px) {
  .p-detail__title {
    margin-top: calc(10 * var(--to-rem));
    font-size: calc(28 * var(--to-rem));
    letter-spacing: 0.0714em;
  }
}

.p-detail__title::before {
  position: absolute;
  top: calc(10 * var(--to-rem));
  left: calc(100 * var(--to-rem));
  z-index: -1;
  display: block;
  width: calc(153 * var(--to-rem));
  height: calc(153 * var(--to-rem));
  content: "";
  background-image: url("/recruit/opencompany/assets/images/detail_img.BMepJRN2.svg");
  background-position: center;
  background-size: cover;
  transform: translateY(-100%);
}
@media screen and (max-width: 767px) {
  .p-detail__title::before {
    top: calc(-10 * var(--to-rem));
    left: calc(-30 * var(--to-rem));
    width: calc(100 * var(--to-rem));
    height: calc(100 * var(--to-rem));
  }
}

.p-detail__titleSmall {
  font-size: calc(50 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__titleSmall {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-detail__reason {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(870 * var(--to-rem));
  max-width: 100%;
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__reason {
    width: 100%;
  }
}

.p-detail__keyVisual {
  width: 100%;
  overflow: hidden;
  border-radius: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__keyVisual {
    width: 100vw;
    border-radius: 0;
  }
}

.p-detail__keyVisual img {
  width: 100%;
  height: calc(470 * var(--to-rem));
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-detail__keyVisual img {
    height: auto;
    aspect-ratio: 1/1;
  }
}

.p-detail__reasonLead {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}

.p-detail__reasonCard {
  width: 100%;
  padding: calc(40 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__reasonCard {
    max-width: calc(500 * var(--to-rem));
    padding: 0;
    margin-top: calc(150 * var(--to-rem));
  }
}

.p-detail__reasonTitle {
  padding-block-end: calc(10 * var(--to-rem));
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.0833em;
  border-bottom: 1px solid var(--color-black);
}

.p-detail__reasonList {
  margin-top: calc(30 * var(--to-rem));
}

.p-detail__reasonItem {
  display: flex;
  gap: calc(20 * var(--to-rem));
}

.p-detail__reasonItem + .p-detail__reasonItem {
  margin-top: calc(20 * var(--to-rem));
}

.p-detail__reasonNum {
  flex-shrink: 0;
  width: calc(34 * var(--to-rem));
}

.p-detail__reasonNum img {
  width: auto;
  height: calc(45 * var(--to-rem));
}

.p-detail__reasonBody {
  flex: 1;
  min-width: 0;
}

.p-detail__reasonItemTitle {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.p-detail__reasonText {
  margin-top: calc(10 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 0.03em;
}

.p-detail__courses {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__courses {
    margin-inline: calc(20 * var(--to-rem));
  }
}

.p-detail__courseList {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  align-items: flex-start;
  justify-content: center;
  max-width: calc(1060 * var(--to-rem));
}

.p-detail__course {
  padding: calc(40 * var(--to-rem));
  border-radius: calc(16 * var(--to-rem));
  box-shadow: 0 0 calc(16 * var(--to-rem)) rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-detail__course {
    width: 100%;
    padding: calc(40 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}

.p-detail__course--sales {
  background-color: #fffad9;
  --boxColor: #ffd900;
}
.p-detail__course--sales .p-detail__courseIcon {
  width: calc(141 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__course--sales .p-detail__courseIcon {
    width: calc(80 * var(--to-rem));
  }
}

.p-detail__course--dev {
  background-color: #ffecd9;
}
.p-detail__course--dev .p-detail__courseDescBody:nth-child(1) {
  --boxColor: #ff8000;
}
.p-detail__course--dev .p-detail__courseDescBody:nth-child(2) {
  --boxColor: #d41e20;
}
.p-detail__course--dev .p-detail__courseDescBody:nth-child(3) {
  --boxColor: #b19457;
}
.p-detail__course--dev .p-detail__courseDescLead {
  color: #fff;
}
.p-detail__course--dev .p-detail__courseIcon {
  width: calc(121 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__course--dev .p-detail__courseIcon {
    width: calc(85 * var(--to-rem));
  }
}
.p-detail__course--dev .p-detail__courseHeadBody {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-detail__course--dev .p-detail__courseHeadBody {
    gap: calc(10 * var(--to-rem));
  }
}

.p-detail__courseHead {
  display: flex;
  gap: calc(20 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-detail__courseHead {
    align-items: flex-start;
  }
}

.p-detail__courseIcon {
  flex: 0;
}
@media screen and (max-width: 767px) {
  .p-detail__courseIcon {
    width: calc(80 * var(--to-rem));
  }
}

.p-detail__courseHeadBody {
  display: flex;
  flex: 1;
  gap: calc(10 * var(--to-rem));
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-detail__courseHeadBody {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-detail__courseTitle {
  font-size: calc(36 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  letter-spacing: 0.0556em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-detail__courseTitle {
    font-size: calc(24 * var(--to-rem));
    letter-spacing: 0.03em;
  }
}

.p-detail__coursePlace {
  flex-shrink: 0;
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-detail__coursePlace {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-detail__courseBody {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__courseBody {
    grid-template-columns: 1fr;
  }
}

.p-detail__courseImage {
  margin-top: calc(20 * var(--to-rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-detail__courseImage {
    width: calc(100% + 40 * var(--to-rem));
    margin-inline: calc(-20 * var(--to-rem));
  }
}

.p-detail__courseImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-detail__courseInfo {
  margin-top: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__courseInfo {
    margin-top: 0;
  }
}

.p-detail__courseDate {
  display: flex;
  gap: calc(6 * var(--to-rem));
  align-items: center;
}

.p-detail__courseDateLabel {
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.p-detail__courseDateValue {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.p-detail__courseDescTitle {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-detail__courseDescTitle {
    width: 110%;
    margin-inline: -5%;
    text-align: center;
    letter-spacing: 0;
  }
}

.p-detail__courseDescNote {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-detail__courseLine {
  display: block;
  width: 100%;
  margin-top: calc(20 * var(--to-rem));
}

.p-detail__courseDescBody {
  display: flex;
  flex-direction: column;
  margin-top: calc(30 * var(--to-rem));
  overflow: clip;
  border: 5px solid var(--boxColor);
  border-radius: calc(16 * var(--to-rem));
}

.p-detail__courseDescLead {
  padding: calc(20 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: var(--boxColor);
}

.p-detail__courseDescText {
  display: flex;
  flex: 1;
  padding: calc(20 * var(--to-rem)) calc(30 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 0.03em;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-detail__courseDescText {
    height: 100%;
    padding: calc(20 * var(--to-rem)) calc(28 * var(--to-rem));
  }
}

.p-detail__courseProgram {
  margin-top: calc(20 * var(--to-rem));
}

.p-detail__courseProgramLabel {
  flex-shrink: 0;
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.p-detail__courseTags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(4 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__courseTags {
    margin-top: calc(10 * var(--to-rem));
  }
}

.p-detail__courseTag {
  flex-shrink: 0;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  white-space: nowrap;
  background-color: var(--color-white);
  border-radius: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__courseTag {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-detail__courseTag--note {
  padding-inline: calc(8 * var(--to-rem));
  background-color: transparent;
  border-radius: 0;
}

.p-detail__courseContentsList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(22 * var(--to-rem));
  width: 100%;
  margin-top: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-detail__courseContentsList {
    grid-template-columns: 1fr;
    gap: calc(20 * var(--to-rem));
  }
}
.p-detail__courseContentsList .p-detail__courseDescBody {
  margin-top: 0;
}

.p-detail__note {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(12 * var(--to-rem));
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}

.p-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(80 * var(--to-rem)) calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry {
    gap: calc(20 * var(--to-rem));
    padding-block: calc(40 * var(--to-rem)) calc(10 * var(--to-rem));
    padding-inline: calc(30 * var(--to-rem));
  }
}

.p-entry__button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  align-items: center;
  padding-block: calc(20 * var(--to-rem));
  padding-inline: calc(60 * var(--to-rem));
  color: var(--color-white);
  background-color: var(--color-orange-button);
  border-radius: calc(100 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-entry__button {
    gap: calc(3 * var(--to-rem));
    padding-block: calc(14.6 * var(--to-rem));
    padding-inline: calc(44 * var(--to-rem));
    border-radius: calc(73 * var(--to-rem));
  }
}

.p-entry__buttonSub {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-entry__buttonSub {
    font-size: calc(14.6 * var(--to-rem));
  }
}

.p-entry__buttonMain {
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-entry__buttonMain {
    font-size: calc(23.4 * var(--to-rem));
  }
}

.p-entry__cracker {
  position: absolute;
  top: calc(-126.1 * var(--to-rem));
  left: calc(-160.5 * var(--to-rem));
  width: calc(282.8 * var(--to-rem));
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-entry__cracker {
    top: calc(-84.9 * var(--to-rem));
    left: calc(-29.7 * var(--to-rem));
    width: calc(126.8 * var(--to-rem));
  }
}

.p-entry__lead {
  margin-top: calc(40 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.0667em;
}
@media screen and (max-width: 767px) {
  .p-entry__lead {
    letter-spacing: 0;
  }
}

.p-faq {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-faq {
    max-width: calc(500 * var(--to-rem));
    padding-inline: calc(30 * var(--to-rem));
    margin-inline: auto;
  }
}

.p-faq__title {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.0833em;
}

.p-faq__list {
  width: calc(700 * var(--to-rem));
  max-width: 100%;
  margin-top: calc(20 * var(--to-rem));
  border-top: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    width: 100%;
  }
}

.p-faq__item {
  display: flex;
  gap: calc(10 * var(--to-rem));
  padding-block: calc(20 * var(--to-rem));
  border-bottom: 1px solid var(--color-text);
}

.p-faq__icon {
  flex-shrink: 0;
  width: calc(50 * var(--to-rem));
}

.p-faq__icon img {
  width: calc(30 * var(--to-rem));
  height: auto;
}

.p-faq__body {
  flex: 1;
  min-width: 0;
}

.p-faq__question {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: center;
  justify-content: space-between;
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    gap: calc(10 * var(--to-rem));
    justify-content: flex-start;
  }
}

.p-faq__chevron {
  flex-shrink: 0;
  width: calc(16 * var(--to-rem));
  height: auto;
}

.p-faq__answer {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.p-faq__answerWrap {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease;
}

.p-faq__item.is-closed .p-faq__answerWrap {
  grid-template-rows: 0fr;
}

.p-faq__answerWrap .p-faq__answer {
  min-height: 0;
  overflow: hidden;
}

.p-faq__item.is-closed .p-faq__answer {
  margin-top: 0;
  transition: margin-top 0.3s ease;
}

.p-faq__answer {
  transition: margin-top 0.3s ease;
}

.p-faq__chevron {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.p-faq__item.is-closed .p-faq__chevron {
  transform: rotate(0deg);
}

.p-floatCta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: var(--z-index-header);
  display: flex;
  gap: calc(20 * var(--to-rem));
  align-items: center;
  justify-content: center;
  padding-block: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  box-shadow: 0 calc(-4 * var(--to-rem)) calc(2 * var(--to-rem)) rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .p-floatCta {
    gap: calc(10 * var(--to-rem));
  }
}

.p-floatCta__button {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  justify-content: center;
  padding-block: calc(16 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-radius: calc(100 * var(--to-rem));
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-floatCta__button {
    height: calc(52 * var(--to-rem));
    padding-block: calc(12 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
    text-align: center;
  }
}

.p-floatCta__button:hover {
  opacity: 0.8;
}

.p-floatCta__button--requirements {
  width: calc(300 * var(--to-rem));
  background-color: var(--color-yellow);
}
@media screen and (max-width: 767px) {
  .p-floatCta__button--requirements {
    width: calc(134 * var(--to-rem));
  }
}

.p-floatCta__button--entry {
  width: calc(500 * var(--to-rem));
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-floatCta__button--entry {
    width: calc(227 * var(--to-rem));
  }
}

.p-floatCta__arrow {
  width: auto;
  height: calc(15.9 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-floatCta__arrow {
    height: calc(12 * var(--to-rem));
  }
}

.p-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(100 * var(--to-rem)) calc(150 * var(--to-rem));
  background-image: url("/recruit/opencompany/assets/images/bg05.B4B9z3e7.svg");
  background-repeat: repeat;
  background-size: calc(200 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: calc(64 * var(--to-rem)) calc(114 * var(--to-rem));
  }
}

.p-flow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.p-flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-flow__lead {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.0833em;
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    font-size: calc(16 * var(--to-rem));
    letter-spacing: 0.125em;
  }
}

.p-flow__title {
  font-size: calc(60 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.0333em;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: calc(28 * var(--to-rem));
    letter-spacing: 0.0714em;
  }
}

.p-flow__titleSmall {
  font-size: calc(50 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__titleSmall {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-flow__stepList {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: calc(1120 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__stepList {
    flex-direction: column;
    max-width: calc(400 * var(--to-rem));
    padding-inline: calc(50 * var(--to-rem));
    margin-top: calc(20 * var(--to-rem));
  }
}

.p-flow__step {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__step {
    flex-direction: row;
    gap: calc(20 * var(--to-rem));
    justify-content: center;
    padding-block: calc(70 * var(--to-rem)) calc(10 * var(--to-rem));
  }
}

.p-flow__step--first {
  flex: 0.8;
  padding-left: calc(48 * var(--to-rem));
  background-color: var(--color-cream-yellow);
  border-radius: calc(150 * var(--to-rem)) 0 0 calc(150 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__step--first {
    padding-left: 0;
    border-radius: calc(150 * var(--to-rem)) calc(150 * var(--to-rem)) 0 0;
  }
}

.p-flow__step--second {
  flex: 0.8;
  padding-left: calc(48 * var(--to-rem));
  background-color: #ffd900;
}
@media screen and (max-width: 767px) {
  .p-flow__step--second {
    min-height: calc(163 * var(--to-rem));
    padding-left: 0;
  }
}

.p-flow__step--third {
  background-color: var(--color-primary);
  border-radius: 0 calc(150 * var(--to-rem)) calc(150 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-flow__step--third {
    padding-block: calc(60 * var(--to-rem));
    border-radius: 0 0 calc(150 * var(--to-rem)) calc(150 * var(--to-rem));
  }
}

.p-flow__step--second::before,
.p-flow__step--third::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(48 * var(--to-rem));
  height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-flow__step--second::before,
  .p-flow__step--third::before {
    top: -1px;
    left: 0;
    width: 100%;
    height: calc(40 * var(--to-rem));
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

.p-flow__step--second::before {
  background-color: var(--color-cream-yellow);
}

.p-flow__step--third::before {
  background-color: #ffd900;
}

.p-flow__stepLabel {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  align-items: center;
}

.p-flow__stepLabelText {
  width: calc(41 * var(--to-rem));
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-flow__stepLabelText {
    width: calc(33 * var(--to-rem));
  }
}

.p-flow__stepNum {
  width: auto;
  height: calc(41 * var(--to-rem));
}

.p-flow__stepBody {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-flow__stepBody {
    display: flex;
    flex-direction: column;
    gap: calc(10 * var(--to-rem));
    width: calc(160 * var(--to-rem));
  }
}

.p-flow__stepTitle {
  font-size: calc(30 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__stepTitle {
    font-size: calc(24 * var(--to-rem));
    text-align: left;
  }
}

.p-flow__stepText {
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-flow__stepText {
    font-size: calc(14 * var(--to-rem));
    text-align: left;
  }
}

.p-flow__schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(700 * var(--to-rem));
  max-width: 100%;
  margin-top: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__schedule {
    width: 100%;
    max-width: calc(500 * var(--to-rem));
    padding-inline: var(--padding-inner);
    margin-top: calc(40 * var(--to-rem));
  }
}

.p-flow__scheduleTitle {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.0833em;
}

.p-flow__scheduleCard {
  position: relative;
  display: flex;
  gap: calc(60 * var(--to-rem));
  width: 100%;
  padding-block: calc(40 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__scheduleCard {
    flex-direction: column;
    gap: calc(8 * var(--to-rem));
    padding-inline: calc(30 * var(--to-rem));
  }
}

.p-flow__year img {
  width: calc(92 * var(--to-rem));
  height: auto;
  margin-top: calc(12 * var(--to-rem));
}

.p-flow__body {
  flex: 1;
}

.p-flow__table {
  border-top: 1px solid var(--color-text);
}

.p-flow__row {
  position: relative;
  display: flex;
  gap: calc(20 * var(--to-rem));
  align-items: center;
  min-height: calc(52 * var(--to-rem));
  padding: calc(8 * var(--to-rem)) calc(16 * var(--to-rem));
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-flow__row {
    gap: calc(10 * var(--to-rem));
    min-height: calc(40 * var(--to-rem));
    padding: calc(10 * var(--to-rem)) 0;
  }
}

.p-flow__row--yearEnd::after,
.p-flow__row--full::after {
  left: 0;
}

.p-flow__rowYear {
  flex-shrink: 0;
  width: calc(140 * var(--to-rem));
}

.p-flow__rowYear img {
  width: calc(92 * var(--to-rem));
  height: auto;
}

.p-flow__month {
  flex-shrink: 0;
  width: calc(80 * var(--to-rem));
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-flow__month {
    width: calc(60 * var(--to-rem));
  }
}

.p-flow__event {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-flow__event {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-flow__event span {
  color: var(--color-primary);
}

.p-flow__row--full .p-flow__event {
  color: var(--color-primary);
}

.p-flow__note {
  margin-top: calc(10 * var(--to-rem));
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.4;
  text-align: right;
  letter-spacing: 0.03em;
}

.p-fsv {
  position: relative;
  width: 100%;
}

.p-fsv__header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: calc(30 * var(--to-rem));
  align-items: center;
  width: 100%;
  padding-block-start: calc(20 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-fsv__header {
    gap: calc(4 * var(--to-rem));
    padding-block-start: calc(20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-fsv__headerLogo {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-fsv__headerLogo {
    width: calc(80 * var(--to-rem));
  }
}

.p-fsv__headerCopy {
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-fsv__headerCopy {
    font-size: calc(12 * var(--to-rem));
    letter-spacing: -0.01em;
  }
}

.p-fsv__image {
  position: relative;
  top: 0;
  left: 50%;
  width: calc(1598 * var(--to-rem));
  height: auto;
  aspect-ratio: 1598/938;
  transform: translateX(-50%);
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-fsv__image {
    width: 100%;
    height: auto;
    aspect-ratio: 397/862;
  }
}

.p-fsv__copy {
  position: absolute;
  top: 10%;
  left: calc(50% - 425 * var(--to-rem));
  width: 62.969%;
  max-width: calc(806 * var(--to-rem));
  height: 42.984%;
}
@media screen and (max-width: 767px) {
  .p-fsv__copy {
    top: 27%;
    left: 7.3791348601%;
    width: 78.1170483461%;
    height: auto;
    aspect-ratio: 307/350;
    object-fit: cover;
  }
}

.p-fsv__copy img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  align-items: center;
  width: 100%;
  padding-block-start: calc(20 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-header {
    gap: calc(8 * var(--to-rem));
    padding-block-start: calc(20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-header__logo {
  width: calc(92 * var(--to-rem));
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: calc(80 * var(--to-rem));
  }
}

.p-openCompany {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(40 * var(--to-rem)) calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany {
    padding-inline: calc(20 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-openCompany::after {
    position: absolute;
    top: calc(-140 * var(--to-rem));
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 393/256;
    content: "";
    background-image: url("/recruit/opencompany/assets/images/bgsp03.9v2d7eUl.webp");
    background-position: top;
    background-size: 100%;
  }
}

.p-openCompany__logo {
  position: relative;
  width: calc(772 * var(--to-rem));
  max-width: 100%;
  height: calc(138 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__logo {
    width: calc(357 * var(--to-rem));
    height: calc(90 * var(--to-rem));
  }
}

.p-openCompany__logo img {
  position: absolute;
  top: calc(-88.2 * var(--to-rem));
  left: 0;
  width: calc(772 * var(--to-rem));
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-openCompany__logo img {
    top: calc(-110 * var(--to-rem));
    left: calc(-18 * var(--to-rem));
    width: calc(391 * var(--to-rem));
  }
}

.p-openCompany__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(866 * var(--to-rem));
  max-width: 100%;
  padding-block: calc(80 * var(--to-rem)) calc(60 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(500 * var(--to-rem)) calc(500 * var(--to-rem)) calc(16 * var(--to-rem)) calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__card {
    width: calc(353 * var(--to-rem));
    padding-block: calc(80 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}

.p-openCompany__cardTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(83 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-openCompany__cardTitle {
    height: calc(66 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-openCompany__cardTitleBig {
  font-size: calc(45 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__cardTitleBig {
    font-size: calc(35 * var(--to-rem));
  }
}

.p-openCompany__stats {
  display: flex;
  justify-content: center;
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__stats {
    flex-direction: column;
    width: calc(273 * var(--to-rem));
  }
}

.p-openCompany__stat {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  justify-content: center;
  height: calc(147 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__stat {
    position: relative;
    flex-direction: row;
    gap: calc(10 * var(--to-rem));
    align-items: flex-end;
    justify-content: center;
    height: auto;
    padding: 0 0 calc(12 * var(--to-rem)) 0;
    border-bottom: 1px solid var(--color-black);
  }
}

.p-openCompany__stat + .p-openCompany__stat {
  border-left: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-openCompany__stat + .p-openCompany__stat {
    margin-top: calc(20 * var(--to-rem));
    border-left: none;
  }
}

.p-openCompany__line {
  width: 1px;
  height: 100%;
  background-color: var(--color-black);
}

.p-openCompany__statLabel {
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-text);
}

.p-openCompany__statValue {
  display: flex;
  gap: calc(4 * var(--to-rem));
  align-items: flex-end;
}

.p-openCompany__statValue img {
  width: auto;
  height: calc(89 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__statValue img {
    height: calc(55 * var(--to-rem));
  }
}

.p-openCompany__statValue .p-openCompany__statUnitImg {
  height: calc(17 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__statValue .p-openCompany__statUnitImg {
    height: calc(17 * var(--to-rem));
  }
}

.p-openCompany__statUnit {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-primary);
}

.p-openCompany__balloons {
  position: relative;
  width: calc(756 * var(--to-rem));
  height: calc(284 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__balloons {
    width: calc(306.9 * var(--to-rem));
    height: calc(308.4 * var(--to-rem));
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-openCompany__balloons img {
  width: 100%;
  object-fit: contain;
}

.p-openCompany__program {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__program {
    min-height: calc(89.33 * var(--to-rem));
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-openCompany__programTitle {
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-openCompany__tagsRow {
  display: flex;
  gap: calc(10 * var(--to-rem));
  align-items: flex-end;
  margin-top: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__tagsRow {
    flex-direction: column;
    gap: calc(8 * var(--to-rem));
    align-items: center;
    width: 100%;
    margin-top: calc(10 * var(--to-rem));
  }
}

.p-openCompany__tags {
  display: flex;
  gap: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__tags {
    gap: calc(4 * var(--to-rem));
  }
}

.p-openCompany__tag {
  flex-shrink: 0;
  padding-block: calc(5 * var(--to-rem));
  padding-inline: calc(30 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  white-space: nowrap;
  background-color: var(--color-gray);
  border-radius: calc(50 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__tag {
    padding-block: calc(3.66 * var(--to-rem));
    padding-inline: calc(22 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    border-radius: calc(36.6 * var(--to-rem));
  }
}

.p-openCompany__tagsNote {
  font-size: calc(16 * var(--to-rem));
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-openCompany__tagsNote {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-openCompany__bnr {
  position: relative;
  width: calc(866 * var(--to-rem));
  max-width: 100%;
  height: calc(257 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
  overflow: hidden;
  background-color: var(--color-primary);
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__bnr {
    width: calc(353 * var(--to-rem));
    height: calc(254 * var(--to-rem));
  }
}
.p-openCompany__bnr:hover {
  opacity: 0.8;
}

.p-openCompany__bnrLogo {
  position: absolute;
  top: calc(41 * var(--to-rem));
  left: calc(43 * var(--to-rem));
  width: calc(245 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__bnrLogo {
    top: calc(19.5 * var(--to-rem));
    left: calc(20 * var(--to-rem));
    width: calc(172 * var(--to-rem));
  }
}

.p-openCompany__bnrLogo img {
  height: auto;
}

.p-openCompany__bnrBody {
  position: absolute;
  top: calc(41 * var(--to-rem));
  left: calc(629 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--to-rem));
  align-items: flex-end;
  width: calc(199 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-openCompany__bnrBody {
    top: calc(171.5 * var(--to-rem));
    left: calc(20 * var(--to-rem));
    gap: calc(16 * var(--to-rem));
    width: calc(313 * var(--to-rem));
  }
}

.p-openCompany__bnrText {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  color: var(--color-white);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-openCompany__bnrText {
    font-size: calc(14 * var(--to-rem));
    letter-spacing: 0.143em;
    white-space: normal;
  }
}

.p-openCompany__bnrLinkText {
  display: flex;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-openCompany__bnrLinkText {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-openCompany__bnrLinkText img {
  width: calc(8 * var(--to-rem));
  height: auto;
}

.p-openCompany__bnrImage {
  position: absolute;
  top: calc(10 * var(--to-rem));
  left: calc(318 * var(--to-rem));
  width: calc(280 * var(--to-rem));
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-openCompany__bnrImage {
    top: calc(8 * var(--to-rem));
    right: 0;
    left: initial;
    width: calc(155 * var(--to-rem));
  }
}

.p-ourStory {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(777 * var(--to-rem));
  padding-block: calc(130 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-ourStory {
    min-height: calc(850 * var(--to-rem));
    padding-inline: var(--padding-inner);
  }
}

.p-ourStory::before,
.p-ourStory::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(1473 * var(--to-rem));
  height: auto;
  aspect-ratio: 1473/909;
  content: "";
  background-position: top;
  background-size: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-ourStory::before,
  .p-ourStory::after {
    width: 100%;
    aspect-ratio: 393/174;
  }
}

.p-ourStory::before {
  z-index: -1;
  background-image: url("/recruit/opencompany/assets/images/bg01-1.ii8X4uaQ.webp");
}
@media screen and (max-width: 767px) {
  .p-ourStory::before {
    top: calc(-30 * var(--to-rem));
    z-index: 3;
    background-image: url("/recruit/opencompany/assets/images/bgsp01.B1xhuL-D.webp");
  }
}

.p-ourStory::after {
  z-index: 1;
  background-image: url("/recruit/opencompany/assets/images/bg01-2.CB_unNQX.webp");
}
@media screen and (max-width: 767px) {
  .p-ourStory::after {
    display: none;
  }
}

.p-ourStory__body {
  position: relative;
  z-index: -1;
  width: calc(700 * var(--to-rem));
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-ourStory__body {
    z-index: 2;
    width: 100%;
    max-width: calc(400 * var(--to-rem));
  }
}

.p-ourStory__label {
  width: calc(174 * var(--to-rem));
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-ourStory__label {
    width: calc(180 * var(--to-rem));
  }
}

.p-ourStory__label img {
  height: auto;
}

.p-ourStory__title {
  position: relative;
  margin-top: calc(10 * var(--to-rem));
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-ourStory__title {
    font-size: calc(28 * var(--to-rem));
    letter-spacing: 0.0714em;
  }
}
@media screen and (max-width: 767px) {
  .p-ourStory__title::after {
    position: absolute;
    top: calc(-240 * var(--to-rem));
    left: 50%;
    display: block;
    width: 57vw;
    max-width: 300px;
    height: auto;
    aspect-ratio: 224/174;
    content: "";
    background-image: url("/recruit/opencompany/assets/images/bgsp01-1.DREbndwW.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@media screen and (max-width: 767px) {
  .p-ourStory__titleSpan {
    display: inline-block;
    width: 1rem;
    height: 1rem;
  }
}

.p-ourStory__text {
  margin-top: calc(60 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  color: var(--color-white);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-ourStory__text {
    margin-top: calc(40 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
    letter-spacing: 0.03em;
  }
}

.p-ourStory__deco {
  position: absolute;
  z-index: -2;
  height: auto;
  pointer-events: none;
}

.p-ourStory__deco--pc {
  top: 50%;
  left: 50%;
  width: calc(1204 * var(--to-rem));
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
}

.p-ourStory__deco--sp {
  top: 50%;
  left: 50%;
  width: calc(731 * var(--to-rem));
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
}

.p-photo {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-photo {
    min-height: calc(252 * var(--to-rem));
    margin-bottom: calc(100 * var(--to-rem));
  }
}

.p-photo__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1280/795;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-photo__image {
    aspect-ratio: 393/252;
  }
}

.p-photo__cut {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-photo__caption {
    margin-top: calc(-40 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
    font-weight: var(--fw-medium);
    line-height: 1.4;
    color: var(--color-text);
    text-align: center;
    letter-spacing: 0.02em;
  }
}

.p-recruit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(80 * var(--to-rem)) calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding-inline: calc(30 * var(--to-rem));
  }
}

.p-recruit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(900 * var(--to-rem));
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit__inner {
    width: 100%;
  }
}

.p-recruit__title {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.0833em;
}

.p-recruit__lead {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(36 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-recruit__lead {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-recruit__note {
  margin-top: calc(10 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}

.p-recruit__card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: calc(700 * var(--to-rem));
  padding-block: calc(40 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
  margin-top: calc(40 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit__card {
    max-width: calc(500 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-recruit__jobsHead {
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--to-rem));
  width: 100%;
  text-align: center;
}

.p-recruit__jobsTitle {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.p-recruit__jobsLead {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-recruit__jobs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: calc(10 * var(--to-rem));
  width: 100%;
  padding-block: calc(20 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit__jobs {
    grid-template-columns: 1fr;
    gap: calc(10 * var(--to-rem));
    padding-block: 0;
  }
}

.p-recruit__job {
  padding: calc(20 * var(--to-rem)) calc(16 * var(--to-rem));
  background-color: var(--color-cream);
  border-radius: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit__job {
    width: 100%;
    padding: calc(20 * var(--to-rem));
  }
}

.p-recruit__jobNum {
  width: auto;
  height: calc(28 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-recruit__jobNum {
    display: inline-block;
  }
}

.p-recruit__jobName {
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-recruit__jobName {
    display: inline-block;
    padding-left: calc(16 * var(--to-rem));
    margin-top: 0;
  }
}

.p-recruit__jobText {
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-recruit__table {
  width: 100%;
  margin-top: calc(40 * var(--to-rem));
}

.p-recruit__row {
  display: flex;
  gap: calc(40 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-recruit__row {
    flex-direction: column;
    gap: calc(10 * var(--to-rem));
  }
}

.p-recruit__label {
  flex-shrink: 0;
  width: calc(100 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-recruit__label {
    width: auto;
  }
}

.p-recruit__value {
  flex: 1;
  font-size: calc(16 * var(--to-rem));
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-recruit__mail {
  text-decoration: underline;
}

.p-recruit__results {
  width: calc(370 * var(--to-rem));
  max-width: 100%;
  text-align: center;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-recruit__results {
    width: 100%;
    font-size: calc(12.67 * var(--to-rem));
  }
}

.p-recruit__results thead tr {
  background-color: var(--color-gray);
}

.p-recruit__results th,
.p-recruit__results td {
  font-weight: var(--fw-regular);
}

.p-recruit__resultsMale th,
.p-recruit__resultsMale td {
  border-bottom: 1px solid var(--color-black);
}

.p-recruit__cta {
  display: inline-flex;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem)) calc(30 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
  background-color: var(--color-yellow);
  border-radius: calc(100 * var(--to-rem));
}

.p-recruit__cta img {
  width: calc(8 * var(--to-rem));
  height: auto;
}

.p-recruit__attention {
  width: 100%;
  margin-top: calc(40 * var(--to-rem));
  font-size: calc(12 * var(--to-rem));
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}

.p-user {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user {
    padding-inline: var(--padding-inner);
  }
}

.p-user__title {
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-bold);
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-user__title {
    font-size: calc(28 * var(--to-rem));
    letter-spacing: 0.0714em;
  }
}

.p-user__cards {
  width: calc(700 * var(--to-rem));
  max-width: 100%;
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user__cards {
    width: 100%;
    max-width: calc(500 * var(--to-rem));
  }
}

.p-user__card {
  padding-block: calc(40 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(16 * var(--to-rem));
  box-shadow: 0 0 calc(4 * var(--to-rem)) rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-user__card {
    padding: calc(20 * var(--to-rem));
  }
}

.p-user__card + .p-user__card {
  margin-top: calc(20 * var(--to-rem));
}

@media screen and (max-width: 767px) {
  .p-user__card--testimonial {
    padding-block: calc(40 * var(--to-rem));
  }
}

.p-user__qRow {
  display: flex;
  gap: calc(20 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-user__qRow {
    gap: calc(10 * var(--to-rem));
  }
}

.p-user__qRow--q4 {
  padding-block-end: calc(20 * var(--to-rem));
}

.p-user__q {
  width: auto;
  height: calc(63 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user__q {
    height: calc(45 * var(--to-rem));
  }
}

.p-user__question {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.p-user__noteRef {
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-regular);
}

.p-user__graph {
  padding-block: calc(20 * var(--to-rem));
  padding-inline-start: calc(20 * var(--to-rem));
  margin-top: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user__graph {
    padding-block: calc(20 * var(--to-rem)) 0;
    padding-inline-start: 0;
  }
}

.p-user__graph img {
  width: calc(592 * var(--to-rem));
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-user__graph img {
    width: 100%;
  }
}

.p-user__graph--q2 {
  padding-inline-start: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user__graph--q2 {
    padding-block: calc(10 * var(--to-rem)) 0;
    padding-inline-start: 0;
  }
}

.p-user__box {
  padding: calc(16 * var(--to-rem)) calc(8 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.03em;
  border: 3px solid var(--color-primary);
  border-radius: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user__box {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-user__testimonials {
  display: flex;
  gap: calc(20 * var(--to-rem));
  align-items: flex-start;
  margin-top: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user__testimonials {
    flex-direction: column;
    align-items: stretch;
  }
}

.p-user__col {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
  width: calc(300 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-user__col {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-user__testimonials--q4 .p-user__col {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-user__testimonials--q4 {
    gap: calc(20 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-user__item--orderA {
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-user__item--orderB {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-user__item--orderC {
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  .p-user__item--orderD {
    order: 4;
  }
}

.p-user__item {
  padding: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(16 * var(--to-rem));
  box-shadow: 0 0 calc(4 * var(--to-rem)) rgba(0, 0, 0, 0.1);
}

.p-user__itemHead {
  display: flex;
  gap: calc(10 * var(--to-rem));
  align-items: flex-end;
}

.p-user__itemHead--q4 {
  gap: calc(20 * var(--to-rem));
}

.p-user__avatar {
  width: calc(80 * var(--to-rem));
  height: calc(80 * var(--to-rem));
  object-fit: cover;
}

.p-user__name {
  display: flex;
  gap: calc(4 * var(--to-rem));
  align-items: baseline;
}

.p-user__nameInitial {
  font-size: calc(30 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
}

.p-user__nameSuffix {
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

.p-user__jobTags {
  display: flex;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  margin-top: calc(20 * var(--to-rem));
}

.p-user__jobOld {
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
}

.p-user__jobArrow {
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--color-yellow);
}

.p-user__jobNew {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--color-primary);
}

.p-user__itemMeta {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
}

.p-user__course {
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.25;
}

.p-user__itemText {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 0.03em;
}

.p-user__notes {
  width: calc(700 * var(--to-rem));
  max-width: 100%;
  margin-top: calc(40 * var(--to-rem));
  font-size: calc(12 * var(--to-rem));
  line-height: 1.6;
  text-align: right;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-user__notes {
    width: 100%;
    max-width: calc(500 * var(--to-rem));
    text-align: left;
  }
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

.fuwa {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--fuwa-delay, 0s);
  transform: translateY(1.25rem);
  will-change: opacity, transform;
}
.fuwa.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fuwa {
    opacity: 1;
    transition: none;
    transform: none;
  }
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}